/* ============================================
   AI IMMERSION TRIP — STYLES
   Uses base design system from styles.css
   ============================================ */

/* --- Hero Override for Immersion Page --- */
.immersion-hero {
    min-height: 85vh;
    background: var(--navy);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.immersion-hero .hero-content {
    padding-top: 120px;
    padding-bottom: var(--space-4xl);
}

.immersion-hero .hero-title-line {
    font-size: clamp(36px, 6vw, 72px);
    line-height: 1.2;
}

/* Use the base teal-to-purple gradient from styles.css for accent lines */
/* (no override needed — inherits from .hero-title-accent in styles.css) */

/* --- Section Subtitle (if not already in acceleration.css) --- */
.immersion-section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: var(--space-md) auto 0;
    line-height: 1.7;
}


/* ============================================
   PAST TRIP GALLERY BANNER
   ============================================ */
.gallery-banner {
    background: var(--navy);
    padding: var(--space-3xl) 0 var(--space-3xl);
    overflow: hidden;
    position: relative;
}

.gallery-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
    padding: 0 var(--space-xl);
}

.gallery-header .section-label {
    background: rgba(0, 177, 176, 0.12);
    color: var(--teal);
    border-color: rgba(0, 177, 176, 0.2);
}

.gallery-title {
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1.2;
    margin-top: var(--space-sm);
}

.gallery-track-wrapper {
    position: relative;
    width: 100%;
}

/* Gradient fade on edges */
.gallery-track-wrapper::before,
.gallery-track-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.gallery-track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, var(--navy) 0%, transparent 100%);
}

.gallery-track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, var(--navy) 0%, transparent 100%);
}

.gallery-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: galleryScroll 45s linear infinite;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-slide {
    flex-shrink: 0;
    width: 400px;
    height: 280px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}

.gallery-slide:hover {
    transform: scale(1.04);
    box-shadow: 0 16px 48px rgba(0, 177, 176, 0.2), 0 8px 32px rgba(0, 0, 0, 0.4);
    z-index: 3;
}

.gallery-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.gallery-slide:hover img {
    transform: scale(1.08);
}

@keyframes galleryScroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Responsive gallery sizes */
@media (max-width: 768px) {
    .gallery-slide {
        width: 300px;
        height: 210px;
    }

    .gallery-track {
        gap: 14px;
    }

    .gallery-track-wrapper::before,
    .gallery-track-wrapper::after {
        width: 60px;
    }

    .gallery-banner {
        padding: var(--space-2xl) 0;
    }
}

@media (max-width: 480px) {
    .gallery-slide {
        width: 260px;
        height: 180px;
    }
}


/* ============================================
   INTRO / OVERVIEW SECTION
   ============================================ */
.immersion-intro-section {
    background: linear-gradient(180deg, #f0fafa 0%, #f5f8fc 100%);
    padding: var(--space-4xl) 0;
    margin-top: -60px;
    position: relative;
    z-index: 2;
}

.immersion-intro-section .section-header {
    margin-bottom: var(--space-lg);
}

.immersion-intro-section .immersion-intro-text {
    margin-top: 0;
}

.immersion-intro-text {
    max-width: 800px;
    margin: 0 auto var(--space-3xl);
    text-align: center;
}

.immersion-intro-text p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.immersion-intro-text p:last-child {
    margin-bottom: 0;
}

.immersion-intro-text .intro-highlight {
    font-weight: 700;
    color: var(--navy);
}

/* Value Props Row */
.immersion-value-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.immersion-value-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

.immersion-value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
}

.immersion-value-card:nth-child(1)::before { background: var(--teal); }
.immersion-value-card:nth-child(2)::before { background: var(--red); }
.immersion-value-card:nth-child(3)::before { background: var(--purple); }

.immersion-value-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.immersion-value-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--space-lg);
}

.immersion-value-icon .material-symbols-outlined {
    font-size: 28px;
    color: var(--white);
}

