/* =====================================================================
   Odisha Travel Smart — Premium Design System
   Brand: Navy heritage + Ocean blue + Konark gold accent
   Built on Bootstrap 5 · backward-compatible with existing markup
   ===================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@500;600;700;800&family=Poppins:wght@300;400;500;600;700;800&family=Montserrat:wght@500;600;700;800&display=swap');

/* -------------------------------------------------- Design Tokens */
:root {
    /* Brand (preserved) */
    --primary-blue: #0d6efd;
    --blue-600: #0b5ed7;
    --blue-700: #0a53be;
    --navy-dark: #031b4e;
    --navy-900: #041236;
    --navy-700: #0a2a6b;

    /* Heritage accent — Konark sun gold */
    --gold: #f5a623;
    --gold-soft: #ffcf7a;

    /* WhatsApp brand green */
    --whatsapp: #25d366;
    --whatsapp-dark: #1ebe5b;

    /* Neutrals */
    --sky-light: #e9f2ff;
    --ink: #16233d;
    --text-muted: #5b6b86;
    --line: #e6ecf5;
    --bg: #f7f9fc;
    --white: #ffffff;

    /* Glass */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);

    /* Effects */
    --shadow-sm: 0 4px 14px rgba(13, 39, 89, 0.06);
    --shadow-md: 0 14px 34px rgba(13, 39, 89, 0.10);
    --shadow-lg: 0 26px 60px rgba(13, 39, 89, 0.16);
    --radius: 18px;
    --radius-lg: 26px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    /* Fonts */
    --font-body: 'Poppins', system-ui, sans-serif;
    --font-head: 'Montserrat', 'Poppins', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
}

/* -------------------------------------------------- Base */
* { box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    overflow-x: hidden;   /* fallback for older browsers */
    overflow-x: clip;     /* clamps layout viewport without breaking position: sticky */
    max-width: 100%;
}
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
    font-family: var(--font-body);
    color: var(--ink);
    overflow-x: hidden;   /* fallback */
    overflow-x: clip;
    max-width: 100%;
    background-color: var(--bg);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* Global safety: media never forces horizontal overflow */
img, svg, video, iframe { max-width: 100%; }

h1, h2, h3, h4, h5, h6 { font-family: var(--font-head); letter-spacing: -0.01em; }
.font-display { font-family: var(--font-display) !important; letter-spacing: 0; }

img { max-width: 100%; }

::selection { background: var(--primary-blue); color: #fff; }

a { text-decoration: none; }

/* Focus visibility (accessibility) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
.form-control:focus-visible, .form-select:focus-visible {
    outline: 3px solid rgba(13, 110, 253, 0.45);
    outline-offset: 2px;
    border-radius: 6px;
}

/* Scroll progress bar */
#scrollProgress {
    position: fixed;
    top: 0; left: 0;
    height: 4px;
    width: 0%;
    z-index: 100000;
    background: linear-gradient(90deg, var(--primary-blue), var(--gold));
    transition: width 0.1s linear;
}

