/* ==========================================================================
   Corbett Festive / Holiday Special Packages Page
   ========================================================================== */

.holiday-page {
    background: var(--bg-light);
}

/* --- PROMO BANNER (above hero) --- */
.holiday-promo-banner {
    width: 100%;
    line-height: 0;
    background: #fff;
    padding-top: var(--header-height);
}

.holiday-banner-img {
    display: block;
    width: 100%;
    height: auto;
}

/* --- HERO --- */
.holiday-hero {
    position: relative;
    min-height: 340px;
    display: flex;
    align-items: flex-end;
    color: var(--text-light);
    overflow: hidden;
}

.holiday-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.holiday-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(11, 48, 34, 0.88) 0%,
        rgba(80, 20, 20, 0.55) 45%,
        rgba(11, 48, 34, 0.82) 100%
    );
    z-index: 1;
}

.holiday-hero-sparkles {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 12% 22%, rgba(255, 215, 100, 0.35) 0 2px, transparent 3px),
        radial-gradient(circle at 78% 18%, rgba(255, 255, 255, 0.3) 0 2px, transparent 3px),
        radial-gradient(circle at 55% 35%, rgba(255, 180, 80, 0.25) 0 1.5px, transparent 2.5px),
        radial-gradient(circle at 90% 55%, rgba(255, 255, 255, 0.2) 0 2px, transparent 3px);
}

.holiday-hero-inner {
    position: relative;
    z-index: 3;
    width: 100%;
    padding-top: 28px;
    padding-bottom: 28px;
}

.holiday-hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(90deg, #c41e3a, #d4a017);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
    box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}

.holiday-hero-title {
    font-family: var(--font-heading);
    font-size: clamp(1.6rem, 4vw, 2.5rem);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 10px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.holiday-hero-sub {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    max-width: 620px;
    line-height: 1.5;
    margin-bottom: 18px;
}

.holiday-hero-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.holiday-hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    backdrop-filter: blur(4px);
    padding: 5px 12px;
    border-radius: var(--radius-full);
    font-size: 0.78rem;
    font-weight: 600;
}

.holiday-hero-chip i {
    color: #ffd166;
}

/* --- OCCASION FILTER --- */
.holiday-occasions {
    padding: 24px 0 8px;
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: var(--header-height);
    z-index: 50;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.holiday-occasions-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.holiday-occasions-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-right: 4px;
}

.holiday-occasion-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 8px 16px;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-full);
    background: var(--bg-white);
    color: var(--text-dark);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.holiday-occasion-btn i {
    font-size: 0.9rem;
}

.holiday-occasion-btn:hover,
.holiday-occasion-btn.active {
    border-color: var(--primary);
    background: var(--primary);
    color: #fff;
}

.holiday-occasion-btn.active[data-occasion="christmas"] {
    background: #c41e3a;
    border-color: #c41e3a;
}