.immersion-value-icon--teal { background: var(--teal); }
.immersion-value-icon--red { background: var(--red); }
.immersion-value-icon--purple { background: var(--purple); }

.immersion-value-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.immersion-value-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   OBJECTIVES SECTION
   ============================================ */
.immersion-objectives-section {
    background: var(--white);
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.objective-group {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.objective-group:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.objective-group-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.objective-group-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.objective-group-icon .material-symbols-outlined {
    font-size: 24px;
    color: var(--white);
}

.objective-group-icon--teal { background: var(--teal); }
.objective-group-icon--purple { background: var(--purple); }

.objective-group-header h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
}

.objective-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.objective-list li {
    display: flex;
    align-items: flex-start;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    transition: all var(--duration-fast) var(--ease-out);
}

.objective-list li:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.objective-list li .material-symbols-outlined {
    font-size: 20px;
    color: var(--teal);
    margin-top: 2px;
    flex-shrink: 0;
}

.objective-list li div {
    flex: 1;
}

.objective-list li strong {
    display: block;
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 2px;
}

.objective-list li span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}


/* ============================================
   CITY ITINERARY SECTION — PHOTO CARDS
   ============================================ */
.immersion-cities-section {
    background: linear-gradient(180deg, #f3f6fb 0%, #eef3f9 100%);
}

.city-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-2xl);
}

.city-column {
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.city-group-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-sm);
    border-bottom: 3px solid var(--teal);
    display: inline-block;
}

/* Arrow connector between city card and project card */
.city-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: var(--space-md) 0;
    color: var(--teal);
}

.city-arrow svg {
    animation: arrowBounce 2s ease-in-out infinite;
}

.city-arrow span {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: var(--teal);
    opacity: 0.7;
}

@keyframes arrowBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}


.city-photo-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
}

.city-photo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
}

.city-photo-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.city-photo-card:hover img {
    transform: scale(1.05);
}

.city-photo-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(10, 15, 56, 0.85) 0%, rgba(10, 15, 56, 0.3) 40%, transparent 70%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-2xl);
}

.city-photo-overlay h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--white);
    letter-spacing: -0.5px;
    margin-bottom: var(--space-xs);
}

.city-photo-overlay p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    max-width: 90%;
}


/* ============================================
   COMPANY VISIT CARDS
   ============================================ */
.immersion-visits-section {
    background: var(--white);
}

.visits-track {
    margin-bottom: var(--space-3xl);
}

.visits-track:last-child {
    margin-bottom: 0;
}

.visits-track-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.visits-track-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 800;
    color: var(--white);
    flex-shrink: 0;
}

.visits-track-number--teal { background: var(--teal); }
.visits-track-number--purple { background: var(--purple); }
.visits-track-number--peach { background: linear-gradient(135deg, #FF8C6B, #FF4D6A); }

.visits-track-info h3 {
    font-size: 22px;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -0.3px;
}

.visits-track-info p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.visits-cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
}

.visit-card {
    background: var(--bg-primary);
    border-radius: var(--radius-lg);
    padding: var(--space-xl) var(--space-2xl);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
    position: relative;
    overflow: hidden;
}

/* Card with image variant */
.visit-card.visit-card--with-img {
    display: flex;
    flex-direction: row;
    padding: 0;
}

.visit-card-img {
    width: 140px;
    min-height: 100%;
    flex-shrink: 0;
    overflow: hidden;
}

.visit-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s var(--ease-out);
}

.visit-card--with-img:hover .visit-card-img img {
    transform: scale(1.08);
}

.visit-card--with-img .visit-card-body {
    flex: 1;
    padding: var(--space-lg) var(--space-xl);
    min-width: 0;
}


.visit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-20);
}

.visit-card-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: var(--space-md);
}

.visits-track--teal .visit-card-number {
    background: rgba(0, 177, 176, 0.1);
    color: var(--teal);
}

