:root {
    --primary: #FFA4A4;
    --primary-hover: #88BDA4;
    --primary-light: #E5F4F4;
    --accent: #FF6B6B;
    --accent-hover: #fa5252;
    --bg-cream: #FAF9F6;
    --bg-beige: #F5F3E9;
    --dark-navy: #0F172A;
    --dark-slate: #1E293B;
    --dark-deep: #0F1524;
    --text-main: #1E293B;
    --text-muted: #64748B;
    --text-light: #F8FAFC;
    --white: #ffffff;
    --border: #E2E8F0;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1.25rem;
    --radius-full: 9999px;
}

/* CSS Resets & General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--dark-navy);
    line-height: 1.25;
}

p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

button,
input,
select,
textarea {
    font-family: inherit;
    font-size: inherit;
    outline: none;
}

/* Base Layout Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Header & Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow-sm);
    border-bottom: 1px solid var(--border);
    padding: 0;
}

/* NOTE: backdrop-filter is applied via ::before (not directly on header) on
   purpose. iOS Safari treats an element with backdrop-filter/filter as a new
   "containing block" for any position:fixed descendants — since .nav-links
   (the mobile sidebar) is fixed and lives inside <header>, that bug was
   squashing the sidebar into the header's own height, which is why the
   close (X) icon was invisible/unreachable on iPhone. Keeping the blur on a
   pseudo-element avoids that containing-block bug entirely. */
header.scrolled::before {
    content: '';
    position: absolute;
    inset: 0;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    transition: var(--transition);
}

header.scrolled .nav-wrapper {
    padding: 0.5rem 0;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-logo {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.5rem;
    font-family: var(--font-heading);
}

.logo-img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.logo-img:hover {
    transform: rotate(10deg) scale(1.05);
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.logo-text span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-item {
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    color: var(--dark-slate);
    transition: var(--transition);
}

.nav-item:hover {
    color: var(--primary);
    background-color: var(--primary-light);
}

.nav-item.active {
    background-color: var(--primary);
    color: var(--white);
}

.nav-item.active:hover {
    color: var(--white);
    background-color: var(--primary);
}

.nav-cta {
    background-color: var(--primary);
    color: var(--white) !important;
    padding: 0.6rem 1.25rem;
    border-radius: var(--radius-full);
}

.nav-cta:hover {
    background-color: var(--primary-hover);
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-navy);
    cursor: pointer;
}

/* Mobile Navbar overlay active standard */
@media (max-width: 991px) {
    .logo-img {
        width: 56px;
        height: 56px;
    }

    .nav-wrapper {
        padding: 0.6rem 0;
        /* fallback left/right breathing room from the screen edge,
           independent of .container's own padding */
        padding-left: max(0.25rem, env(safe-area-inset-left));
        padding-right: max(0.25rem, env(safe-area-inset-right));
    }

    header.scrolled .nav-wrapper {
        padding-top: 0.35rem;
        padding-bottom: 0.35rem;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1010; /* Keep it above the sidebar (999) so it can be clicked to close */
        width: 42px;
        height: 42px;
        font-size: 1.4rem;
        border-radius: var(--radius-sm);
    }

    /* While the sidebar is open, force a solid high-contrast chip behind the
       icon so the close (X) is always visible, even when the header is still
       transparent and sitting on top of a dark hero photo. */
    .nav-links.open ~ .menu-toggle {
        background-color: var(--white);
        color: var(--dark-navy);
        box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
    }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 82vw;
        height: 100dvh; /* Safari 16+ */
        min-height: -webkit-fill-available; /* Older Safari */
        background-color: var(--white);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem;
        padding-top: calc(6rem + env(safe-area-inset-top));
        gap: 1.5rem;
        transition: right 0.4s ease;
        z-index: 999;
        overflow-y: auto;
    }

    .nav-links.open {
        right: 0;
    }

    .nav-item {
        width: 100%;
        display: block;
        padding: 0.75rem 1.25rem;
    }

    .nav-item.active {
        width: auto;
    }
}

/* Extra-tight header for phones specifically */
@media (max-width: 480px) {
    .logo-img {
        width: 46px;
        height: 46px;
    }

    .nav-wrapper {
        padding-top: 0.5rem;
        padding-bottom: 0.5rem;
    }

    header.scrolled .nav-wrapper {
        padding-top: 0.3rem;
        padding-bottom: 0.3rem;
    }

    .menu-toggle {
        width: 38px;
        height: 38px;
        font-size: 1.25rem;
    }
}

/* Banner Component (Shared across subpages) */
.page-banner {
    padding: 9rem 0 5rem;
    background-color: var(--bg-cream);
    text-align: center;
    position: relative;
}

.page-banner-badge {
    display: inline-block;
    padding: 0.35rem 0.85rem;
    background-color: var(--primary-light);
    color: var(--primary);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.page-banner-title {
    font-size: 3rem;
    color: var(--dark-navy);
    margin-bottom: 1rem;
}

.page-banner-sub {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    color: var(--text-muted);
}

/* Banner Styles - Image and Gradients variants */
.page-banner.bg-image {
    background-size: cover;
    background-position: center;
    padding: 11rem 0 7rem;
    color: var(--white);
}

.page-banner.bg-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55);
}

.page-banner.bg-image .container {
    position: relative;
    z-index: 10;
}

.page-banner.bg-image .page-banner-title {
    color: var(--white);
}