.holiday-occasion-btn.active[data-occasion="newyear"] {
    background: linear-gradient(90deg, #1a3a5c, #4a2c7a);
    border-color: #4a2c7a;
}

.holiday-occasion-btn.active[data-occasion="diwali"] {
    background: #d97706;
    border-color: #d97706;
}

/* --- INTRO --- */
.holiday-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 28px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* --- RESORT CARDS --- */
.holiday-resorts-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.holiday-resort-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(11, 48, 34, 0.08);
    border: 1px solid var(--border-light);
    transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.holiday-resort-card.is-highlight {
    box-shadow: 0 8px 32px rgba(11, 48, 34, 0.14);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.holiday-resort-header {
    display: grid;
    grid-template-columns: 200px 1fr auto;
    gap: 20px;
    align-items: center;
    padding: 20px;
    cursor: pointer;
}

.holiday-resort-thumb {
    width: 200px;
    height: 130px;
    border-radius: var(--radius-md);
    object-fit: cover;
}

.holiday-resort-info h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.holiday-resort-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin-bottom: 10px;
}

.holiday-resort-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.holiday-resort-badge {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    color: var(--primary);
    border: 1px solid rgba(11, 48, 34, 0.12);
}

.holiday-resort-badge.fest-xmas {
    background: #fef2f2;
    color: #c41e3a;
    border-color: #fecaca;
}

.holiday-resort-badge.fest-ny {
    background: #eff6ff;
    color: #1e40af;
    border-color: #bfdbfe;
}

.holiday-resort-prices {
    text-align: right;
    min-width: 140px;
}

.holiday-price-from {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.holiday-price-amount {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.2;
}

.holiday-price-unit {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.holiday-resort-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-light);
    color: var(--primary);
    border: none;
    cursor: pointer;
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.holiday-resort-card.is-open .holiday-resort-toggle {
    transform: rotate(180deg);
}

.holiday-resort-body {
    display: none;
    padding: 0 20px 20px;
    border-top: 1px solid var(--border-light);
}

.holiday-resort-card.is-open .holiday-resort-body {
    display: block;
}

.holiday-price-table-wrap {
    overflow-x: auto;
    margin: 16px 0;
}

.holiday-price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.88rem;
}

.holiday-price-table th,
.holiday-price-table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.holiday-price-table th {
    background: var(--bg-light);
    font-weight: 700;
    color: var(--text-dark);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.holiday-price-table .price-cell {
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.holiday-inclusions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 16px;
    margin-top: 12px;
}

.holiday-inclusion-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.holiday-inclusion-item i {
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.holiday-inclusion-item.ny-only {
    color: #1e40af;
}

.holiday-inclusion-item.ny-only i {
    color: #3b82f6;
}

.holiday-resort-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-light);
}

.btn-holiday-enquire {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s ease;
}

.btn-holiday-enquire:hover {
    background: var(--primary-dark, #0a3d2b);
    color: #fff;
}

.btn-holiday-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s ease;
}

.btn-holiday-call:hover {
    background: var(--primary);
    color: #fff;
}

/* --- SHARED INCLUSIONS --- */
.holiday-shared-card {
    background: linear-gradient(135deg, var(--primary) 0%, #0d4a35 100%);
    color: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    margin-top: 36px;
}

.holiday-shared-card h2 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.holiday-shared-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 20px;
}

.holiday-shared-item {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 0.84rem;
    line-height: 1.4;
    opacity: 0.92;
}

.holiday-shared-item i {
    color: var(--accent);
    margin-top: 2px;
}

/* --- TERMS --- */
.holiday-terms {
    margin-top: 28px;
    padding: 20px;
    background: #fffbeb;
    border: 1px solid #fde68a;
    border-radius: var(--radius-md);
    font-size: 0.82rem;
    color: #78350f;
    line-height: 1.55;
}

.holiday-terms h3 {
    font-size: 0.92rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #92400e;
}

.holiday-terms ul {
    margin: 0;
    padding-left: 18px;
}

.holiday-terms li {
    margin-bottom: 4px;
}

/* --- PROMO STRIP (on corbett.php) --- */
.holiday-promo-strip {
    margin-bottom: 0;
}

.holiday-promo-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    background: linear-gradient(120deg, #0b3022 0%, #1a4d38 40%, #5c1a2e 100%);
    border-radius: var(--radius-lg);
    padding: 22px 28px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.holiday-promo-inner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -5%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(255, 215, 100, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.holiday-promo-content {
    position: relative;
    z-index: 1;
    flex: 1;
    min-width: 240px;
}

.holiday-promo-tag {
    display: inline-block;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(90deg, #c41e3a, #d4a017);
    padding: 4px 10px;
    border-radius: var(--radius-full);
    margin-bottom: 8px;
}

.holiday-promo-title {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 6px;
    line-height: 1.25;
}

.holiday-promo-text {
    font-size: 0.88rem;
    opacity: 0.9;
    line-height: 1.45;
    margin: 0;
}

.holiday-promo-action {
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.holiday-promo-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: #fff;
    color: var(--primary);
    border-radius: var(--radius-md);
    font-size: 0.9rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.holiday-promo-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    color: var(--primary);
}

.holiday-promo-icons {
    display: flex;
    gap: 12px;
    margin-top: 10px;
    font-size: 0.78rem;
    opacity: 0.85;
}

.holiday-promo-icons span {
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* --- RESPONSIVE --- */
@media (max-width: 900px) {
    .holiday-resort-header {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .holiday-resort-thumb {
        width: 100%;
        height: 180px;
    }

    .holiday-resort-prices {
        text-align: left;
    }

    .holiday-shared-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .holiday-inclusions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .holiday-occasions-inner {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 6px;
    }

    .holiday-occasion-btn {
        flex-shrink: 0;
    }

    .holiday-shared-grid {
        grid-template-columns: 1fr;
    }

    .holiday-promo-inner {
        padding: 18px 20px;
    }
}