.visits-track--purple .visit-card-number {
    background: rgba(103, 121, 189, 0.1);
    color: var(--purple);
}

.visits-track--peach .visit-card-number {
    background: rgba(255, 140, 107, 0.1);
    color: #FF6B4A;
}

.visit-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 4px;
}

.visit-card .visit-card-cn {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.visit-card p.visit-card-desc {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.visit-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: var(--space-md);
}

.visit-card-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    letter-spacing: 0.3px;
}

.visits-track--teal .visit-card-tag {
    background: rgba(0, 177, 176, 0.08);
    color: var(--teal);
}

.visits-track--purple .visit-card-tag {
    background: rgba(103, 121, 189, 0.08);
    color: var(--purple);
}

.visits-track--peach .visit-card-tag {
    background: rgba(255, 140, 107, 0.08);
    color: #FF6B4A;
}

.visits-note {
    font-size: 13px;
    color: var(--text-light);
    font-style: italic;
    margin-top: var(--space-md);
    padding-left: var(--space-md);
    border-left: 2px solid var(--border-light);
}


/* ============================================
   DARK THEME — MEET FUTURE UNICORNS
   ============================================ */
.immersion-visits-section--dark {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.immersion-visits-section--dark::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.immersion-visits-section--dark::after {
    content: '';
    position: absolute;
    top: -120px;
    right: -120px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 177, 176, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.immersion-visits-section--dark .container {
    position: relative;
    z-index: 1;
}

/* Section header text */
.immersion-visits-section--dark .section-label {
    background: rgba(0, 177, 176, 0.12);
    color: var(--teal);
    border-color: rgba(0, 177, 176, 0.2);
}

.immersion-visits-section--dark .section-title {
    color: var(--white);
}

.immersion-visits-section--dark .immersion-section-subtitle {
    color: rgba(255, 255, 255, 0.55);
}

/* Track headers */
.immersion-visits-section--dark .visits-track-info h3 {
    color: var(--white);
}

.immersion-visits-section--dark .visits-track-info p {
    color: rgba(255, 255, 255, 0.5);
}

/* Visit cards — dark variant */
.immersion-visits-section--dark .visit-card {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(4px);
}

.immersion-visits-section--dark .visit-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(0, 177, 176, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.immersion-visits-section--dark .visit-card h4 {
    color: var(--white);
}

.immersion-visits-section--dark .visit-card .visit-card-cn {
    color: rgba(255, 255, 255, 0.4);
}

.immersion-visits-section--dark .visit-card p.visit-card-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* Tags — dark variant */
.immersion-visits-section--dark .visits-track--teal .visit-card-tag {
    background: rgba(0, 177, 176, 0.12);
    color: #5EE0DF;
}

.immersion-visits-section--dark .visits-track--purple .visit-card-tag {
    background: rgba(103, 121, 189, 0.15);
    color: #9DAAE0;
}

/* Number badges — glow effect */
.immersion-visits-section--dark .visits-track--teal .visit-card-number {
    background: rgba(0, 177, 176, 0.15);
    color: #5EE0DF;
}

.immersion-visits-section--dark .visits-track--purple .visit-card-number {
    background: rgba(103, 121, 189, 0.15);
    color: #9DAAE0;
}

/* Track number circles */
.immersion-visits-section--dark .visits-track-number--teal {
    box-shadow: 0 0 20px rgba(0, 177, 176, 0.3);
}

.immersion-visits-section--dark .visits-track-number--purple {
    box-shadow: 0 0 20px rgba(103, 121, 189, 0.3);
}

/* Notes */
.immersion-visits-section--dark .visits-note {
    color: rgba(255, 255, 255, 0.35);
    border-left-color: rgba(255, 255, 255, 0.1);
}


/* ============================================
   CULTURAL HIGHLIGHTS SECTION — PHOTO CARDS
   ============================================ */
.immersion-culture-section {
    background: var(--navy-05);
}

.culture-cards-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
}

.culture-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    transition: all var(--duration-normal) var(--ease-out);
}

.culture-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.15);
}