.page-banner.bg-image .page-banner-sub {
    color: rgba(255, 255, 255, 0.85);
}

.page-banner.bg-gradient-purple {
    background: linear-gradient(135deg, #4f46e5 0%, #7c3aed 100%);
    padding: 10rem 0 6rem;
    color: var(--white);
}

.page-banner.bg-gradient-purple .page-banner-title {
    color: var(--white);
}

.page-banner.bg-gradient-purple .page-banner-sub {
    color: rgba(255, 255, 255, 0.85);
}

.page-banner.bg-gradient-purple .page-banner-badge {
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

/* Search bar on sections */
.banner-search-container {
    max-width: 600px;
    margin: 2rem auto 0;
    position: relative;
}

.banner-search-input {
    width: 100%;
    padding: 1rem 1.5rem 1rem 3.5rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 1rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    background-color: var(--white);
}

.banner-search-container.dark .banner-search-input {
    border-color: rgba(255, 255, 255, 0.2);
}

.banner-search-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.15);
}

.banner-search-icon {
    position: absolute;
    left: 1.5rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1.15rem;
}

/* Sections Global Structure */
.section {
    padding: 5rem 0;
}

.section-bg-cream {
    background-color: var(--bg-cream);
}

.section-bg-cyan {
    background-color: var(--primary-light);
}

.section-bg-dark {
    background-color: var(--dark-navy);
    color: var(--text-light);
}

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

.section-bg-dark .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 3.5rem;
}

.section-badge {
    position: relative;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-muted);
}

.header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 3.5rem;
}

.header-flex .section-header {
    text-align: left;
    margin: 0;
}

.view-all-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.95rem;
}

.view-all-link:hover {
    color: var(--primary-hover);
    transform: translateX(3px);
}

/* Buttons System */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 139, 141, 0.25);
}

.btn-secondary {
    background-color: var(--white);
    color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-white {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-outline-white:hover {
    background-color: var(--white);
    color: var(--dark-navy);
    transform: translateY(-2px);
}

.btn-dark {
    background-color: var(--dark-navy);
    color: var(--white);
}

.btn-dark:hover {
    background-color: var(--dark-slate);
    transform: translateY(-2px);
}

.btn-block {
    display: flex;
    width: 100%;
}

/* Hero Section (Home) */
.hero-section {
    padding: 10rem 0 6rem;
    background-color: var(--bg-cream);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
    align-items: center;
}

.hero-badge {
    padding: 0.35rem 0.85rem;
    background-color: var(--white);
    color: var(--dark-navy);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}

.hero-badge i {
    color: var(--accent);
}

.hero-title {
    font-size: 3.8rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    line-height: 1.15;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.hero-collage {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    height: 480px;
}

.collage-item {
    border-radius: 80px;
    height: 100%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.collage-item:hover {
    transform: translateY(-8px);
}

.collage-item:nth-child(1) {
    margin-top: 2rem;
    height: calc(100% - 2rem);
}

.collage-item:nth-child(2) {
    height: 100%;
}

.collage-item:nth-child(3) {
    margin-top: 4rem;
    height: calc(100% - 4rem);
}

.collage-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-collage {
        height: 380px;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Stats Section (Home) */
.stats-bar {
    background-color: var(--bg-beige);
    padding: 3rem 0;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--dark-navy);
}

.stat-label {
    font-size: 0.95rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* Trip Grid & Cards (Trips component) */
.trips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2.5rem;
}

@media (max-width: 480px) {
    .trips-grid {
        grid-template-columns: 1fr;
    }
}

.trip-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.trip-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.trip-hero {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.trip-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.trip-card:hover .trip-hero img {
    transform: scale(1.08);
}

.trip-badge-top {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
}

.badge-tag-special {
    background-color: var(--accent);
    color: var(--white);
}

.badge-tag-regular {
    background-color: var(--primary);
    color: var(--white);
}

.trip-duration-tag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    padding: 0.35rem 0.85rem;
    background-color: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(4px);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.trip-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.trip-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.trip-meta span {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.trip-meta i {
    color: var(--primary);
}

.trip-card-title {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
}

.trip-descr {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.trip-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border);
    padding-top: 1rem;
    margin-top: auto;
}

.trip-price-box {
    display: flex;
    flex-direction: column;
}

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

.trip-price-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
}

.trip-card-actions {
    display: flex;
    gap: 0.5rem;
}

.trip-card-actions .btn {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

/* Event Empty template style */
.events-empty-card {
    text-align: center;
    max-width: 600px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: var(--bg-cream);
    border-radius: var(--radius-lg);
    border: 2px dashed var(--border);
}

.events-empty-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    opacity: 0.5;
}

.events-empty-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.events-empty-desc {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

/* Why Choose Us Section */
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 991px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr;
    }
}

.why-card {
    background-color: var(--white);
    padding: 2.25rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(15, 139, 141, 0.2);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.why-card-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.why-card-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Dark mode version of Feature grid (e.g. on About page) */
.section-bg-dark .why-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.section-bg-dark .why-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
    border-color: var(--primary);
}

.section-bg-dark .why-card-title {
    color: var(--white);
}

.section-bg-dark .why-card-desc {
    color: rgba(255, 255, 255, 0.7);
}

/* Gallery Section & Page */
.gallery-carousel-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 2.5rem;
}

.gallery-track {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding: 1rem 0;
    scrollbar-width: none;
    /* Firefox */
}

.gallery-track::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.gallery-img-card {
    flex: 0 0 300px;
    height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.gallery-img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.8) 0%, rgba(15, 23, 42, 0) 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

.gallery-img-card:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--white);
    font-size: 1.15rem;
}

