/* ===================================
   PREMIUM ENHANCEMENTS CSS
   Hampton Venue - All Sections Upgrade
   =================================== */

/* ============================================
   TIMELINE SECTION - PREMIUM STYLING
   ============================================ */

.timeline-section {
    background: linear-gradient(180deg, 
        rgba(245, 230, 200, 0.15) 0%, 
        rgba(255, 255, 255, 0.5) 50%,
        rgba(245, 230, 200, 0.15) 100%
    );
    padding: 4rem 2rem;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
}

.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(197,165,114,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.timeline-section h3 {
    position: relative;
    z-index: 1;
    font-weight: 800;
    font-size: 2.5rem;
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 2rem 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #C5A572, #D4B68A, #C5A572);
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(197, 165, 114, 0.4);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInTimeline 0.8s ease-out forwards;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.3s; }
.timeline-item:nth-child(3) { animation-delay: 0.5s; }
.timeline-item:nth-child(4) { animation-delay: 0.7s; }

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

.timeline-marker {
    position: absolute;
    left: 50%;
    top: 0;
    width: 24px;
    height: 24px;
    background: white;
    border: 4px solid #C5A572;
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.5),
                0 0 0 8px rgba(197, 165, 114, 0.1);
    transition: all 0.3s ease;
}

.timeline-marker.active {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-color: #D4B68A;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.6),
                0 0 0 12px rgba(197, 165, 114, 0.15);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: translateX(-50%) scale(1); }
    50% { transform: translateX(-50%) scale(1.1); }
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(197, 165, 114, 0.2);
    position: relative;
    width: calc(50% - 50px);
    transition: all 0.3s ease;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
    margin-right: 50px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 50px;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(197, 165, 114, 0.25);
    border-color: rgba(197, 165, 114, 0.4);
}

.timeline-year {
    display: inline-block;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(197, 165, 114, 0.3);
}

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

.timeline-desc {
    color: #4A4A4A;
    line-height: 1.7;
    font-size: 1rem;
}

/* Mobile Timeline */
@media (max-width: 768px) {
    .timeline::before {
        left: 20px;
    }
    
    .timeline-marker {
        left: 20px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        margin-right: 0 !important;
    }
}

/* ============================================
   STATS SECTION - PREMIUM COUNTERS
   ============================================ */

.stat-card {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(245, 230, 200, 0.3)
    );
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 2px solid rgba(197, 165, 114, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(197, 165, 114, 0.05), 
        transparent
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(197, 165, 114, 0.25);
    border-color: rgba(197, 165, 114, 0.3);
}

.stat-icon {
    width: 85px;
    height: 85px;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.4),
                inset 0 2px 10px rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.stat-card:hover .stat-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(197, 165, 114, 0.6);
}

.stat-icon i {
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1F1F1F;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #C5A572, #B39560);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 10px rgba(197, 165, 114, 0.2);
    position: relative;
}

.stat-number::after {
    content: attr(data-count);
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0.1;
    text-shadow: 0 4px 20px rgba(197, 165, 114, 0.5);
}

.stat-label {
    font-size: 1.05rem;
    color: #4A4A4A;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ============================================
   SERVICES SECTION - PREMIUM CARDS
   ============================================ */

.service-card-enhanced {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.95), 
        rgba(250, 245, 235, 0.8)
    );
    padding: 2.5rem 2rem;
    border-radius: 20px;
    transition: all 0.4s ease;
    border: 2px solid rgba(197, 165, 114, 0.1);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
}

.service-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #C5A572, #D4B68A, #C5A572);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card-enhanced:hover::before {
    transform: scaleX(1);
}

.service-card-enhanced:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(197, 165, 114, 0.25);
    border-color: rgba(197, 165, 114, 0.3);
}