.culture-card-photo {
    height: 240px;
    position: relative;
    overflow: hidden;
}

.culture-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s var(--ease-out);
}

.culture-card:hover .culture-card-photo img {
    transform: scale(1.06);
}

.culture-card-body {
    padding: var(--space-xl) var(--space-2xl) var(--space-2xl);
}

.culture-card-city {
    display: inline-block;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: var(--space-sm);
}

.culture-card-city--peach {
    background: rgba(255, 140, 107, 0.1);
    color: #FF6B4A;
}

.culture-card-city--purple {
    background: rgba(103, 121, 189, 0.1);
    color: var(--purple);
}

.culture-card-body h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: var(--space-sm);
}

.culture-card-body p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
}


/* ============================================
   PRICING / PROGRAMME FEES SECTION
   ============================================ */
.immersion-pricing-section {
    background: var(--white);
}

.pricing-panel {
    max-width: 700px;
    margin: 0 auto;
    background: var(--navy);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.pricing-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 40px 40px;
}

.pricing-panel::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 177, 176, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.pricing-panel > * {
    position: relative;
    z-index: 1;
}

.pricing-original {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: var(--space-sm);
}

.pricing-original s {
    color: rgba(255, 255, 255, 0.4);
}

.pricing-amount {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -2px;
    margin-bottom: var(--space-xs);
}

.pricing-amount-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--teal);
    margin-bottom: var(--space-xl);
}

.pricing-includes {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    text-align: left;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-includes li {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    padding: var(--space-sm) 0;
}

.pricing-includes li .material-symbols-outlined {
    font-size: 20px;
    color: var(--teal);
    flex-shrink: 0;
}

.pricing-detail-note {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.6;
    margin-top: var(--space-md);
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-cta {
    margin-top: var(--space-xl);
}

.pricing-cta .btn-primary {
    background: var(--red);
    border-color: var(--red);
    color: white;
    font-size: 16px;
    padding: 14px 36px;
    font-weight: 700;
}

.pricing-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(227, 34, 25, 0.4);
}


/* (About strip and bottom CTA removed) */


/* ============================================
   DISCLAIMER
   ============================================ */
.immersion-disclaimer {
    background: var(--bg-primary);
    padding: var(--space-lg) 0;
    text-align: center;
}

.immersion-disclaimer p {
    font-size: 12px;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .visits-cards-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .city-columns {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }

    .city-photo-card img {
        height: 260px;
    }

    .culture-cards-row {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .immersion-value-grid {
        grid-template-columns: 1fr;
        max-width: 440px;
        margin: 0 auto;
    }

    .objectives-grid {
        grid-template-columns: 1fr;
    }

    .immersion-hero {
        min-height: auto;
        padding-bottom: var(--space-3xl);
    }

    .immersion-hero .hero-content {
        padding-top: 100px;
    }

    .immersion-intro-section {
        margin-top: 0;
    }

    .pricing-panel {
        padding: var(--space-2xl);
    }

    /* (about strip and CTA removed) */
}

@media (max-width: 480px) {
    .hero-ctas {
        flex-direction: column;
        align-items: stretch;
    }

    .btn {
        justify-content: center;
    }

    .city-itinerary-header {
        padding: var(--space-lg);
    }

    .city-itinerary-body {
        padding: var(--space-lg);
    }

    .visit-card {
        padding: var(--space-lg);
    }

    .visit-card.visit-card--with-img {
        flex-direction: column;
    }

    .visit-card--with-img .visit-card-img {
        width: 100%;
        height: 160px;
        min-height: auto;
    }

    .visit-card--with-img .visit-card-body {
        padding: var(--space-md) var(--space-lg);
    }
}