.gallery-overlay p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
}

/* Grid variation for dedicated page */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

.gallery-grid .gallery-img-card {
    flex: none;
    height: 320px;
    width: 100%;
}

/* Lightbox Modal System */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.open {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    max-width: 85%;
    max-height: 80%;
    position: relative;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    text-align: center;
    color: var(--white);
    margin-top: 1rem;
    font-size: 1.1rem;
    font-family: var(--font-heading);
}

.lightbox-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

/* Contact Splitted Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 4rem;
}

@media (max-width: 991px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3.5rem;
    }
}

.contact-card-box {
    background-color: var(--bg-cream);
    padding: 3rem;
    border-radius: var(--radius-lg);
}

.contact-form-group {
    margin-bottom: 1.5rem;
}

.contact-form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.contact-form-control {
    width: 100%;
    padding: 0.85rem 1.25rem;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    background-color: var(--white);
    transition: var(--transition);
}

.contact-form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(15, 139, 141, 0.1);
}

textarea.contact-form-control {
    resize: vertical;
    min-height: 120px;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.contact-info-header h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.info-list-item {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
}

.info-list-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background-color: var(--primary-light);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.info-list-content h5 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
}

.info-list-content p {
    font-size: 0.9rem;
}

.contact-social-widgets {
    border-top: 1px solid var(--border);
    padding-top: 2rem;
}

.social-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-navy);
}

.social-box-flex {
    display: flex;
    gap: 1rem;
}

.social-icon-btn {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-icon-btn:hover {
    background-color: var(--primary);
    border-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

/* About Page Specific Styles */
/* Overlapping photos for Story block */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 991px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.story-visual {
    position: relative;
    height: 450px;
}

.story-img {
    position: absolute;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.story-img-1 {
    width: 70%;
    height: 80%;
    top: 0;
    left: 0;
    z-index: 1;
}

.story-img-2 {
    width: 65%;
    height: 70%;
    bottom: 0;
    right: 0;
    z-index: 2;
}

.story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: calc(var(--radius-lg) - 4px);
}

.story-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.story-subtitle-alt {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.story-bullet-list {
    margin: 2rem 0;
}

.story-bullet-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1rem;
}

.story-bullet-icon {
    color: var(--primary);
    font-size: 1.1rem;
    margin-top: 0.2rem;
}

/* Mission & Vision double columns */
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
}

@media (max-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
}

