/* === EXPEDITION DATES === */
.expedition-dates,
.duration-dates {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: var(--spacing-sm);
}

.date-tag {
    display: inline-block;
    background: rgba(251, 191, 36, 0.15);
    color: var(--electric-amber);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

/* === EXPERIENCE BANNER === */
.experience-banner {
    background: rgba(26, 31, 46, 0.7);
    backdrop-filter: var(--blur-glass);
    border: 2px solid rgba(251, 191, 36, 0.25);
    border-radius: 20px;
    padding: 2.5rem 3rem;
    margin-bottom: var(--spacing-lg);
    text-align: center;
}

.experience-text h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--electric-amber);
    margin-bottom: 0.75rem;
}

.experience-text p {
    font-size: 1.125rem;
    color: rgba(249, 250, 251, 0.8);
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto;
}

.experience-text em {
    color: var(--electric-amber);
    font-weight: 600;
}

/* === INCLUDED FEATURE GRID === */
.included-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: var(--spacing-lg);
}

.inc-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(26, 31, 46, 0.5);
    border: 1px solid rgba(249, 250, 251, 0.08);
    border-radius: 12px;
    padding: 0.875rem 1rem;
    transition: all var(--transition-fast);
}

.inc-feature:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-2px);
    background: rgba(26, 31, 46, 0.7);
}

.inc-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
}

.inc-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(249, 250, 251, 0.85);
}

/* === DURATION HEADING === */
.duration-heading {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: rgba(249, 250, 251, 0.95);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

/* === DURATION GRID === */
.duration-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    align-items: stretch;
    margin-bottom: var(--spacing-lg);
}

/* === DURATION CARD === */
.duration-card {
    display: flex;
    flex-direction: column;
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(249, 250, 251, 0.1);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    position: relative;
    transition: all var(--transition-medium);
}

.duration-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(251, 191, 36, 0.3);
}

/* Featured (Chase Week) */
.featured-duration {
    border: 2px solid var(--electric-amber) !important;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.15);
    transform: scale(1.03);
    z-index: 2;
}

.featured-duration:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 0 50px rgba(251, 191, 36, 0.25);
}

.tier-ribbon {
    position: absolute;
    top: -1px;
    right: -1px;
    background: linear-gradient(135deg, var(--electric-amber), var(--warning-orange));
    color: var(--storm-dark);
    padding: 0.45rem 1.25rem 0.45rem 1.5rem;
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 0 16px 0 16px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

/* Immersion Card */
.immersion-card {
    border-color: rgba(139, 92, 246, 0.3);
}

.immersion-card:hover {
    border-color: #8b5cf6;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.25);
}

/* Custom Card */
.custom-card {
    border-style: dashed;
    border-color: rgba(249, 250, 251, 0.2);
}

.custom-card:hover {
    border-color: rgba(251, 191, 36, 0.3);
    border-style: solid;
}

/* === DURATION BADGE === */
.duration-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.75rem;
    background: rgba(148, 163, 184, 0.2);
    color: rgba(249, 250, 251, 0.8);
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.duration-badge.badge-premium {
    background: rgba(251, 191, 36, 0.15);
    color: var(--electric-amber);
    border-color: rgba(251, 191, 36, 0.4);
}

.duration-badge.badge-ultimate {
    background: rgba(139, 92, 246, 0.15);
    color: #a78bfa;
    border-color: rgba(139, 92, 246, 0.4);
}

.duration-badge.badge-custom {
    background: rgba(249, 250, 251, 0.08);
    color: rgba(249, 250, 251, 0.6);
    border-color: rgba(249, 250, 251, 0.2);
    border-style: dashed;
}

/* === DURATION NAME === */
.duration-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: rgba(249, 250, 251, 0.95);
    margin-bottom: 0.5rem;
}

/* === DURATION PRICE === */
.duration-price {
    margin-bottom: 1rem;
}

.dp-amount {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--electric-amber);
    line-height: 1;
    display: block;
}