/* -------------------------------------------------- Loader */
#loader {
    position: fixed;
    inset: 0;
    min-height: 100vh;
    min-height: 100dvh;
    width: 100%;
    background: var(--navy-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s;
}
#loader.hidden, #loader.hide {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}
.loader-spinner {
    width: 54px; height: 54px;
    border: 5px solid rgba(255,255,255,0.18);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 0.9s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* -------------------------------------------------- Navbar */
.main-nav {
    transition: all 0.4s var(--ease);
    padding: 18px 0;
    background: transparent;
}
.main-nav.nav-scrolled {
    background: rgba(3, 27, 78, 0.92) !important;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}
.navbar-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}
.navbar-brand .brand-logo { height: 46px; width: 46px; flex-shrink: 0; border-radius: 10px; object-fit: contain; box-shadow: 0 2px 10px rgba(0,0,0,0.25); transition: transform 0.3s var(--ease); }
.navbar-brand:hover .brand-logo { transform: scale(1.06); }
.brand-text { display: flex; flex-direction: column; justify-content: center; line-height: 1.05; font-family: var(--font-head); white-space: nowrap; }
.brand-text .b-main { font-size: clamp(1rem, 2.6vw, 1.25rem); font-weight: 800; color: #fff; letter-spacing: 0.3px; }
.brand-text .b-sub { font-size: clamp(0.55rem, 1.4vw, 0.68rem); font-weight: 600; letter-spacing: 1.5px; color: var(--gold-soft); text-transform: uppercase; }

.nav-link {
    color: rgba(255,255,255,0.85) !important;
    font-family: var(--font-head);
    font-weight: 600;
    font-size: 0.95rem;
    margin-left: 18px;
    position: relative;
    transition: color 0.3s;
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; bottom: 2px;
    width: 0; height: 2px;
    background: var(--gold);
    transition: width 0.3s var(--ease);
}
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: #fff !important; }

.navbar .dropdown-menu {
    border: 0;
    border-radius: 14px;
    box-shadow: var(--shadow-md);
    padding: 10px;
    margin-top: 10px;
}
.navbar .dropdown-item {
    border-radius: 10px;
    font-weight: 500;
    padding: 8px 14px;
    transition: all 0.2s;
}
.navbar .dropdown-item:hover {
    background: var(--sky-light);
    color: var(--blue-700);
}
.nav-cta {
    margin-left: 20px;
    background: var(--gold);
    color: var(--navy-dark) !important;
    font-weight: 700;
    padding: 8px 20px !important;
    border-radius: 40px;
    transition: all 0.3s var(--ease);
}
.nav-cta::after { display: none; }
.nav-cta:hover { background: #ffb733; color: var(--navy-dark) !important; transform: translateY(-2px); box-shadow: 0 8px 20px rgba(245,166,35,0.4); }

@media (max-width: 991.98px) {
    .main-nav .navbar-collapse {
        margin-top: 12px;
        padding: 14px;
        border-radius: 18px;
        background: linear-gradient(135deg, rgba(3, 27, 78, 0.98), rgba(10, 42, 107, 0.98));
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    }
    .main-nav .navbar-nav .nav-item { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
    .main-nav .navbar-nav .nav-item:last-child { border-bottom: none; }
    .main-nav .navbar-nav .nav-link { display: block; padding: 12px; margin-left: 0; color: var(--white) !important; }
    .nav-link::after { display: none; }
    .nav-cta { display: inline-block; margin: 10px 0 4px; text-align: center; }
}

/* -------------------------------------------------- Hero */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 620px;
    width: 100%;
}
.heroSwiper, .slide-item { height: 100%; background-size: cover; background-position: center; }
.hero-section .heroSwiper,
.hero-section .swiper-wrapper,
.hero-section .swiper-slide { height: 100%; }
.hero-section .swiper-slide {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero-section .slide-bg {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: 1;
    animation: heroZoom 9s ease-in-out infinite alternate;
}
@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.09); } }
.hero-section .swiper-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3,27,78,0.35) 0%, rgba(3,27,78,0.45) 45%, rgba(3,27,78,0.75) 100%);
    z-index: 2;
}
.hero-content {
    position: absolute;
    top: 42%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 900px);
    z-index: 3;
    color: #fff;
    text-shadow: 0 8px 26px rgba(3, 12, 36, 0.5);
}
.hero-eyebrow {
    display: inline-block;
    font-family: var(--font-head);
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-size: 0.8rem;
    color: var(--gold-soft);
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.25);
    padding: 7px 18px;
    border-radius: 40px;
    margin-bottom: 1.1rem;
    backdrop-filter: blur(6px);
}
.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5.4vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
}
.hero-content p { font-size: clamp(1rem, 1.6vw, 1.25rem); font-weight: 300; opacity: 0.95; max-width: 640px; margin: 0 auto 1.6rem; }
.hero-section .swiper-button-next,
.hero-section .swiper-button-prev { color: #fff; }
.hero-section .swiper-pagination-bullet { background: #fff; opacity: 0.5; }
.hero-section .swiper-pagination-bullet-active { background: var(--gold) !important; opacity: 1; width: 26px; border-radius: 5px; }
.hero-scroll-hint {
    position: absolute;
    bottom: 26px; left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: rgba(255,255,255,0.85);
    font-size: 1.4rem;
    animation: bob 1.8s ease-in-out infinite;
}
@keyframes bob { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* -------------------------------------------------- Glass search filter */
.search-container {
    position: absolute;
    left: 0 !important;
    right: 0 !important;
    bottom: 26px;
    margin: 0 auto !important;
    z-index: 10;
    width: min(92%, 1120px) !important;
    padding: 0 12px !important;
    transform: none !important;
}
.glass-filter {
    width: 100%;
    max-width: 1120px;
    margin: 0 auto;
    background: rgba(3, 27, 78, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius) !important;
}
.search-container .row { --bs-gutter-x: 0.9rem; align-items: end; }
.search-container .form-label { min-height: 22px; margin-bottom: 0.4rem; font-size: 0.85rem; font-weight: 500; }
.search-container .form-select,
.search-container .btn { width: 100%; min-height: 48px; border-radius: 12px; }
.search-container .form-select { background: rgba(255,255,255,0.12) !important; color: #fff !important; border-color: rgba(255,255,255,0.28); }
.search-container .btn { font-weight: 700; }

@media (max-width: 767.98px) {
    .search-container { position: static; transform: none; width: min(92%, 560px) !important; margin: -60px auto 0 !important; }
    .glass-filter { padding: 1.1rem !important; }
    .search-container .col-md-4 { width: 100%; }
    .search-container .btn { margin-top: 0.25rem; }
}

/* -------------------------------------------------- Section rhythm */
.section { padding: 92px 0; }
.section-sm { padding: 64px 0; }
.eyebrow {
    display: inline-block;
    color: var(--primary-blue);
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    font-size: 0.78rem;
    margin-bottom: 0.6rem;
}
.section-title {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--navy-dark);
    font-size: clamp(1.7rem, 3.4vw, 2.6rem);
    line-height: 1.15;
}
.section-lead { color: var(--text-muted); max-width: 680px; margin: 1rem auto 0; font-size: 1.02rem; }
.tracking-wider { letter-spacing: 2px; }

/* -------------------------------------------------- Buttons */
.btn { font-family: var(--font-head); font-weight: 600; border-radius: 40px; transition: all 0.35s var(--ease); }
.btn-lg { padding: 0.85rem 2rem; }
.btn-primary { background: var(--primary-blue); border-color: var(--primary-blue); box-shadow: 0 10px 24px rgba(13,110,253,0.28); }
.btn-primary:hover { background: var(--blue-700); border-color: var(--blue-700); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(13,110,253,0.34); }
.btn-navy { background: var(--navy-dark); color: #fff; }
.btn-navy:hover { background: var(--navy-900); color: #fff; transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn-gold { background: var(--gold); color: var(--navy-dark); border: none; font-weight: 700; }
.btn-gold:hover { background: #ffb733; color: var(--navy-dark); transform: translateY(-3px); box-shadow: 0 14px 28px rgba(245,166,35,0.4); }
.btn-outline-primary { border-width: 2px; }
.btn-outline-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(13,110,253,0.2); }
.btn-outline-light:hover { transform: translateY(-3px); }
.btn-ghost-light { color: #fff; border: 2px solid rgba(255,255,255,0.6); }
.btn-ghost-light:hover { background: #fff; color: var(--navy-dark); border-color: #fff; }
.btn-whatsapp { background: var(--whatsapp); border-color: var(--whatsapp); color: #fff; box-shadow: 0 10px 24px rgba(37,211,102,0.32); }
.btn-whatsapp:hover { background: var(--whatsapp-dark); border-color: var(--whatsapp-dark); color: #fff; transform: translateY(-3px); box-shadow: 0 16px 32px rgba(37,211,102,0.4); }
.btn-whatsapp:focus-visible { outline-color: rgba(37,211,102,0.5); }

/* -------------------------------------------------- Button-pair rows (hero/CTA "me-2"/"ms-2" pairs) */
/* Keep even spacing when two inline buttons wrap onto separate lines on mobile/tablet */
.btn.me-2, .btn.ms-2 { margin-bottom: 0.75rem; }

/* -------------------------------------------------- Cards (destination / package / feature) */
.destination-card, .package-card {
    transition: all 0.45s var(--ease);
    background: #fff;
}
.destination-card .card-img-wrapper, .package-card .card-img-wrapper { overflow: hidden; position: relative; }
.destination-card img, .package-card img { transition: transform 0.7s var(--ease); }
/* Fixed crop height so cards stay level no matter the source image's size/orientation */
.card-img-top { height: 220px; width: 100%; object-fit: cover; display: block; }
.destination-card:hover, .package-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg) !important;
}
.destination-card:hover img, .package-card:hover img { transform: scale(1.1); }
.card-img-wrapper .img-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: rgba(3,27,78,0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    padding: 5px 13px;
    border-radius: 40px;
    backdrop-filter: blur(4px);
    z-index: 2;
}

/* Feature / value / service tiles */
.feature-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.4s var(--ease);
}
.feature-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); border-color: transparent; }
.feature-icon {
    width: 62px; height: 62px;
    display: inline-flex;
    align-items: center; justify-content: center;
    border-radius: 16px;
    font-size: 1.5rem;
    background: var(--sky-light);
    color: var(--primary-blue);
    margin-bottom: 1.1rem;
    transition: all 0.4s var(--ease);
}
.feature-card:hover .feature-icon { background: var(--primary-blue); color: #fff; transform: rotate(-6deg); }
.feature-icon.gold { background: #fff5e2; color: var(--gold); }
.feature-card:hover .feature-icon.gold { background: var(--gold); color: #fff; }
.feature-card h4, .feature-card h5 { color: var(--navy-dark); font-weight: 700; }
.feature-card p { color: var(--text-muted); margin-bottom: 0; font-size: 0.95rem; }

/* Category chip cards */
.category-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 260px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    box-shadow: var(--shadow-sm);
}
.category-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); z-index: 1; }
.category-card::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(3,27,78,0.88), rgba(3,27,78,0.05)); z-index: 2; }
.category-card .cat-body { position: relative; z-index: 3; padding: 1.5rem; }
.category-card .cat-body h4 { font-weight: 700; margin-bottom: 0.2rem; }
.category-card .cat-body p { font-size: 0.85rem; opacity: 0.85; margin: 0; }
.category-card:hover img { transform: scale(1.12); }

/* -------------------------------------------------- Counters */
.counter-section { background: var(--sky-light); }
.counter { font-family: var(--font-display); font-size: clamp(2.2rem, 4vw, 3rem); }
.stat-tile { padding: 1rem; }
.stat-tile .counter { color: var(--primary-blue); }

/* -------------------------------------------------- Split / About media */
.media-showcase { position: relative; padding: 10px 26px 26px 0; }
.media-showcase::before {
    content: '';
    position: absolute;
    inset: 0 0 0 26px;
    background: linear-gradient(135deg, var(--gold), var(--navy-dark));
    border-radius: var(--radius-lg);
    opacity: 0.9;
}
.media-frame {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; }
.media-frame:not(.ratio) { aspect-ratio: 1 / 1; }
.media-tag {
    position: absolute;
    top: -8px; right: 16px;
    z-index: 2;
    background: var(--navy-dark);
    color: #fff;
    border-radius: 16px;
    padding: 12px 18px;
    box-shadow: var(--shadow-md);
    display: flex; flex-direction: column; align-items: center;
    line-height: 1.15;
}
.media-tag strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--gold-soft); }
.media-tag small { font-size: 0.62rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.6px; opacity: 0.9; text-align: center; }
.media-badge {
    position: absolute;
    bottom: 20px; left: 4px;
    z-index: 2;
    background: rgba(255,255,255,0.97);
    color: var(--navy-dark);
    padding: 12px 18px 12px 12px;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
}
.media-badge-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 12px;
    background: #fff5e2; color: var(--gold);
    font-size: 1.15rem;
}
.media-badge strong { display: block; font-size: 0.95rem; font-weight: 700; }
.media-badge small { display: block; color: var(--text-muted); font-size: 0.75rem; font-weight: 500; }
.check-list { list-style: none; padding: 0; margin: 0; }
.check-list li { padding: 8px 0 8px 34px; position: relative; color: var(--ink); }
.check-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free'; font-weight: 900;
    position: absolute; left: 0; top: 9px;
    color: #fff; background: var(--primary-blue);
    width: 22px; height: 22px; border-radius: 50%;
    font-size: 0.7rem; display: flex; align-items: center; justify-content: center;
}
.perk-grid { list-style: none; padding: 0; margin: 0; }
.perk-grid li {
    display: flex; align-items: center; gap: 12px;
    background: #fff; border: 1px solid var(--line); border-radius: 14px;
    padding: 12px 16px; font-weight: 600; color: var(--ink); font-size: 0.92rem;
    transition: all 0.3s var(--ease);
}
.perk-grid li:hover { box-shadow: var(--shadow-sm); border-color: transparent; transform: translateY(-2px); }
.perk-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    border-radius: 10px; background: var(--sky-light); color: var(--primary-blue);
    font-size: 0.9rem;
}