.mission-card {
    padding: 3rem;
    border-radius: var(--radius-lg);
    background-color: var(--bg-cream);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.mission-icon {
    font-size: 2.25rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Team Grid profiles */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

@media (max-width: 991px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}

.team-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.team-portrait {
    height: 300px;
    overflow: hidden;
}

.team-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
}

.team-details {
    padding: 1.5rem;
}

.team-details h4 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-quote {
    font-style: italic;
    font-size: 0.9rem;
    color: var(--text-muted);
}

/* Mountain Callout layout on About Us bottom */
.mountain-cta {
    background-color: var(--primary);
    color: var(--white);
    padding: 6rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mountain-cta::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L120,40 L280,10 L450,70 L600,30 L730,90 L900,20 L1050,80 L1200,40 L1200,120 L0,120 Z' fill='%230f172a'/%3E%3C/svg%3E") no-repeat bottom/cover;
    opacity: 0.15;
    z-index: 1;
}

.mountain-cta .container {
    position: relative;
    z-index: 10;
}

.mountain-cta-title {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.mountain-cta-sub {
    color: rgba(255, 255, 255, 0.85);
    max-width: 600px;
    margin: 0 auto 2.5rem;
    font-size: 1.05rem;
}

/* Footer Section styling */
footer {
    background-color: var(--dark-deep);
    color: var(--white);
    padding: 5rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-logo-logo {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    background-color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 800;
    font-size: 1.3rem;
    font-family: var(--font-heading);
}

.footer-logo-img {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 50%;
    transition: var(--transition);
}

.footer-logo-img:hover {
    transform: rotate(10deg) scale(1.05);
}

.footer-logo-text {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--white);
}

.footer-logo-text span {
    color: var(--primary);
}

.footer-brand-desc {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
}

.footer-social-flex {
    display: flex;
    gap: 0.75rem;
}

.footer-social-btn {
    width: 38px;
    height: 38px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social-btn:hover {
    background-color: var(--primary);
    color: var(--white);
    transform: translateY(-3px);
}

.footer-nav-column h4 {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-nav-column h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary);
}

.footer-nav-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-nav-item {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-nav-item:hover {
    color: var(--primary);
    transform: translateX(3px);
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact-item i {
    color: var(--primary);
    margin-top: 0.25rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-nav {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-link {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

.footer-bottom-link:hover {
    color: var(--primary);
}

@media (max-width: 600px) {
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* Booking Modal Form Style overrides */
.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
    z-index: 1050;
    display: none;
    align-items: center;
    justify-content: center;
}

.booking-modal.open {
    display: flex;
}

.booking-modal-card {
    background-color: var(--white);
    border-radius: var(--radius-lg);
    max-width: 500px;
    width: 90%;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: relative;
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.booking-modal-header {
    background-color: var(--primary);
    color: var(--white);
    padding: 1.5rem;
    position: relative;
}

.booking-modal-title {
    color: var(--white);
    font-size: 1.25rem;
}

.booking-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    color: var(--white);
    background: none;
    border: none;
    font-size: 1.25rem;
    cursor: pointer;
}

.booking-modal-body {
    padding: 2rem;
}

/* Alert Message Modal custom popup styling */
.toast-msg {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background-color: var(--dark-navy);
    color: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(150%);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast-msg.show {
    transform: translateY(0);
}

.toast-msg i {
    color: #4ade80;
    /* bright green */
}

/* =========================================
   POLISHED EXTRAS & ANIMATIONS
   ========================================= */

/* Smooth fade-in for top-level page sections */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content,
.section-header,
.page-banner .container {
    animation: fadeInUp 0.7s ease both;
}

/* Stagger hero grid child animations */
.hero-grid>*:nth-child(1) {
    animation-delay: 0.05s;
}

.hero-grid>*:nth-child(2) {
    animation-delay: 0.2s;
}

.hero-collage .collage-item:nth-child(1) {
    animation: fadeInUp 0.6s 0.1s ease both;
}

.hero-collage .collage-item:nth-child(2) {
    animation: fadeInUp 0.6s 0.2s ease both;
}

.hero-collage .collage-item:nth-child(3) {
    animation: fadeInUp 0.6s 0.3s ease both;
}

/* Mobile: stack collage vertically on very small screens */
@media (max-width: 500px) {
    .hero-collage {
        height: 260px;
        grid-template-columns: 1fr 1fr;
    }

    .collage-item:nth-child(3) {
        display: none;
    }

    .collage-item {
        border-radius: 30px !important;
        margin-top: 0 !important;
        height: 100% !important;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .page-banner-title {
        font-size: 2rem;
    }

    .mountain-cta-title {
        font-size: 2rem;
    }
}

/* Gallery track scroll indicator (subtle) */
.gallery-carousel-wrapper::after {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 80px;
    height: 100%;
    background: linear-gradient(to left, var(--bg-cream) 10%, transparent 100%);
    pointer-events: none;
    z-index: 5;
}

/* Ensure hero-section bg fade-in on section-bg-cream pages */
.hero-section {
    animation: fadeInUp 0s 0s linear both;
    /* reset for children */
}

/* Active nav state override for logo text in transparent mode */
header:not(.scrolled) .logo-text {
    color: var(--dark-navy);
}

/* Improve collage border-radius on medium screens */
@media (max-width: 768px) {
    .collage-item {
        border-radius: 50px;
    }
}

/* Better card hover on touch devices - remove hover lift */
@media (hover: none) {

    .trip-card:hover,
    .why-card:hover,
    .team-card:hover {
        transform: none;
    }
}

/* Smooth focus rings for accessibility */
.btn:focus-visible,
.nav-item:focus-visible,
.contact-form-control:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 3px;
}

/* Section badge animated underline style */
.section-badge::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background-color: var(--primary);
    margin: 0.35rem auto 0;
    border-radius: var(--radius-full);
}

.header-flex .section-badge::after {
    margin: 0.35rem 0 0;
}

/* WhatsApp-style floating icon for mobile */
.float-whatsapp {
    position: fixed;
    bottom: 2rem;
    left: 2rem;
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background-color: #25D366;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
    z-index: 900;
    transition: var(--transition);
}

.float-whatsapp:hover {
    background-color: #1ebe59;
    transform: scale(1.1);
}


/* =========================================
   TRIP DETAILS PAGES STYLING
   ========================================= */

/* Neutral wrapper for trip-goa details section — no overflow:hidden */
.trip-detail-wrapper {
    width: 100%;
    box-sizing: border-box;
}

.trip-details-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
    margin-bottom: 4rem;
    width: 100%;
    box-sizing: border-box;
}

.detail-main-content,
.detail-sidebar-content {
    min-width: 0; /* prevent grid blowout */
    width: 100%;
    box-sizing: border-box;
}

.detail-main-content {
    margin-top: 5rem; /* space from banner on desktop */
}

/* =========================================
   MOBILE STICKY BOOKING BAR (trip-goa)
   ========================================= */

.mobile-book-bar {
    display: none; /* hidden by default on desktop */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 950;
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
    padding: 0.85rem 1.25rem;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.mobile-book-bar-price {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.mobile-book-bar-from {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.mobile-book-bar-amount {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.mobile-book-bar-amount small {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--text-muted);
    font-family: var(--font-body);
}

.mobile-book-bar-btn {
    flex-shrink: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Sidebar Booking Widget */
.sticky-sidebar-card {
    position: sticky;
    top: 6.5rem;
    /* just below standard header */
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 2.25rem 2rem;
    transition: var(--transition);
    margin-top: 4rem; /* visual alignment with main content on desktop */
    box-sizing: border-box;
    width: 100%;
}

.sidebar-title {
    font-size: 1.45rem;
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.details-quick-facts {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.75rem;
}

.fact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.fact-label {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.fact-value {
    font-size: 0.95rem;
    color: var(--dark-navy);
    font-weight: 600;
}

.fact-value i {
    color: var(--primary);
    margin-right: 0.35rem;
}

.sidebar-price-container {
    background-color: var(--primary-light);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-text-label {
    font-size: 0.85rem;
    color: var(--text-main);
    font-weight: 600;
}

.price-amount-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-amount-large {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1.1;
}

.price-amount-subtext {
    font-size: 0.7rem;
    color: var(--text-muted);
}

.bullets-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.bullets-list li {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 500;
}

.bullets-list li i {
    color: var(--primary);
    font-size: 1rem;
}

/* Overview and Highlights */
.details-section-heading {
    font-size: 1.8rem;
    color: var(--dark-navy);
    margin: 2.75rem 0 1.25rem;
    position: relative;
    padding-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.details-section-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45px;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.details-text {
    font-size: 0.98rem;
    line-height: 1.75;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin: 1.75rem 0;
}

.highlight-tag {
    background: var(--bg-cream);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    transition: var(--transition);
}

.highlight-tag:hover {
    transform: translateY(-2px);
    border-color: var(--primary);
    background-color: var(--white);
    box-shadow: var(--shadow-sm);
}

.highlight-tag i {
    color: var(--primary);
    font-size: 1.35rem;
    margin-top: 0.1rem;
}

.highlight-tag span {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--dark-navy);
    line-height: 1.35;
}

/* Accordion Itinerary */
.itinerary-accordion {
    margin-top: 1.75rem;
    border-left: 2px solid var(--primary-light);
    padding-left: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.accordion-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
}

.accordion-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-sm);
}

.accordion-header {
    width: 100%;
    padding: 1.25rem 1.5rem;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}

.accordion-header:hover {
    background-color: var(--bg-cream);
}

.accordion-title-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.accordion-day-badge {
    background-color: var(--primary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}

.accordion-day-title {
    font-family: var(--font-body);
    font-size: 1.05rem;
    font-weight: 750;
    color: var(--dark-navy);
}

.accordion-icon {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
    color: var(--primary);
}

.accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    background-color: var(--bg-cream);
}

.accordion-content {
    padding: 1.5rem;
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    border-top: 1px solid var(--border);
}

/* Inclusions & Exclusions Lists */
.inclusions-exclusions-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.inc-box,
.exc-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    box-shadow: var(--shadow-sm);
}

.inc-box {
    border-top: 4px solid #10b981;
    /* bright green border */
}

.exc-box {
    border-top: 4px solid #ef4444;
    /* bright red border */
}

.inc-exc-heading {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark-navy);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-heading);
}

.inc-exc-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.inc-exc-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.45;
}

.inc-exc-list li i {
    font-size: 0.95rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.inc-box i {
    color: #10b981;
}

.exc-box i {
    color: #ef4444;
}


/* Trip Grid Detail Responsive Overrides */
@media (max-width: 991px) {
    .trip-details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .detail-main-content {
        margin-top: 0 !important;
    }

    .sticky-sidebar-card {
        position: static;
        width: 100%;
        margin-top: 0;
    }

    /* Show mobile booking bar */
    .mobile-book-bar {
        display: flex;
    }

    /* Add bottom padding so sticky bar doesn't overlap footer content */
    .section:last-of-type {
        padding-bottom: 5rem;
    }
}

@media (max-width: 768px) {
    .details-tabs-nav {
        gap: 0.5rem;
        padding-bottom: 2px;
    }

    .tab-btn {
        font-size: 0.85rem;
        padding: 0.7rem 0.5rem;
        flex-shrink: 0;
    }

    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }
}

@media (max-width: 600px) {
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .accordion-header {
        padding: 1rem 0.85rem;
    }

    .accordion-title-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.45rem;
    }

    .accordion-day-badge {
        font-size: 0.7rem;
    }

    /* Pricing table on small phones */
    .table {
        font-size: 0.8rem;
    }

    .table th,
    .table td {
        padding: 0.65rem 0.5rem;
    }

    /* Sidebar quick facts 2 cols → 1 col on very small */
    .details-quick-facts {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}



/* =========================================
   TRIP DETAILS TABS STYLING
   ========================================= */

.details-tabs-nav {
    display: flex;
    gap: 1.5rem;
    border-bottom: 2px solid var(--border);
    margin-bottom: 2rem;
    overflow-x: auto;
    scrollbar-width: none;
    /* Firefox */
}

.details-tabs-nav::-webkit-scrollbar {
    display: none;
    /* Safari and Chrome */
}

.tab-btn {
    background: none;
    border: none;
    padding: 0.85rem 0.5rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-muted);
    cursor: pointer;
    position: relative;
    white-space: nowrap;
    transition: var(--transition);
    font-family: var(--font-body);
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    /* aligns with border-bottom of nav */
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--primary);
    border-radius: var(--radius-full);
}

.tab-content-panel {
    display: none;
    animation: tabFadeIn 0.4s ease;
}

.tab-content-panel.active {
    display: block;
}

@keyframes tabFadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


/* =========================================
   BOOKING PAGE SPECIFIC STYLING
   ========================================= */

.booking-summary-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    position: sticky;
    top: 6.5rem;
}

.booking-summary-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid var(--border);
}

.booking-summary-body {
    padding: 1.75rem;
}

.booking-summary-title {
    font-size: 1.4rem;
    color: var(--dark-navy);
    font-weight: 800;
    margin-bottom: 0.75rem;
    font-family: var(--font-heading);
}

.booking-summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    margin-top: 1.25rem;
    border-top: 1px solid var(--border);
    padding-top: 1.25rem;
}

.booking-summary-item {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
}

.booking-summary-item .label {
    color: var(--text-muted);
    font-weight: 500;
}

.booking-summary-item .value {
    font-weight: 600;
    color: var(--dark-navy);
}

.booking-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 2px dashed var(--border);
    padding-top: 1.25rem;
    margin-top: 1.25rem;
}

.booking-summary-total .total-label {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-navy);
}