.featured-duration .dp-amount {
    background: linear-gradient(135deg, var(--electric-amber), var(--warning-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.immersion-card .dp-amount {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.dp-label {
    font-size: 0.875rem;
    color: rgba(249, 250, 251, 0.5);
    margin-top: 0.25rem;
    display: block;
}

/* === DURATION DESC === */
.duration-desc {
    font-size: 0.95rem;
    color: rgba(249, 250, 251, 0.75);
    line-height: 1.7;
    margin-bottom: 1rem;
    flex-grow: 1;
}

/* === DURATION IDEAL === */
.duration-ideal {
    font-size: 0.85rem;
    color: rgba(249, 250, 251, 0.6);
    line-height: 1.5;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(249, 250, 251, 0.08);
    margin-top: auto;
    margin-bottom: 1rem;
}

/* === CREW SECTION === */
.crew-section {
    margin: var(--spacing-xl) 0;
    text-align: center;
}

.crew-title {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: rgba(249, 250, 251, 0.95);
    margin-bottom: var(--spacing-md);
}

.crew-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.crew-card {
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(249, 250, 251, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-medium);
}

.crew-card:hover {
    border-color: rgba(251, 191, 36, 0.25);
    transform: translateY(-4px);
}

.crew-role-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.crew-card h4 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--electric-amber);
    margin-bottom: 0.5rem;
}

.crew-card p {
    font-size: 0.95rem;
    color: rgba(249, 250, 251, 0.75);
    line-height: 1.7;
}

/* === AIRPORT CALLOUT === */
.airport-callout {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin-bottom: var(--spacing-lg);
}

.airport-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.airport-text h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--electric-amber);
    margin-bottom: 0.5rem;
}

.airport-text p {
    font-size: 1rem;
    color: rgba(249, 250, 251, 0.8);
    line-height: 1.7;
}

/* === CTA VARIANTS === */
.cta-premium {
    background: linear-gradient(135deg, var(--electric-amber), var(--warning-orange));
    color: var(--storm-dark);
    border-color: var(--electric-amber);
}

.cta-premium:hover {
    background: var(--electric-amber);
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.cta-ultimate {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
    border-color: #8b5cf6;
}

.cta-ultimate:hover {
    background: #8b5cf6;
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

/* === WHAT IF SECTION === */
.what-if-section {
    margin-top: var(--spacing-xl);
    text-align: center;
}

.what-if-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--electric-amber);
    margin-bottom: 0.5rem;
    font-style: italic;
}

.what-if-intro {
    font-size: 1.25rem;
    color: rgba(249, 250, 251, 0.7);
    margin-bottom: var(--spacing-lg);
    font-style: italic;
}

.what-if-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: left;
}

.what-if-card {
    background: rgba(26, 31, 46, 0.6);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(251, 191, 36, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    transition: all var(--transition-medium);
}

.what-if-card:hover {
    transform: translateY(-6px);
    border-color: rgba(251, 191, 36, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

.what-if-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.what-if-card h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--electric-amber);
}

.what-if-card p {
    font-size: 0.95rem;
    color: rgba(249, 250, 251, 0.8);
    line-height: 1.7;
}

.what-if-card em {
    color: var(--electric-amber);
    font-weight: 500;
}

/* === INLINE LINK === */
.inline-link {
    color: var(--electric-amber);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: all var(--transition-fast);
}

.inline-link:hover {
    color: var(--warning-orange);
}

/* === WHAT'S INCLUDED (legacy) === */
.whats-included {
    padding: var(--spacing-xl) 0;
    background: var(--storm-slate);
}

.included-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
    max-width: 900px;
    margin: 0 auto;
}

.included-column {
    background: rgba(26, 31, 46, 0.6);
    padding: var(--spacing-md);
    border-radius: 16px;
    border: 1px solid rgba(251, 191, 36, 0.2);
}

.included-heading {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    color: var(--electric-amber);
    text-align: center;
}

.included-heading.not-included {
    color: var(--warning-orange);
}

.included-list {
    list-style: none;
}

.included-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(249, 250, 251, 0.8);
    font-size: 1rem;
    line-height: 1.6;
}

.check-icon {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--electric-amber);
    flex-shrink: 0;
}

.not-included-item .check-icon {
    color: rgba(249, 250, 251, 0.4);
}

/* === YOUTUBE EMBED === */
.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    margin: var(--spacing-md) 0;
    border-radius: 12px;
    border: 2px solid rgba(251, 191, 36, 0.3);
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 12px;
}

/* === RESPONSIVE === */
@media (max-width: 1200px) {
    .duration-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .included-feature-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .crew-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }

    .what-if-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-duration {
        transform: scale(1);
    }

    .featured-duration:hover {
        transform: translateY(-6px);
    }
}

@media (max-width: 768px) {
    .duration-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }

    .included-feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-banner {
        padding: 1.5rem;
    }

    .experience-text p {
        font-size: 1rem;
    }

    .airport-callout {
        flex-direction: column;
    }

    .duration-dates {
        justify-content: center;
    }

    .what-if-grid {
        grid-template-columns: 1fr;
    }

    .dp-amount {
        font-size: 1.85rem;
    }

    .included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .included-feature-grid {
        grid-template-columns: 1fr;
    }
}