/* -------------------------------------------------- Testimonials */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem;
    height: 100%;
    box-shadow: var(--shadow-sm);
}
.testimonial-card .stars { color: var(--gold); margin-bottom: 0.8rem; }
.testimonial-card .quote { color: var(--ink); font-size: 1rem; margin-bottom: 1.4rem; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.testimonial-card .who img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.testimonial-card .who strong { display: block; color: var(--navy-dark); font-family: var(--font-head); }
.testimonial-card .who span { font-size: 0.82rem; color: var(--text-muted); }

/* -------------------------------------------------- FAQ accordion */
.faq .accordion-item { border: 1px solid var(--line); border-radius: 14px !important; margin-bottom: 12px; overflow: hidden; }
.faq .accordion-button { font-family: var(--font-head); font-weight: 600; color: var(--navy-dark); padding: 1.1rem 1.25rem; }
.faq .accordion-button:not(.collapsed) { background: var(--sky-light); color: var(--blue-700); box-shadow: none; }
.faq .accordion-button:focus { box-shadow: 0 0 0 3px rgba(13,110,253,0.2); }
.faq .accordion-body { color: var(--text-muted); }

/* -------------------------------------------------- Blog cards */
.blog-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s var(--ease); height: 100%; }
.blog-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.blog-card .blog-img { height: 210px; overflow: hidden; }
.blog-card .blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-img img { transform: scale(1.08); }
.blog-card .blog-body { padding: 1.5rem; }
.blog-meta { font-size: 0.78rem; color: var(--primary-blue); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.blog-card h5 { color: var(--navy-dark); font-weight: 700; margin: 0.5rem 0; }

/* -------------------------------------------------- CTA band */
.cta-band {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(120deg, var(--navy-dark), var(--blue-700));
    color: #fff;
    padding: 3.5rem;
}
.cta-band::before {
    content: '';
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1524661135-423995f22d0b?q=80&w=1600') center/cover;
    opacity: 0.16;
    z-index: 0;
}
.cta-band > * { position: relative; z-index: 1; }

/* -------------------------------------------------- Inner banner */
.inner-banner {
    height: 46vh;
    min-height: 320px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.inner-banner .breadcrumb-nav { color: rgba(255,255,255,0.85); font-size: 0.9rem; }
.inner-banner .breadcrumb-nav a { color: var(--gold-soft); }

/* -------------------------------------------------- Gallery */
.gallery-item { display: block; width: 100%; position: relative; overflow: hidden; border-radius: 16px; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; min-height: 220px; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(3,27,78,0.85) 0%, rgba(3,27,78,0.2) 60%, transparent 100%);
    display: flex; align-items: flex-end;
    padding: 1.4rem;
    opacity: 0;
    transition: opacity 0.4s ease;
}
.gallery-overlay h5 { color: #fff; margin: 0; transform: translateY(18px); transition: transform 0.4s var(--ease); }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-item:hover .gallery-overlay h5 { transform: translateY(0); }
.row .col-md-4 > a, .row .col-sm-6 > a { display: block; width: 100%; }

/* -------------------------------------------------- Swiper nav (destinations + gallery) */
.destinationSwiper, .gallerySwiper { position: relative; }
.gallerySwiper { padding: 20px 20px !important; box-sizing: border-box; }
.destinationSwiper .swiper-button-next, .destinationSwiper .swiper-button-prev,
.gallerySwiper .swiper-button-next, .gallerySwiper .swiper-button-prev {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 42px; height: 42px;
    background: #fff; border-radius: 50%;
    box-shadow: var(--shadow-md);
    color: var(--navy-dark); z-index: 10;
}
.destinationSwiper .swiper-button-next { right: 6px; }
.destinationSwiper .swiper-button-prev { left: 6px; }
.gallerySwiper .swiper-button-next { right: 10px; }
.gallerySwiper .swiper-button-prev { left: 10px; }
.destinationSwiper .swiper-button-next::after, .destinationSwiper .swiper-button-prev::after,
.gallerySwiper .swiper-button-next::after, .gallerySwiper .swiper-button-prev::after {
    font-size: 1.1rem; font-weight: 700; color: var(--navy-dark);
}
.swiper-pagination-bullet-active { background: var(--primary-blue) !important; }
.gallerySwiper.swiper-fallback { overflow: hidden; }
.gallerySwiper.swiper-fallback .swiper-wrapper { display: flex; transition: transform 0.3s ease; }
.gallerySwiper.swiper-fallback .swiper-slide { min-width: 100%; }

/* -------------------------------------------------- Reveal-on-scroll (JS driven, extra to AOS) */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* Fade-in lazy images */
img.lazy-fade { opacity: 0; transition: opacity 0.6s ease; }
img.lazy-fade.loaded { opacity: 1; }

/* -------------------------------------------------- Utilities */
.text-navy { color: var(--navy-dark) !important; }
.text-gold { color: var(--gold) !important; }
.bg-light-blue { background-color: var(--sky-light); }
.bg-navy { background-color: var(--navy-dark) !important; }
.bg-soft { background-color: var(--bg); }
.leading-relaxed { line-height: 1.85; }
.text-sm { font-size: 0.9rem; }
.max-w-3xl { max-width: 48rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.rounded-4 { border-radius: var(--radius) !important; }
.shadow-soft { box-shadow: var(--shadow-md) !important; }
.divider-wave { display: block; line-height: 0; }

/* -------------------------------------------------- Floating action buttons */
.float-actions {
    position: fixed;
    right: 20px; bottom: 84px;
    z-index: 9990;
    display: flex; flex-direction: column; gap: 12px;
}
.fab {
    width: 54px; height: 54px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 1.5rem;
    box-shadow: var(--shadow-md);
    transition: all 0.3s var(--ease);
}
.fab:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--primary-blue); }
.fab-pulse { animation: fabPulse 2.2s infinite; }
@keyframes fabPulse {
    0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
    70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
    100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* Scroll-to-top button */
#scrollTopBtn {
    position: fixed;
    bottom: 20px; right: 20px;
    z-index: 99;
    display: none;
    width: 46px; height: 46px;
    align-items: center; justify-content: center;
    border-radius: 50%;
}

/* -------------------------------------------------- Footer */
.site-footer {
    background: var(--navy-900);
    color: rgba(255,255,255,0.72);
    padding: 4.5rem 0 0;
}
.site-footer h6 { color: #fff; font-family: var(--font-head); font-weight: 700; letter-spacing: 0.5px; margin-bottom: 1.2rem; text-transform: uppercase; font-size: 0.85rem; }
.site-footer a { color: rgba(255,255,255,0.72); transition: color 0.25s, padding-left 0.25s; }
.site-footer a:hover { color: var(--gold-soft); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.6rem; }
.footer-links a:hover { padding-left: 6px; }
.footer-brand { display: inline-flex; align-items: center; gap: 12px; text-decoration: none; }
.footer-brand .brand-logo { height: 54px; width: 54px; flex-shrink: 0; border-radius: 12px; object-fit: contain; box-shadow: 0 2px 10px rgba(0,0,0,0.3); }
.footer-brand .brand-text .b-main { font-size: 1.25rem; }
.footer-brand .brand-text .b-sub { font-size: 0.7rem; }
.footer-social { display: flex; gap: 12px; margin-top: 1.2rem; }
.footer-social a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    transition: all 0.3s var(--ease);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); transform: translateY(-3px); }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 0.9rem; align-items: flex-start; }
.footer-contact i { color: var(--gold); margin-top: 4px; }
.footer-bottom {
    margin-top: 3.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.4rem 0;
    font-size: 0.85rem;
}
.footer-bottom span { color: var(--gold-soft); font-weight: 600; }