.booking-summary-total .total-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    font-family: var(--font-heading);
}

/* =========================================
   PRICING TABLE BASE STYLES (trip-goa)
   ========================================= */

.table-responsive {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background-color: var(--white);
}

.table th,
.table td {
    padding: 0.9rem 1.25rem;
    text-align: center;
    border: 1px solid var(--border);
    color: var(--text-main);
}

.table thead th {
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.table tbody tr:nth-child(even) {
    background-color: var(--bg-cream);
}

.table tbody tr:hover {
    background-color: var(--primary-light);
}

.table strong {
    color: var(--primary);
    font-weight: 800;
    font-size: 1.05rem;
}

.table del {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }

/* =========================================
   COMPREHENSIVE MOBILE RESPONSIVENESS
   Covers every page, every element.
   ========================================= */


/* ---- Large Tablet: max 991px ---- */
@media (max-width: 991px) {

    /* Hero stacks */
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }

    .hero-desc {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-collage {
        height: 340px;
        max-width: 480px;
        margin: 0 auto;
    }

    /* Why-grid: 3→2 cols */
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Contact grid stacks */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Footer top: 4→2 cols */
    .footer-top {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Trip details: sidebar goes below */
    .trip-details-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .sticky-sidebar-card {
        position: static;
        width: 100%;
    }

    .booking-summary-card {
        position: static;
    }

    /* Story / about grid */
    .story-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    /* Mission/vision 2→1 */
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Team 3→2 */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Blog grids */
    .blog-detail-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Header flex (section + view-all) */
    .header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
}

/* ---- Tablet: max 768px ---- */
@media (max-width: 768px) {

    /* Container padding */
    .container {
        padding: 0 1.25rem;
    }

    /* Sections */
    .section {
        padding: 3.5rem 0;
    }

    /* Blogs page layout overrides */
    .blogs-grid {
        grid-template-columns: 1fr !important;
        gap: 1.75rem !important;
    }

    .blog-search-container {
        gap: 0.75rem !important;
        margin-bottom: 2rem !important;
    }

    .blog-meta-banner {
        flex-wrap: wrap !important;
        gap: 0.5rem 1rem !important;
    }

    /* Typography */
    .section-title {
        font-size: 1.9rem;
    }

    h1 { font-size: 2rem; }
    h2 { font-size: 1.65rem; }
    h3 { font-size: 1.3rem; }

    /* Hero */
    .hero-section {
        padding: 7rem 0 4rem;
    }

    .hero-title {
        font-size: 2.6rem;
    }

    .hero-desc {
        font-size: 1rem;
    }

    .hero-collage {
        height: 280px;
    }

    /* Page banners */
    .page-banner {
        padding: 7rem 0 3.5rem;
    }

    .page-banner-title {
        font-size: 2rem;
    }

    .page-banner-sub {
        font-size: 0.95rem;
    }

    /* Why grid 2→1 */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Collage border-radius */
    .collage-item {
        border-radius: 50px;
    }

    /* Stats grid */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Contact card */
    .contact-card-box {
        padding: 2rem 1.25rem;
    }

    .contact-info-header h2 {
        font-size: 1.6rem;
    }

    /* Story visual */
    .story-visual {
        height: 280px;
    }

    /* Mountain CTA */
    .mountain-cta {
        padding: 4rem 0;
    }

    .mountain-cta-title {
        font-size: 2rem;
    }

    /* Tab buttons */
    .tab-btn {
        font-size: 0.9rem;
        padding: 0.75rem 0.4rem;
    }

    /* Details section heading */
    .details-section-heading {
        font-size: 1.5rem;
    }

    /* Footer logo text */
    .footer-logo-text {
        font-size: 1.1rem;
    }

    /* Footer bottom */
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.75rem;
    }

    /* Sidebar price */
    .sidebar-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Booking form inline grids → single col */
    #fullBookingForm [style*="grid-template-columns: 1fr 1fr"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
    }

    /* Inclusions/Exclusions */
    .inclusions-exclusions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Highlights grid */
    .highlights-grid {
        grid-template-columns: 1fr;
    }

    /* detail-main-content margin reset */
    .detail-main-content {
        margin-top: 0 !important;
    }
}