.service-icon-enhanced {
    width: 85px;
    height: 85px;
    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 8px 25px rgba(197, 165, 114, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-card-enhanced:hover .service-icon-enhanced::after {
    opacity: 0.6;
}

.service-card-enhanced:hover .service-icon-enhanced {
    transform: scale(1.1) rotate(-5deg);
}

.service-icon-enhanced i {
    font-size: 2.5rem;
    color: white;
}

.service-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    padding: 0.875rem 2rem;
    border-radius: 30px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(197, 165, 114, 0.3);
    border: 2px solid transparent;
}

.service-cta:hover {
    background: linear-gradient(135deg, #D4B68A, #E8D4A8);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(197, 165, 114, 0.5),
                0 0 40px rgba(197, 165, 114, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   GALLERY SECTION - PREMIUM GRID
   ============================================ */

.gallery-filter-btn,
.filter-btn-enhanced {
    background: white;
    color: #4A4A4A;
    padding: 0.75rem 1.75rem;
    border-radius: 30px;
    border: 2px solid rgba(197, 165, 114, 0.2);
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    cursor: pointer;
}

.gallery-filter-btn:hover,
.filter-btn-enhanced:hover,
.gallery-filter-btn.active,
.filter-btn-enhanced.active {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    color: white;
    border-color: #C5A572;
    box-shadow: 0 6px 20px rgba(197, 165, 114, 0.4);
    transform: translateY(-2px);
}

.gallery-item,
.gallery-item-enhanced {
    overflow: hidden;
    border-radius: 16px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(197, 165, 114, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.gallery-item img,
.gallery-item-enhanced img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover,
.gallery-item-enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(197, 165, 114, 0.25);
    border-color: rgba(197, 165, 114, 0.3);
}

.gallery-item:hover img,
.gallery-item-enhanced:hover img {
    transform: scale(1.15);
}

.gallery-overlay,
.gallery-overlay-enhanced {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay,
.gallery-item-enhanced:hover .gallery-overlay-enhanced {
    opacity: 1;
}

/* ============================================
   PRICING CARDS - PREMIUM DESIGN
   ============================================ */

.pricing-card {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    border: 2px solid rgba(71, 158, 237, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: #479eed;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(71, 158, 237, 0.3);
    border-color: rgba(71, 158, 237, 0.3);
}

.pricing-featured {
    border: 3px solid #479eed;
    box-shadow: 0 12px 45px rgba(71, 158, 237, 0.35);
    position: relative;
}

.pricing-featured::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: linear-gradient(135deg, rgba(71, 158, 237, 0.15), transparent);
    border-radius: 25px;
    z-index: -1;
    filter: blur(20px);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #479eed;
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 6px 20px rgba(71, 158, 237, 0.5);
    animation: badgeBounce 2s ease-in-out infinite;
}

@keyframes badgeBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(71, 158, 237, 0.1);
}

.pricing-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 600;
    color: #000000;
    margin-bottom: 1rem;
}

.pricing-amount {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.pricing-currency {
    font-size: 2rem;
    font-weight: 700;
    color: #479eed;
    margin-top: 0.5rem;
}

.pricing-value {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 700;
    color: #479eed;
    line-height: 1;
}

.pricing-period {
    font-family: 'Khula', sans-serif;
    color: #4A4A4A;
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    font-family: 'Khula', sans-serif;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(71, 158, 237, 0.1);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    line-height: 1.6;
    color: #000000;
}

.pricing-features li i {
    color: #479eed;
    font-size: 1.1rem;
}

.pricing-btn {
    display: block;
    font-family: 'Khula', sans-serif;
    background: #1f4045;
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-align: center;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(31, 64, 69, 0.3);
}

.pricing-btn:hover {
    background: #479eed;
    transform: translateY(-2px);
    box-shadow: 0 10px 35px rgba(71, 158, 237, 0.5),
                0 0 40px rgba(71, 158, 237, 0.3);
}

.pricing-btn-featured {
    background: #479eed;
    box-shadow: 0 8px 30px rgba(71, 158, 237, 0.4);
}

.pricing-btn-featured:hover {
    background: #03b1fa;
    box-shadow: 0 12px 40px rgba(71, 158, 237, 0.6);
}

/* ============================================
   CONTACT SECTION - PREMIUM CARDS
   ============================================ */

.quick-contact-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 16px;
    border: 2px solid rgba(71, 158, 237, 0.15);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    text-decoration: none;
    display: block;
    cursor: pointer;
}

.quick-contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(71, 158, 237, 0.25);
    border-color: rgba(71, 158, 237, 0.3);
}

.quick-contact-icon {
    width: 75px;
    height: 75px;
    background: #479eed;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(71, 158, 237, 0.4);
    transition: all 0.3s ease;
}

.quick-contact-card:hover .quick-contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.quick-contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-info-card {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
}

.contact-icon {
    width: 65px;
    height: 65px;
}

.contact-icon i {
    font-size: 1.75rem;
}

/* ============================================
   FOOTER - PREMIUM STYLING
   ============================================ */

#footer {
    background: linear-gradient(135deg, 
        #1F1F1F 0%, 
        #2A2A2A 50%, 
        #1F1F1F 100%
    );
    border-top: 4px solid #C5A572;
    position: relative;
}

#footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(197, 165, 114, 0.5), 
        transparent
    );
}

.footer-social-link {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #C5A572, #D4B68A);
    transform: translateY(-5px) rotate(5deg);
    box-shadow: 0 8px 25px rgba(197, 165, 114, 0.5);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #D4B68A;
    padding-left: 8px;
}

.footer-contact-info li {
    color: rgba(255, 255, 255, 0.85);
}

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

@media (max-width: 768px) {
    .stat-icon {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon i {
        font-size: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .service-icon-enhanced {
        width: 70px;
        height: 70px;
    }
    
    .service-icon-enhanced i {
        font-size: 2rem;
    }
    
    .pricing-value {
        font-size: 3rem;
    }
}
