/* ===== HOLIDAY PAGES SHARED STYLES ===== */

/* Hero Banner */
.holiday-hero {
    position: relative;
    width: 100%;
    height: 80vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 137px;
}

.holiday-hero img.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
}

/* .holiday-hero .hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.68) 100%);
    z-index: 1;
} */
.holiday-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.452);
}
.holiday-hero .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 20px;
    max-width: 820px;
}

.holiday-hero .hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    margin: 0 0 14px;
    line-height: 1.2;
    text-shadow: 0 2px 16px rgba(0,0,0,0.5);
}

.holiday-hero .hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    font-weight: 400;
    opacity: 0.92;
    margin: 0;
    text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

.holiday-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 50px;
    padding: 7px 20px;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #fff;
    margin-bottom: 20px;
}

@media (max-width: 768px) { .holiday-hero { height: 200px;margin-top: 110px; } }
@media (max-width: 480px) { .holiday-hero { height: 220px;margin-top: 110px; } }

/* ===== INTRO SECTION ===== */
.holiday-intro {
    background: #f8fafc;
    padding: 70px 20px;
}

.holiday-intro-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.holiday-intro-text h2 {
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px;
    line-height: 1.3;
}

.holiday-intro-text h2 span {
    color: #d4a017;
}

.holiday-intro-text p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.85;
    margin: 0 0 28px;
}

.holiday-intro-features {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.holiday-intro-feature {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 0.95rem;
    color: #334155;
    font-weight: 500;
}

.holiday-intro-feature i {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Stats Grid */
.holiday-intro-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.holiday-stat-card {
    background: #fff;
    border-radius: 18px;
    padding: 30px 24px;
    text-align: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #e2e8f0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.holiday-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 32px rgba(0,0,0,0.12);
}

.holiday-stat-card .stat-num {
    font-size: 2.1rem;
    font-weight: 700;
    color: #d4a017;
    line-height: 1;
    margin-bottom: 8px;
}

.holiday-stat-card .stat-label {
    font-size: 0.85rem;
    color: #64748b;
    font-weight: 500;
}

@media (max-width: 768px) {
    .holiday-intro-inner { grid-template-columns: 1fr; gap: 36px; }
    .holiday-intro-stats { grid-template-columns: repeat(2, 1fr); }
}

/* ===== CTA SECTION ===== */
.holiday-cta {
    background: linear-gradient(135deg, #0f172a 0%, #1a3a5c 60%, #0d2240 100%);
    padding: 80px 20px;
    text-align: center;
}

.holiday-cta h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.3rem);
    font-weight: 700;
    color: #fff;
    margin: 0 0 16px;
}

.holiday-cta p {
    font-size: 1rem;
    color: rgba(255,255,255,0.75);
    max-width: 580px;
    margin: 0 auto 34px;
    line-height: 1.75;
}

.holiday-cta-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.holiday-cta-btns .btn-primary-cta {
    padding: 15px 36px;
    background: linear-gradient(135deg, #d4a017, #f0c040);
    color: #0f172a;
    font-weight: 700;
    border-radius: 50px;
    font-size: 0.97rem;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
}

.holiday-cta-btns .btn-primary-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(212,160,23,0.48);
}

.holiday-cta-btns .btn-outline-cta {
    padding: 15px 36px;
    border: 2px solid rgba(255,255,255,0.38);
    color: #fff;
    font-weight: 600;
    border-radius: 50px;
    font-size: 0.97rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: 'Poppins', sans-serif;
}

.holiday-cta-btns .btn-outline-cta:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.7);
}

/* ===== SEO CONTENT SECTION (STICKY NAV & SCROLL-SPY) ===== */
.seo-content-section {
    background: #f8fafc;
    padding: 80px 0;
    border-top: 1px solid #e2e8f0;
}

.seo-content-wrap {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

.seo-nav-col {
    position: sticky;
    top: 120px;
    height: fit-content;
}

.seo-nav-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #94a3b8;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.seo-nav-label i { color: #65A845; }

.seo-nav-list {
    list-style: none;
    padding: 0;
    margin: 0 0 24px 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.seo-nav-link {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #64748b;
    padding: 10px 16px;
    border-radius: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-left: 3px solid transparent;
}

.seo-nav-link i {
    font-size: 1rem;
    opacity: 0.6;
    width: 20px;
    text-align: center;
}

.seo-nav-link:hover,
.seo-nav-link.active {
    color: #1e6fcf;
    background: rgba(30, 111, 207, 0.08);
    border-left-color: #65A845;
}

.seo-nav-link.active i {
    opacity: 1;
    color: #1e6fcf;
}

.seo-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px 20px;
    background: linear-gradient(135deg, #1e3a5f, #2563eb);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(30, 58, 95, 0.2);
}

.seo-nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 58, 95, 0.3);
}

.seo-content-col {
    max-height: 750px;
    overflow-y: auto;
    padding-right: 25px;
    scroll-behavior: smooth;
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

/* Custom Scrollbar */
.seo-content-col::-webkit-scrollbar { width: 6px; }
.seo-content-col::-webkit-scrollbar-track { background: #f1f5f9; border-radius: 10px; }
.seo-content-col::-webkit-scrollbar-thumb { 
    background: linear-gradient(to bottom, #65A845, #1e6fcf); 
    border-radius: 10px; 
}

.seo-block {
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: 1px solid #f1f5f9;
}

.seo-block:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.seo-block-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #65A845;
    background: rgba(101,168,69,0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 18px;
}

.seo-h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    line-height: 1.3;
}

.seo-content-col p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 20px;
}

@media (max-width: 1024px) {
    .seo-content-wrap {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .seo-nav-col {
        display: none;
    }
    .seo-content-col {
        max-height: none;
        padding: 30px 20px;
    }
    .seo-h2 {
        font-size: 1.5rem;
    }
}