/* ---- Mobile: max 480px ---- */
@media (max-width: 480px) {

    /* Container */
    .container {
        padding: 0 1.25rem;
    }

    /* Sections */
    .section {
        padding: 2.75rem 0;
    }

    /* Hero */
    .hero-section {
        padding: 6rem 0 3rem;
    }

    .hero-title {
        font-size: 2.1rem;
    }

    .hero-desc {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-collage {
        height: 240px;
        grid-template-columns: 1fr 1fr;
    }

    .collage-item:nth-child(3) {
        display: none;
    }

    .collage-item {
        border-radius: 30px !important;
        margin-top: 0 !important;
        height: 100% !important;
    }

    /* Section typography */
    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.875rem;
    }

    h1 { font-size: 1.75rem; }
    h2 { font-size: 1.45rem; }
    h3 { font-size: 1.2rem; }

    /* Page banners */
    .page-banner {
        padding: 6rem 0 2.75rem;
    }

    .page-banner-title {
        font-size: 1.65rem !important;
        line-height: 1.35 !important;
    }

    .page-banner-sub {
        font-size: 0.875rem;
    }

    /* Blog details styles */
    .blog-body-content {
        font-size: 1rem !important;
        line-height: 1.65 !important;
    }

    .blog-body-content p {
        margin-bottom: 1.25rem !important;
    }

    .blog-body-content h1, 
    .blog-body-content h2, 
    .blog-body-content h3 {
        margin: 1.75rem 0 0.75rem 0 !important;
    }

    .side-widget {
        padding: 1.25rem 1rem !important;
        margin-bottom: 1.5rem !important;
    }

    .blog-title {
        font-size: 1.15rem !important;
    }

    /* Buttons */
    .btn {
        padding: 0.7rem 1.2rem;
        font-size: 0.875rem;
    }

    /* Why cards */
    .why-card {
        padding: 1.5rem 1.25rem;
    }

    /* Contact form */
    .contact-card-box {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-md);
    }

    .contact-form-control {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }

    .contact-info-header h2 {
        font-size: 1.4rem;
    }

    /* Info list items */
    .info-list-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    /* Footer */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 1.75rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-bottom-nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.75rem;
    }

    .footer-logo-img {
        width: 56px;
        height: 56px;
    }

    /* Gallery carousel */
    .gallery-img-card {
        flex: 0 0 220px;
        height: 280px;
    }

    /* Gallery page grid */
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid .gallery-img-card {
        flex: none;
        width: 100%;
        height: 240px;
    }

    /* Trip cards */
    .trips-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .trip-footer {
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .trip-price-box {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 0.25rem;
    }

    .trip-card-actions {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0.5rem;
        width: 100%;
    }

    .trip-card-actions .btn {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        padding: 0.65rem 0.5rem;
        font-size: 0.85rem;
        text-align: center;
        box-sizing: border-box;
    }

    /* Trip details page */
    .sticky-sidebar-card {
        padding: 1.5rem 1rem;
    }

    .details-quick-facts {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .sidebar-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .price-amount-large {
        font-size: 1.65rem;
    }

    .details-section-heading {
        font-size: 1.35rem;
        margin: 1.75rem 0 1rem;
    }

    .details-text {
        font-size: 0.9rem;
    }

    /* Accordion */
    .accordion-header {
        padding: 1rem;
    }

    .accordion-title-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    .accordion-day-title {
        font-size: 0.95rem;
    }

    .accordion-content {
        padding: 1rem;
        font-size: 0.875rem;
    }

    /* Tabs */
    .tab-btn {
        font-size: 0.8rem;
        padding: 0.65rem 0.35rem;
    }

    /* Booking form */
    .booking-form-row,
    #fullBookingForm [style*="grid-template-columns"] {
        display: flex !important;
        flex-direction: column !important;
        gap: 1.25rem !important;
        margin-bottom: 0 !important;
    }

    .booking-summary-body {
        padding: 1.25rem;
    }

    .booking-summary-title {
        font-size: 1.1rem;
    }

    .booking-summary-total .total-price {
        font-size: 1.5rem;
    }

    /* Inclusions/Exclusions */
    .inc-box,
    .exc-box {
        padding: 1.25rem 1rem;
    }

    .inc-exc-heading {
        font-size: 1.1rem;
    }

    .inc-exc-list li {
        font-size: 0.875rem;
    }

    /* About page */
    .story-visual {
        height: 240px;
    }

    .story-img-1 {
        width: 75%;
        height: 75%;
    }

    .story-img-2 {
        width: 65%;
        height: 65%;
    }

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

    .mission-card {
        padding: 1.5rem 1.25rem;
    }

    /* Mountain CTA */
    .mountain-cta {
        padding: 3rem 0;
    }

    .mountain-cta-title {
        font-size: 1.65rem;
    }

    .mountain-cta-sub {
        font-size: 0.875rem;
    }

    /* Blog list page */
    .blog-card-thumb {
        height: 180px;
    }

    /* Modals */
    .booking-modal-card {
        width: 95%;
        border-radius: var(--radius-md);
    }

    .booking-modal-body {
        padding: 1.25rem 1rem;
    }

    /* Toast */
    .toast-msg {
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        font-size: 0.85rem;
    }

    /* WhatsApp float */
    .float-whatsapp {
        bottom: 1rem;
        left: 1rem;
        width: 48px;
        height: 48px;
        font-size: 1.3rem;
    }

    /* Pricing table responsive */
    .table-responsive {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .table {
        min-width: 380px;
        font-size: 0.875rem;
    }

    /* Highlights grid */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .highlight-tag {
        padding: 1rem;
    }

    .highlight-tag span {
        font-size: 0.875rem;
    }

    /* Itinerary border strip */
    .itinerary-accordion {
        padding-left: 0.85rem;
    }
}

/* ---- Extra small: max 360px ---- */
@media (max-width: 360px) {

    .container {
        padding: 0 1rem;
    }

    .hero-title {
        font-size: 1.85rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.35rem; }

    .btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
    }

    .contact-card-box {
        padding: 1.25rem 0.75rem;
    }

    .page-banner-title {
        font-size: 1.45rem !important;
        line-height: 1.3 !important;
    }

    .nav-links {
        width: 100%;
    }

    .footer-top {
        gap: 1.5rem;
    }

    .footer-logo-img {
        width: 48px;
        height: 48px;
    }

    .footer-logo-text {
        font-size: 1rem;
    }

    .tab-btn {
        font-size: 0.75rem;
        padding: 0.5rem 0.25rem;
    }

    .accordion-day-title {
        font-size: 0.875rem;
    }

    .details-section-heading {
        font-size: 1.2rem;
    }

    .price-amount-large {
        font-size: 1.5rem;
    }

    .booking-summary-total .total-price {
        font-size: 1.35rem;
    }
}

