/* ===================================
   EVENT PACKAGES SECTION STYLING
   Hampton Venue - Complete Package Display
   =================================== */

/* ============================================
   BOOKING PROCESS STEPS
   ============================================ */

.process-step-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    border: 2px solid rgba(98, 67, 46, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.process-step-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(98, 67, 46, 0.25);
    border-color: rgba(98, 67, 46, 0.4);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #62432e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Work Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(98, 67, 46, 0.4);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: rgba(98, 67, 46, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem auto 1.5rem;
    transition: all 0.3s ease;
}

.process-step-card:hover .step-icon {
    background: #62432e;
    transform: scale(1.1) rotate(5deg);
}

.step-icon i {
    font-size: 2rem;
    color: #62432e;
    transition: color 0.3s ease;
}

.process-step-card:hover .step-icon i {
    color: white;
}

.step-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 0.75rem;
}

.step-desc {
    font-family: 'Khula', sans-serif;
    font-size: 0.95rem;
    color: #4A4A4A;
    line-height: 1.6;
}

/* ============================================
   PACKAGE HIGHLIGHTS
   ============================================ */

.package-highlight {
    text-align: center;
    padding: 1.5rem;
    transition: all 0.3s ease;
}

.package-highlight:hover {
    transform: translateY(-5px);
}

.highlight-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.highlight-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    filter: blur(12px);
    transition: opacity 0.3s ease;
}

.package-highlight:hover .highlight-icon::after {
    opacity: 0.6;
}

.package-highlight:hover .highlight-icon {
    transform: scale(1.1) rotate(-5deg);
}

.highlight-icon i {
    font-size: 2.25rem;
    color: white;
}

.highlight-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #1F1F1F;
    margin-bottom: 1rem;
}

.highlight-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.highlight-list li {
    padding: 0.5rem 0;
    color: #4A4A4A;
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #C5A572;
    font-weight: 700;
}

/* ============================================
   CONNECTING LINES (OPTIONAL ENHANCEMENT)
   ============================================ */

@media (min-width: 768px) {
    .process-step-card::after {
        content: '';
        position: absolute;
        top: 50%;
        right: -3rem;
        width: 3rem;
        height: 2px;
        background: linear-gradient(90deg, #C5A572, rgba(197, 165, 114, 0.3));
        transform: translateY(-50%);
    }
    
    .process-step-card:last-child::after {
        display: none;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .process-step-card {
        padding: 1.5rem 1rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin: 1.5rem auto 1rem;
    }
    
    .step-icon i {
        font-size: 1.75rem;
    }
    
    .step-number {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
        top: -12px;
    }
    
    .highlight-icon {
        width: 65px;
        height: 65px;
    }
    
    .highlight-icon i {
        font-size: 2rem;
    }
    
    .highlight-title {
        font-size: 1.15rem;
    }
    
    .highlight-list li {
        font-size: 0.9rem;
    }
}

/* ============================================
   ANIMATION ON SCROLL (OPTIONAL)
   ============================================ */

.process-step-card,
.package-highlight {
    opacity: 0;
    animation: fadeInUp 0.6s ease-out forwards;
}

.process-step-card:nth-child(1) { animation-delay: 0.1s; }
.process-step-card:nth-child(2) { animation-delay: 0.2s; }
.process-step-card:nth-child(3) { animation-delay: 0.3s; }
.process-step-card:nth-child(4) { animation-delay: 0.4s; }

.package-highlight:nth-child(1) { animation-delay: 0.1s; }
.package-highlight:nth-child(2) { animation-delay: 0.2s; }
.package-highlight:nth-child(3) { animation-delay: 0.3s; }
.package-highlight:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