/* Legacy centered footer (kept so old inner pages still render tidy) */
footer:not(.site-footer) {
    background-color: var(--navy-dark);
    color: var(--white);
    padding: 3rem 1rem 2rem;
    text-align: center;
}
footer:not(.site-footer) .social { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 1rem; }
footer:not(.site-footer) .social i { font-size: 1.4rem; color: rgba(255,255,255,0.7); transition: all 0.3s ease; }
footer:not(.site-footer) .social a:hover i { color: var(--gold); transform: translateY(-3px); }
footer:not(.site-footer) p span { color: var(--gold-soft); font-weight: 600; }

/* -------------------------------------------------- Responsive */
@media (max-width: 1200px) {
    .inner-banner { height: 42vh; }
}
@media (max-width: 992px) {
    .section { padding: 70px 0; }
    .hero-content { width: 92%; top: 42%; }
    .destination-card, .package-card { margin-bottom: 0.5rem; }
    .cta-band { padding: 2.5rem; }
}
@media (max-width: 768px) {
    .main-nav { padding: 12px 0; }
    .navbar-brand { gap: 8px; }
    .navbar-brand .brand-logo { height: 40px; width: 40px; }
    .section { padding: 58px 0; }
    .gallery-item { aspect-ratio: 3 / 2; min-height: 180px; }
    .card-img-top { height: 190px; }
    .float-actions { bottom: 76px; }
}
@media (max-width: 576px) {
    .hero-section { min-height: 560px; }
    .navbar-brand .brand-logo { height: 36px; width: 36px; }
    .cta-band { padding: 2rem 1.4rem; }
    .destinationSwiper .swiper-button-next, .destinationSwiper .swiper-button-prev,
    .gallerySwiper .swiper-button-next, .gallerySwiper .swiper-button-prev { width: 34px; height: 34px; }
}
@media (max-width: 400px) {
    .navbar-brand .brand-logo { height: 32px; width: 32px; }
    .navbar-brand .brand-text .b-sub { display: none; }
}