/* Disable hover lift on touch devices */
@media (hover: none) {
    .trip-card:hover,
    .why-card:hover,
    .team-card:hover,
    .highlight-tag:hover,
    .gallery-img-card:hover img {
        transform: none;
    }
}

/* =========================================
   TRIP-GOA PAGE: FINAL MOBILE POLISH
   Ensures 100% correct responsive layout
   ========================================= */

/* Base safety: all grid children never overflow container */
.trip-details-grid > * {
    min-width: 0;
    max-width: 100%;
    box-sizing: border-box;
}

/* Tab nav: always scrollable with scroll-snap, never causing body scroll */
.details-tabs-nav {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
}

.details-tabs-nav .tab-btn {
    scroll-snap-align: start;
}

/* Body padding when mobile bar is visible */
@media (max-width: 991px) {
    body:has(.mobile-book-bar) {
        padding-bottom: 80px; /* height of mobile-book-bar */
    }

    /* Ensure container never causes horizontal scroll */
    .trip-detail-wrapper,
    .trip-details-grid,
    .detail-main-content,
    .detail-sidebar-content {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Tab nav should NOT hide its scrollable content */
    .details-tabs-nav {
        overflow-x: auto !important;
        overflow-y: visible;
    }

    /* Sidebar card: compact at tablet */
    .sticky-sidebar-card {
        padding: 1.75rem 1.5rem;
        margin-top: 0;
    }

    /* Highlights: 2 columns on tablets */
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Sidebar price box: stack vertically for readability */
    .sidebar-price-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.4rem;
    }

    /* Extra spacing for tab nav scroll hint */
    .details-tabs-nav {
        position: relative;
        gap: 0.75rem;
    }

    /* Price amount: slightly smaller */
    .price-amount-large {
        font-size: 1.75rem;
    }

    /* Fact items: compact */
    .fact-label { font-size: 0.68rem; }
    .fact-value { font-size: 0.875rem; }

    /* Highlights: single column */
    .highlights-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    /* Itinerary accordion border strip */
    .itinerary-accordion {
        padding-left: 1rem;
    }

    /* Table: force horizontal scroll wrapper */
    .table-responsive {
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-radius: var(--radius-md);
        /* Hint scrollability with shadow fade */
        box-shadow: inset -8px 0 12px -8px rgba(0,0,0,0.12);
    }

    .table {
        min-width: 320px;
        font-size: 0.85rem;
    }

    .table th,
    .table td {
        padding: 0.75rem 0.65rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    /* Mobile book bar: show on all phones */
    .mobile-book-bar {
        display: flex;
        padding: 0.75rem 1rem;
    }

    .mobile-book-bar-amount {
        font-size: 1.35rem;
    }

    /* Sidebar compact on phones */
    .sticky-sidebar-card {
        padding: 1.25rem 1rem;
        border-radius: var(--radius-md);
    }

    /* Quick facts: 2 cols on phones too */
    .details-quick-facts {
        grid-template-columns: 1fr 1fr;
        gap: 0.65rem;
    }

    /* Fact items: very compact */
    .fact-label { font-size: 0.65rem; }
    .fact-value { font-size: 0.8rem; }

    /* Section headings: smaller */
    .details-section-heading {
        font-size: 1.3rem;
        margin: 1.5rem 0 0.85rem;
    }

    /* Accordion: less padding */
    .accordion-header {
        padding: 0.9rem 0.85rem;
    }

    .accordion-day-title {
        font-size: 0.9rem;
        line-height: 1.3;
    }

    .accordion-content {
        padding: 1rem 0.85rem;
        font-size: 0.875rem;
    }

    /* Bullets list: compact */
    .bullets-list li {
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    /* Inclusions/Exclusions: compact */
    .inc-box,
    .exc-box {
        padding: 1.25rem 1rem;
    }

    .inc-exc-heading {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .inc-exc-list li {
        font-size: 0.85rem;
        gap: 0.5rem;
    }

    /* Table: very compact */
    .table {
        min-width: 300px;
        font-size: 0.8rem;
    }

    .table th,
    .table td {
        padding: 0.6rem 0.5rem;
    }

    /* Sidebar book buttons: full width */
    .sticky-sidebar-card .btn-block {
        font-size: 0.9rem;
        padding: 0.85rem 1rem;
    }
}

@media (max-width: 360px) {
    /* Very small phones */
    .details-tabs-nav {
        gap: 0.5rem;
    }

    .tab-btn {
        font-size: 0.72rem;
        padding: 0.6rem 0.3rem;
    }

    .details-section-heading {
        font-size: 1.15rem;
    }

    .mobile-book-bar {
        padding: 0.65rem 0.85rem;
    }

    .mobile-book-bar-amount {
        font-size: 1.2rem;
    }

    .mobile-book-bar-btn {
        padding: 0.6rem 1rem;
        font-size: 0.875rem;
    }
}