/* GLOBAL STYLES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #f4f7f9;
    color: #333;
}

a {
    text-transform: none;
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    background-color: #0b2240;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    height: 86px;               /* header height stays fixed */
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 1.2rem;
}

/* Logo image (footer default; navbar overridden below) */
.logo-img {
    height: 70px;
    width: auto;
    max-width: none;   /* keep aspect ratio; not clamped by global img rule */
    display: block;
}

/* Navbar logo: 130px tall but floats over the bar without growing its height */
.navbar .logo {
    position: relative;
    width: 92px;                /* reserves space for the ~81px visible artwork */
    height: 100%;
}

.navbar .logo-img {
    position: absolute;
    top: -21px;                 /* logo has ~18% transparent margin, so this
                                   vertically centers the artwork in the 86px bar
                                   without clipping any visible art */
    left: -22px;                /* cancels the transparent side-margin so the
                                   artwork sits flush with the navbar edge */
    height: 128px;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.35));
}

.footer-logo {
    height: 60px;
    /* keep the logo readable on the dark footer */
    background: rgba(255, 255, 255, 0.92);
    padding: 6px 10px;
    border-radius: 8px;
}

.logo-circle {
    background-color: #f4b41a;
    color: #0b2240;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
}

.nav-links {
    white-space: nowrap;
}

.nav-links a {
    margin: 0 7px;
    font-size: 0.9rem;
    opacity: 0.85;
    transition: 0.3s;
}

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

.nav-links > a,
.nav-item {
    margin: 0 7px;
}

.nav-item .nav-trigger { font-size: 0.9rem; }

.nav-links a:hover, .nav-links a.active {
    opacity: 1;
    color: #f4b41a;
}

/* ---------- MEGA MENU (Domestic / International) ---------- */
.nav-item {
    position: relative;
    /* extend the hover zone down to the navbar's bottom edge so the
       pointer can travel into the mega menu without a dead gap */
    padding-bottom: 15px;
    margin-bottom: -15px;
}

.nav-item .nav-trigger {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.95rem;
    opacity: 0.85;
    transition: 0.3s;
}

.nav-item .nav-trigger i {
    font-size: 0.7rem;
    transition: transform 0.35s ease;
}

.nav-item:hover .nav-trigger {
    opacity: 1;
    color: #f4b41a;
}

.nav-item:hover .nav-trigger i {
    transform: rotate(180deg);
}

.mega-menu {
    position: absolute;
    top: 100%;
    left: 0;
    /* start slightly up + hidden, then slide down smoothly on hover */
    transform: translateY(-14px) scale(0.98);
    transform-origin: top left;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    color: #333;
    border-radius: 16px;
    box-shadow: 0 30px 70px -20px rgba(11, 34, 64, 0.45), 0 8px 24px rgba(11, 34, 64, 0.12);
    border: 1px solid rgba(11, 34, 64, 0.06);
    z-index: 1200;
    overflow: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s;
}

/* Gradient accent ribbon along the top of the panel */
.mega-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4b41a, #ffd873, #f4b41a);
    z-index: 2;
}

.nav-item:hover .mega-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.mega-inner {
    display: grid;
    grid-template-columns: repeat(3, minmax(158px, 1fr)) 230px;
    gap: 0;
    padding: 28px 30px;
    width: max-content;
    max-width: 92vw;
}

/* Column dividers + spacing */
.mega-col {
    padding: 0 26px;
    border-right: 1px solid rgba(11, 34, 64, 0.07);
}

.mega-col:first-child {
    padding-left: 4px;
}

.mega-col h4 {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-bottom: 14px;
    font-weight: 700;
}

.mega-col h4 i {
    color: #f4b41a;
    font-size: 0.85rem;
}

.mega-col ul {
    list-style: none;
}

.mega-col ul li {
    margin-bottom: 2px;
}

.mega-col ul li a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    padding: 7px 10px;
    border-radius: 8px;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.mega-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #cbd5e1;
    flex-shrink: 0;
    transition: background 0.2s ease, transform 0.2s ease;
}

.mega-col ul li a:hover {
    background: rgba(244, 180, 26, 0.12);
    color: #0b2240;
    transform: translateX(4px);
}

.mega-col ul li a:hover .mega-dot {
    background: #f4b41a;
    transform: scale(1.5);
}

/* -------- Featured promo card -------- */
.mega-feature {
    position: relative;
    margin-left: 26px;
    border-radius: 12px;
    overflow: hidden;
    min-height: 210px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: #fff;
    box-shadow: 0 12px 26px rgba(11, 34, 64, 0.25);
    transition: transform 0.35s ease, box-shadow 0.35s ease, background-size 0.6s ease;
}

.mega-feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 34px rgba(11, 34, 64, 0.35);
    background-size: 115%;
}

.mega-feature-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #f4b41a;
    color: #0b2240;
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}

.mega-feature-body {
    padding: 16px;
}

.mega-feature-meta {
    font-size: 0.75rem;
    opacity: 0.9;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.mega-feature-body h5 {
    font-size: 1.05rem;
    margin: 6px 0 12px;
    line-height: 1.25;
}

.mega-feature-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.mega-feature-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffd873;
}

.mega-feature-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.18);
    backdrop-filter: blur(4px);
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.25s ease, gap 0.25s ease;
}

.mega-feature:hover .mega-feature-btn {
    background: #f4b41a;
    color: #0b2240;
    gap: 10px;
}

/* -------- Staggered reveal of columns + feature -------- */
.mega-inner > * {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.45s ease, transform 0.45s ease;
}

.nav-item:hover .mega-inner > * {
    opacity: 1;
    transform: translateY(0);
}

.nav-item:hover .mega-inner > *:nth-child(1) { transition-delay: 0.08s; }
.nav-item:hover .mega-inner > *:nth-child(2) { transition-delay: 0.15s; }
.nav-item:hover .mega-inner > *:nth-child(3) { transition-delay: 0.22s; }
.nav-item:hover .mega-inner > *:nth-child(4) { transition-delay: 0.29s; }

/* ---------- SPECIAL TOURS: DROPDOWN + SUBMENU FLYOUT ---------- */
.nav-badge {
    display: inline-block;
    background: #e11d48;
    color: #fff;
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 2px 6px;
    border-radius: 10px;
    margin-left: 2px;
    vertical-align: middle;
    line-height: 1;
    animation: badgePulse 1.8s infinite;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); }
    50%      { transform: scale(1.12); }
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 258px;
    list-style: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 14px;
    box-shadow: 0 30px 70px -20px rgba(11, 34, 64, 0.45), 0 8px 24px rgba(11, 34, 64, 0.12);
    border: 1px solid rgba(11, 34, 64, 0.06);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-14px) scale(0.98);
    transform-origin: top left;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.4s;
    z-index: 1200;
}

/* gold accent ribbon on top (inset so it stays inside the rounded corners) */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 16px;
    right: 16px;
    height: 3px;
    border-radius: 0 0 3px 3px;
    background: linear-gradient(90deg, #f4b41a, #ffd873, #f4b41a);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.dropdown-menu > li {
    position: relative;
    opacity: 0;
    transform: translateX(-8px);
    transition: opacity 0.35s ease, transform 0.35s ease;
}

.has-dropdown:hover .dropdown-menu > li {
    opacity: 1;
    transform: translateX(0);
}

.has-dropdown:hover .dropdown-menu > li:nth-child(1) { transition-delay: 0.05s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(2) { transition-delay: 0.09s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(3) { transition-delay: 0.13s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(4) { transition-delay: 0.17s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(5) { transition-delay: 0.21s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(6) { transition-delay: 0.25s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(7) { transition-delay: 0.29s; }
.has-dropdown:hover .dropdown-menu > li:nth-child(8) { transition-delay: 0.33s; }

.dropdown-menu > li > a {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 9px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #334155;
    transition: background 0.2s ease, color 0.2s ease;
}

.drop-ico {
    width: 30px;
    height: 30px;
    border-radius: 8px;
    background: rgba(244, 180, 26, 0.12);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    flex-shrink: 0;
    transition: background 0.2s ease, color 0.2s ease;
}

.drop-label { flex: 1; }

.drop-arrow {
    font-size: 0.7rem;
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.dropdown-menu > li > a:hover {
    background: rgba(244, 180, 26, 0.12);
    color: #0b2240;
}

.dropdown-menu > li > a:hover .drop-ico {
    background: #f4b41a;
    color: #fff;
}

.has-submenu:hover > a .drop-arrow {
    transform: translateX(3px);
    color: #f4b41a;
}

/* Submenu flyout */
.submenu {
    position: absolute;
    top: -10px;
    left: calc(100% + 6px);
    min-width: 194px;
    list-style: none;
    background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    border-radius: 14px;
    box-shadow: 0 30px 70px -20px rgba(11, 34, 64, 0.45), 0 8px 24px rgba(11, 34, 64, 0.12);
    border: 1px solid rgba(11, 34, 64, 0.06);
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-10px) scale(0.98);
    transform-origin: top left;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                visibility 0.35s;
    z-index: 1300;
}

/* invisible bridge so the pointer can cross the gap into the submenu */
.has-submenu::after {
    content: '';
    position: absolute;
    top: 0;
    right: -8px;
    width: 8px;
    height: 100%;
}

.has-submenu:hover > .submenu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(0) scale(1);
}

.submenu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.88rem;
    font-weight: 500;
    color: #334155;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.submenu li a:hover {
    background: rgba(244, 180, 26, 0.12);
    color: #0b2240;
    transform: translateX(4px);
}

.submenu li a:hover .mega-dot {
    background: #f4b41a;
    transform: scale(1.5);
}

/* Highlighted dropdown item (e.g. Pay Online) */
.dropdown-menu > li.dd-highlight { margin-top: 6px; }
.dropdown-menu > li.dd-highlight > a {
    background: linear-gradient(135deg, #f4b41a, #ffcf5c);
    color: #0b2240;
    font-weight: 700;
}
.dropdown-menu > li.dd-highlight .drop-ico {
    background: rgba(11, 34, 64, 0.16);
    color: #0b2240;
}
.dropdown-menu > li.dd-highlight > a:hover {
    background: linear-gradient(135deg, #e5a70c, #f4b41a);
    color: #0b2240;
}
.dropdown-menu > li.dd-highlight > a:hover .drop-ico {
    background: #0b2240;
    color: #f4b41a;
}

.btn-book-now {
    background-color: #f4b41a;
    border: none;
    padding: 10px 20px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.btn-book-now:hover {
    background-color: #e09e07;
}

/* HERO SLIDER */
.hero-slider {
    position: relative;
    height: 82vh;
    min-height: 520px;
    color: #fff;
}

/* clip the Ken-Burns zoom here so the floating search bar (which sits
   below the hero) is NOT clipped */
.hero-slides { position: absolute; inset: 0; overflow: hidden; }

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Background layer (separate so we can Ken-Burns zoom it) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.02);
    z-index: 0;
}

.hero-slide::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 34, 64, 0.55), rgba(11, 34, 64, 0.78));
    z-index: 1;
}

.hero-slide.active .hero-bg {
    animation: kenBurns 7s ease-out forwards;
}

@keyframes kenBurns {
    from { transform: scale(1.02); }
    to   { transform: scale(1.16); }
}

/* Caption */
.hero-caption {
    position: relative;
    z-index: 2;
    max-width: 820px;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 180, 26, 0.16);
    border: 1px solid rgba(244, 180, 26, 0.5);
    color: #f4b41a;
    padding: 7px 16px;
    border-radius: 30px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    margin-bottom: 18px;
}

.hero-caption h1 {
    font-size: 3.2rem;
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.35);
}

.hero-caption h1 span { color: #f4b41a; }

.hero-caption p {
    font-size: 1.12rem;
    opacity: 0.92;
    margin-bottom: 30px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
}

.hero-cta {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.98rem;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.hero-btn.primary {
    background: #f4b41a;
    color: #0b2240;
    box-shadow: 0 10px 24px rgba(244, 180, 26, 0.35);
}
.hero-btn.primary:hover { transform: translateY(-3px); box-shadow: 0 16px 30px rgba(244, 180, 26, 0.45); }

.hero-btn.ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(4px);
}
.hero-btn.ghost:hover { background: #25d366; border-color: #25d366; transform: translateY(-3px); }

/* Caption entrance animation (runs when slide becomes active) */
.hero-caption > * {
    opacity: 0;
    transform: translateY(28px);
}
.hero-slide.active .hero-caption > * {
    animation: heroCaptionIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
.hero-slide.active .hero-caption > *:nth-child(1) { animation-delay: 0.25s; }
.hero-slide.active .hero-caption > *:nth-child(2) { animation-delay: 0.4s; }
.hero-slide.active .hero-caption > *:nth-child(3) { animation-delay: 0.55s; }
.hero-slide.active .hero-caption > *:nth-child(4) { animation-delay: 0.7s; }

@keyframes heroCaptionIn {
    to { opacity: 1; transform: none; }
}

/* Arrows */
.hero-arrow {
    position: absolute;
    top: 42%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.5);
    background: rgba(11, 34, 64, 0.35);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 1.05rem;
    cursor: pointer;
    z-index: 5;
    transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.hero-arrow:hover { background: #f4b41a; border-color: #f4b41a; color: #0b2240; }
.hero-prev { left: 26px; }
.hero-next { right: 26px; }
.hero-prev:hover { transform: translateY(-50%) scale(1.08); }
.hero-next:hover { transform: translateY(-50%) scale(1.08); }

/* Dots */
.hero-dots {
    position: absolute;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}
.hero-dots button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.7);
    background: transparent;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease, border-radius 0.25s ease;
}
.hero-dots button.active {
    background: #f4b41a;
    border-color: #f4b41a;
    width: 30px;
    border-radius: 6px;
}

/* SEARCH BAR */
.search-bar {
    background-color: white;
    border-radius: 10px;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    color: #333;
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 6;
}

.search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    text-align: left;
    flex: 1;
    border-right: 1px solid #ddd;
    padding: 0 15px;
}

.search-item:last-of-type {
    border-right: none;
}

.search-item i {
    color: #0b2240;
    font-size: 1.4rem;
}

.search-item h4 {
    font-size: 0.9rem;
    color: #666;
}

.search-item p {
    font-weight: bold;
    font-size: 0.95rem;
}

.search-btn {
    background-color: #f4b41a;
    border: none;
    padding: 12px 25px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* REUSABLE SECTION CONTAINER */
.section-container {
    padding: 80px 5% 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 1.8rem;
    color: #0b2240;
    position: relative;
    padding-bottom: 10px;
}

.section-header h2::after {
    content: '';
    width: 50px;
    height: 3px;
    background-color: #f4b41a;
    position: absolute;
    bottom: 0;
    left: 0;
}

.arrow-icon {
    font-size: 1.5rem;
    color: #0b2240;
    cursor: pointer;
}

.view-all {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s ease, color 0.2s ease;
}
.view-all i { font-size: 0.8rem; color: #f4b41a; }
.view-all:hover { color: #f4b41a; gap: 11px; }
.view-all.light { color: #fff; }
.view-all.light:hover { color: #f4b41a; }

/* POPULAR DESTINATIONS */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.dest-card {
    height: 160px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.3s;
}

.dest-card:hover {
    transform: translateY(-5px);
}

.dest-label {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(11, 34, 64, 0.8);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* OUR SERVICES */
.services-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 15px;
}

.service-card {
    background-color: white;
    padding: 20px 10px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    cursor: pointer;
    transition: 0.3s;
}

.service-card:hover {
    background-color: #0b2240;
    color: white;
}

.service-card i {
    font-size: 2rem;
    color: #f4b41a;
    margin-bottom: 10px;
}

.service-card p {
    font-size: 0.8rem;
    font-weight: bold;
}

/* TAXI FLEET */
.taxi-fleet-section {
    background-color: #0b2240;
    padding: 60px 5%;
    color: white;
    margin-top: 40px;
}

.section-header.inverse h2 {
    color: white;
}

.taxi-carousel {
    display: flex;
    align-items: center;
    gap: 20px;
}

.taxi-grid {
    display: flex;
    gap: 20px;
    flex: 1;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 2px;
}
.taxi-grid::-webkit-scrollbar { display: none; }

.taxi-card {
    background-color: rgba(255,255,255,0.05);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.1);
    flex: 0 0 220px;
    scroll-snap-align: start;
    transition: transform 0.3s ease, background 0.3s ease;
}
.taxi-card:hover { transform: translateY(-5px); background-color: rgba(255,255,255,0.09); }

.carousel-arrow { flex-shrink: 0; transition: background 0.2s ease, transform 0.2s ease; }
.carousel-arrow:hover { background: #f4b41a; color: #0b2240; }
.carousel-arrow:disabled { opacity: 0.3; cursor: default; }

@media (max-width: 600px) {
    .taxi-card { flex-basis: 200px; }
    .carousel-arrow { display: none; }
}

.taxi-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 10px;
}

.carousel-arrow {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
}

/* FEATURED TOUR PACKAGES */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.package-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
}

.package-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.package-info {
    padding: 20px;
}

.package-info h3 {
    font-size: 1.2rem;
    color: #0b2240;
    margin-bottom: 8px;
}

.duration, .rating {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 6px;
}

.rating i {
    color: #f4b41a;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #0b2240;
}

.price span {
    font-size: 0.8rem;
    color: #777;
}

.pkg-btn {
    background-color: #f4b41a;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: bold;
    cursor: pointer;
}

/* TWO-COLUMN GRID SETUP */
.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.column-title {
    font-size: 1.5rem;
    color: #0b2240;
    margin-bottom: 25px;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.feature-box {
    background-color: white;
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-radius: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.feature-box i {
    color: #0b2240;
    font-size: 1.3rem;
}

/* TESTIMONIALS */
.testimonials-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.testimonial-card {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.user-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 12px;
}

.user-meta img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.stars {
    color: #f4b41a;
    margin-bottom: 10px;
    font-size: 0.85rem;
}

/* STATS BAR */
.stats-bar {
    background-color: #0b2240;
    color: white;
    padding: 40px 5%;
    display: flex;
    justify-content: space-around;
    text-align: left;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-item i {
    font-size: 2.5rem;
    color: #f4b41a;
}

.stat-item h3 {
    font-size: 1.8rem;
}

/* TRAVEL BLOG (homepage) */
.hblog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.hblog-card {
    height: 250px;
    border-radius: 8px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.blog-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 20px;
}

.tag {
    background-color: #f4b41a;
    color: #333;
    font-size: 0.75rem;
    padding: 3px 8px;
    border-radius: 3px;
    font-weight: bold;
}

.blog-overlay h4 {
    margin: 8px 0;
    font-size: 1.1rem;
}

.blog-overlay p {
    font-size: 0.8rem;
    opacity: 0.8;
}

/* CTA BANNER */
.cta-banner {
    background-color: #0b2240;
    color: white;
    text-align: center;
    padding: 60px 20px;
    margin: 40px 0;
}

.cta-banner h2 {
    font-size: 2.5rem;
}

.cta-banner h2 span {
    color: #f4b41a;
}

.cta-banner p {
    margin: 15px 0 30px;
    opacity: 0.8;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.cta-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.cta-btn.yellow { background-color: #f4b41a; }
.cta-btn.green { background-color: #25d366; color: white; }
.cta-btn.blue { background-color: #0056b3; color: white; }

/* FOOTER */
footer {
    background-color: #051427;
    color: #a0aec0;
    padding: 60px 5% 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 40px;
}

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

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

.footer-col h3 {
    color: white;
    margin-bottom: 22px;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 3px;
    background: #f4b41a;
}

.footer-col p {
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 15px;
}

/* keep the brand "about" text from stretching too wide */
.footer-col:first-child p {
    max-width: 300px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 10px;
}

/* Pretty link lists (Quick Links / Popular Destinations) */
.footer-links li a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9rem;
    color: #a0aec0;
    transition: color 0.25s ease, transform 0.25s ease, padding-left 0.25s ease;
}

.footer-links li a::before {
    content: '\f105'; /* FontAwesome chevron-right */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.75rem;
    color: #f4b41a;
    transition: transform 0.25s ease;
}

.footer-links li a:hover {
    color: #f4b41a;
    padding-left: 6px;
}

.footer-links li a:hover::before {
    transform: translateX(3px);
}

/* Contact list with icon chips */
.footer-contact {
    list-style: none;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #a0aec0;
}

.footer-contact .fc-icon {
    flex-shrink: 0;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(244, 180, 26, 0.12);
    color: #f4b41a;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 0.9rem;
}

.footer-contact li a {
    transition: color 0.25s ease;
}

.footer-contact li a:hover {
    color: #f4b41a;
}

/* WhatsApp CTA in footer */
.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 6px;
    padding: 10px 20px;
    background: #25d366;
    color: #fff;
    font-weight: bold;
    font-size: 0.9rem;
    border-radius: 30px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(37, 211, 102, 0.35);
}

.social-icons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.social-icons a {
    width: 35px;
    height: 35px;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}
.social-icons a:hover {
    background: linear-gradient(135deg, #f4b41a, #ffd873);
    color: #0b2240;
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 18px rgba(244, 180, 26, 0.45);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    font-size: 0.85rem;
}

/* ---------- FLOATING WHATSAPP + CALL BUTTONS ---------- */
.floating-actions {
    position: fixed;
    right: 22px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    z-index: 1500;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff !important;
    font-size: 1.6rem;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.float-whatsapp {
    background-color: #25d366;
    animation: floatPulse 2s infinite;
}

.float-call {
    background-color: #0056b3;
    animation: floatPulse 2s infinite 1s;
}

@keyframes floatPulse {
    0%   { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0.5); }
    70%  { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28), 0 0 0 14px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28), 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1240px) {
    .nav-links { display: none; }
    .navbar .btn-book-now { display: none; }
    .navbar .nav-toggle { display: flex; }
}

@media (max-width: 600px) {
    .float-btn { width: 50px; height: 50px; font-size: 1.4rem; }
    .floating-actions { right: 16px; bottom: 18px; }
}

/* =====================================================================
   HOME PAGE ENHANCEMENTS  (motion, offers, steps, carousel, gallery, faq)
   ===================================================================== */

/* Shared helpers */
.section-header.center { justify-content: center; }
.section-header.center h2::after { left: 50%; transform: translateX(-50%); }

.section-subtitle {
    text-align: center;
    color: #64748b;
    margin: -14px 0 34px;
    font-size: 0.98rem;
}

.header-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(225, 29, 72, 0.1);
    color: #e11d48;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
}

/* -------- HOW IT WORKS -------- */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.step-card {
    position: relative;
    background: #fff;
    border-radius: 14px;
    padding: 34px 22px 26px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    border: 1px solid #eef2f7;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(11, 34, 64, 0.14);
}

.step-num {
    position: absolute;
    top: 10px;
    right: 16px;
    font-size: 2.6rem;
    font-weight: 800;
    color: rgba(11, 34, 64, 0.06);
    line-height: 1;
}

.step-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.step-card:hover .step-icon { transform: rotate(-8deg) scale(1.08); }

.step-card h4 { color: #0b2240; margin-bottom: 8px; font-size: 1.05rem; }
.step-card p { font-size: 0.86rem; color: #64748b; line-height: 1.5; }

/* -------- SPECIAL OFFERS -------- */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.07);
    border: 1px solid #eef2f7;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(11, 34, 64, 0.16);
}

.offer-media {
    height: 170px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #e11d48;
    color: #fff;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 6px 12px;
    border-radius: 8px;
    box-shadow: 0 6px 14px rgba(225, 29, 72, 0.4);
}

.offer-body { padding: 20px; }

.offer-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 700;
    color: #f4b41a;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.offer-body h3 { color: #0b2240; margin: 8px 0 12px; font-size: 1.2rem; }

.offer-price { margin-bottom: 12px; }
.offer-price .old { text-decoration: line-through; color: #94a3b8; font-size: 0.9rem; margin-right: 8px; }
.offer-price .new { color: #0b2240; font-weight: 800; font-size: 1.35rem; }

.offer-coupon {
    font-size: 0.82rem;
    color: #475569;
    background: repeating-linear-gradient(-45deg, #fff7e6, #fff7e6 8px, #fdeecb 8px, #fdeecb 16px);
    border: 1px dashed #f4b41a;
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.offer-coupon b { color: #b8860b; letter-spacing: 0.05em; }

.offer-body .pkg-btn { width: 100%; padding: 11px; font-size: 0.95rem; }

/* -------- WHY CHOOSE (wide) -------- */
.features-grid.wide {
    grid-template-columns: repeat(4, 1fr);
}

.features-grid.wide .feature-box { transition: transform 0.25s ease, box-shadow 0.25s ease; }
.features-grid.wide .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(11, 34, 64, 0.12);
}
.features-grid.wide .feature-box i {
    background: rgba(244, 180, 26, 0.14);
    color: #0b2240;
    width: 42px; height: 42px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}

/* -------- TESTIMONIAL CAROUSEL -------- */
.testimonial-carousel {
    display: flex;
    align-items: center;
    gap: 16px;
}

.tc-viewport { overflow: hidden; flex: 1; }

.tc-track {
    display: flex;
    transition: transform 0.55s cubic-bezier(0.16, 1, 0.3, 1);
}

.tc-card {
    flex: 0 0 calc(33.333% - 20px);
    margin: 0 10px;
    background: #fff;
    border-radius: 16px;
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(11, 34, 64, 0.08);
    border: 1px solid #eef2f7;
    position: relative;
}

.tc-quote { font-size: 2rem; color: #f4b41a; opacity: 0.35; margin-bottom: 10px; }
.tc-card > p { color: #334155; line-height: 1.6; font-size: 0.95rem; margin-bottom: 16px; }
.tc-card .stars { margin-bottom: 16px; }
.tc-card .user-meta { margin-bottom: 0; }

.tc-arrow {
    flex-shrink: 0;
    width: 46px; height: 46px;
    border-radius: 50%;
    border: none;
    background: #0b2240;
    color: #fff;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.25s ease, transform 0.25s ease;
}
.tc-arrow:hover { background: #f4b41a; color: #0b2240; transform: scale(1.08); }

.tc-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 26px;
}
.tc-dots button {
    width: 10px; height: 10px;
    border-radius: 50%;
    border: none;
    background: #cbd5e1;
    cursor: pointer;
    transition: background 0.25s ease, width 0.25s ease;
}
.tc-dots button.active { background: #f4b41a; width: 26px; border-radius: 6px; }

/* -------- PARTNERS MARQUEE -------- */
.partners-section {
    padding: 46px 5%;
    background: #fff;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}
.partners-title {
    text-align: center;
    color: #94a3b8;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 26px;
}
.partners-marquee {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.partners-track {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: partnersScroll 26s linear infinite;
}
.partners-track span {
    font-size: 1.4rem;
    font-weight: 800;
    color: #0b2240;
    opacity: 0.35;
    white-space: nowrap;
    transition: opacity 0.25s ease, color 0.25s ease;
    font-family: Georgia, 'Times New Roman', serif;
    font-style: italic;
}
.partners-track span:hover { opacity: 1; color: #f4b41a; }
.partners-marquee:hover .partners-track { animation-play-state: paused; }

@keyframes partnersScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* -------- GALLERY -------- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 150px;
    gap: 14px;
}
.gallery-item {
    position: relative;
    border-radius: 12px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    transition: background-size 0.5s ease;
}
.gallery-item.tall { grid-row: span 2; }
.gallery-item.wide { grid-column: span 2; }
.gallery-item span {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(11, 34, 64, 0.55);
    color: #fff;
    font-size: 1.6rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.gallery-item:hover span { opacity: 1; }
.gallery-item:hover { background-size: 115%; }

/* -------- FAQ -------- */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
    transition: box-shadow 0.25s ease, border-color 0.25s ease;
}
.faq-item.open { box-shadow: 0 12px 30px rgba(11, 34, 64, 0.1); border-color: #f4d58a; }
.faq-q {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    padding: 18px 22px;
    font-size: 1rem;
    font-weight: 600;
    color: #0b2240;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-q i { color: #f4b41a; transition: transform 0.3s ease; flex-shrink: 0; }
.faq-item.open .faq-q i { transform: rotate(135deg); }
.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}
.faq-a p {
    padding: 0 22px 18px;
    color: #64748b;
    line-height: 1.6;
    font-size: 0.92rem;
}

/* -------- SCROLL REVEAL -------- */
.reveal {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.7s ease, transform 0.7s ease;
    will-change: opacity, transform;
}
.reveal.in-view {
    opacity: 1;
    transform: none;
}
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
}

/* -------- PRELOADER -------- */
#preloader {
    position: fixed;
    inset: 0;
    background: #0b2240;
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.hide { opacity: 0; visibility: hidden; }
.preloader-inner { text-align: center; }
.preloader-plane {
    font-size: 3rem;
    color: #f4b41a;
    animation: planeFly 1.4s ease-in-out infinite;
}
.preloader-brand {
    display: block;
    margin-top: 14px;
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.05em;
    opacity: 0.85;
}
@keyframes planeFly {
    0%   { transform: translate(-8px, 6px) rotate(-6deg); }
    50%  { transform: translate(8px, -6px) rotate(4deg); }
    100% { transform: translate(-8px, 6px) rotate(-6deg); }
}

/* -------- BACK TO TOP -------- */
.back-to-top {
    position: fixed;
    left: 22px;
    bottom: 24px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: #0b2240;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(16px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.25s ease;
    z-index: 1400;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.28);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: #f4b41a; color: #0b2240; }

/* -------- RESPONSIVE (home enhancements) -------- */
@media (max-width: 992px) {
    .steps-grid { grid-template-columns: repeat(2, 1fr); }
    .offers-grid { grid-template-columns: 1fr 1fr; }
    .features-grid.wide { grid-template-columns: repeat(2, 1fr); }
    .tc-card { flex: 0 0 calc(50% - 20px); }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
    .steps-grid, .offers-grid, .features-grid.wide { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item.wide { grid-column: span 2; }
}

/* Testimonials: ONE full-width card up to 768px (arrows hidden, dots used).
   Placed after the 992px rule so it wins at <=768px. */
@media (max-width: 768px) {
    .testimonial-carousel { gap: 0; }
    .tc-arrow { display: none; }
    .tc-card {
        flex: 0 0 100%;
        margin: 0;
        padding: 26px 22px;
    }
}

/* =====================================================================
   ABOUT & CONTACT PAGES
   ===================================================================== */

/* Shared eyebrow label */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #f4b41a;
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* -------- PAGE HERO BANNER -------- */
.page-hero {
    position: relative;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    background-size: cover;
    background-position: center;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11, 34, 64, 0.72), rgba(11, 34, 64, 0.82));
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
}
.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.92rem;
    opacity: 0.9;
}
.breadcrumb a { color: #f4b41a; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb i { font-size: 0.7rem; opacity: 0.7; }

/* -------- ABOUT: OUR STORY -------- */
.about-intro {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 50px;
    align-items: center;
}
.about-media { position: relative; }
.about-media img {
    width: 100%;
    height: 440px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 24px 50px rgba(11, 34, 64, 0.22);
}
.exp-badge {
    position: absolute;
    right: -18px;
    bottom: -18px;
    background: linear-gradient(135deg, #f4b41a, #ffcf5c);
    color: #0b2240;
    border-radius: 16px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 34px rgba(244, 180, 26, 0.4);
}
.exp-num { font-size: 2.6rem; font-weight: 800; line-height: 1; }
.exp-num span { font-size: 1.4rem; }
.exp-text { font-size: 0.85rem; font-weight: 700; line-height: 1.2; }

.about-text h2 { font-size: 2rem; color: #0b2240; margin-bottom: 16px; line-height: 1.25; }
.about-text p { color: #64748b; line-height: 1.7; margin-bottom: 14px; }
.about-points {
    list-style: none;
    margin: 20px 0 26px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.about-points li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 0.92rem;
    font-weight: 500;
}
.about-points i { color: #22a565; }

/* -------- MISSION / VISION / VALUES -------- */
.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}
.mvv-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 38px 28px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.mvv-card:hover { transform: translateY(-8px); box-shadow: 0 22px 46px rgba(11, 34, 64, 0.16); }
.mvv-card.featured {
    background: linear-gradient(160deg, #0b2240, #14335c);
    color: #fff;
    border-color: transparent;
}
.mvv-card.featured p { color: rgba(255, 255, 255, 0.85); }
.mvv-icon {
    width: 74px;
    height: 74px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.15);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    transition: transform 0.3s ease;
}
.mvv-card:hover .mvv-icon { transform: rotate(-8deg) scale(1.08); }
.mvv-card h3 { color: #0b2240; margin-bottom: 12px; font-size: 1.3rem; }
.mvv-card.featured h3 { color: #fff; }
.mvv-card.featured .mvv-icon { background: rgba(244, 180, 26, 0.22); }
.mvv-card p { color: #64748b; line-height: 1.65; font-size: 0.94rem; }

/* -------- CONTACT: INFO CARDS -------- */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.contact-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 32px 22px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
}
.contact-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(11, 34, 64, 0.15); }
.cc-icon {
    width: 62px;
    height: 62px;
    margin: 0 auto 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: transform 0.3s ease;
}
.contact-card:hover .cc-icon { transform: scale(1.1); }
.contact-card h4 { color: #0b2240; margin-bottom: 8px; font-size: 1.05rem; }
.contact-card p { color: #64748b; font-size: 0.92rem; word-break: break-word; }

/* -------- CONTACT: FORM + MAP -------- */
.contact-layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 40px;
    align-items: start;
}
.contact-form-wrap {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 38px;
    box-shadow: 0 12px 34px rgba(11, 34, 64, 0.08);
}
.contact-form-wrap h2 { color: #0b2240; font-size: 1.7rem; margin-bottom: 8px; }
.cf-sub { color: #64748b; margin-bottom: 24px; font-size: 0.95rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.cf-field { margin-bottom: 18px; display: flex; flex-direction: column; }
.cf-field label { font-size: 0.85rem; font-weight: 600; color: #0b2240; margin-bottom: 7px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #334155;
    background: #f8fafc;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    font-family: inherit;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #f4b41a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.15);
}
.contact-form textarea { resize: vertical; }
.contact-form .cf-error { border-color: #e11d48; background: #fff5f7; }
.cf-submit { border: none; margin-top: 4px; }
.cf-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    background: rgba(34, 165, 101, 0.12);
    color: #178a53;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 600;
}
.cf-success.show { display: flex; }

.contact-side { display: flex; flex-direction: column; gap: 24px; }
.map-wrap {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(11, 34, 64, 0.12);
    border: 1px solid #eef2f7;
    height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; display: block; }
.contact-social-card {
    background: linear-gradient(160deg, #0b2240, #14335c);
    color: #fff;
    border-radius: 18px;
    padding: 28px;
    text-align: center;
}
.contact-social-card h4 { font-size: 1.15rem; margin-bottom: 8px; }
.contact-social-card p { color: rgba(255, 255, 255, 0.8); font-size: 0.9rem; margin-bottom: 18px; }
.contact-social-card .social-icons { justify-content: center; }

/* -------- Page responsiveness -------- */
@media (max-width: 900px) {
    .about-intro { grid-template-columns: 1fr; }
    .about-media img { height: 340px; }
    .mvv-grid { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .page-hero h1 { font-size: 2.2rem; }
}
@media (max-width: 560px) {
    .about-points { grid-template-columns: 1fr; }
    .cf-row { grid-template-columns: 1fr; }
    .contact-cards { grid-template-columns: 1fr; }
    .contact-form-wrap { padding: 26px 20px; }
}

/* Hero slider responsive */
@media (max-width: 900px) {
    .hero-caption h1 { font-size: 2.4rem; }
    .hero-caption p { font-size: 1rem; }
}
@media (max-width: 600px) {
    .hero-slider { height: 88vh; }
    .hero-caption h1 { font-size: 1.9rem; }
    .hero-arrow { display: none; }
    .hero-dots { bottom: 120px; }
    .hero-btn { padding: 11px 20px; font-size: 0.9rem; }
}

/* =====================================================================
   DESTINATIONS (listing + detail) — MOBILE-FIRST
   ===================================================================== */

/* ---------- Toolbar: filter + search ---------- */
.dest-toolbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 8px;
}
.dfilter {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.dfilter::-webkit-scrollbar { display: none; }
.dfilter-chip {
    flex: 0 0 auto;
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #334155;
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.dfilter-chip:hover { border-color: #f4b41a; color: #0b2240; }
.dfilter-chip.active { background: #0b2240; border-color: #0b2240; color: #fff; }

.dsearch {
    position: relative;
    display: flex;
    align-items: center;
}
.dsearch i {
    position: absolute;
    left: 16px;
    color: #94a3b8;
    font-size: 0.9rem;
}
.dsearch input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border: 1.5px solid #e2e8f0;
    border-radius: 30px;
    font-size: 0.95rem;
    background: #f8fafc;
    color: #334155;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.dsearch input:focus {
    outline: none;
    border-color: #f4b41a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.15);
}

.dest-count { color: #94a3b8; font-size: 0.88rem; margin: 4px 0 22px; }
.dest-empty { text-align: center; color: #64748b; padding: 40px 0; font-size: 1rem; }

/* ---------- Cards grid (1 col mobile) ---------- */
.dest-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.dcard {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(11, 34, 64, 0.06);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.dcard.in { opacity: 1; transform: none; }
.dcard:hover { box-shadow: 0 20px 40px rgba(11, 34, 64, 0.15); }

.dcard-media {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    display: block;
    transition: transform 0.5s ease;
}
.dcard:hover .dcard-media { transform: scale(1.04); }
.dcard-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #e11d48;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    letter-spacing: 0.03em;
}
.dcard-cat {
    position: absolute;
    bottom: 12px;
    right: 12px;
    background: rgba(11, 34, 64, 0.82);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 5px 11px;
    border-radius: 20px;
}

.dcard-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.dcard-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.dcard-top h3 { color: #0b2240; font-size: 1.25rem; }
.dcard-rating { color: #f4b41a; font-weight: 700; font-size: 0.88rem; white-space: nowrap; }
.dcard-region { color: #64748b; font-size: 0.85rem; margin: 4px 0 8px; display: flex; align-items: center; gap: 6px; }
.dcard-region i { color: #f4b41a; }
.dcard-tag { color: #475569; font-size: 0.9rem; margin-bottom: 14px; flex: 1; }
.dcard-foot {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 12px;
    border-top: 1px solid #eef2f7;
    padding-top: 14px;
}
.dcard-days { color: #64748b; font-size: 0.8rem; display: inline-flex; align-items: center; gap: 5px; }
.dcard-price { color: #0b2240; font-weight: 800; font-size: 1.2rem; margin-top: 4px; }
.dcard-price small { font-size: 0.72rem; color: #94a3b8; font-weight: 500; }
.dcard-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f4b41a;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.85rem;
    padding: 9px 16px;
    border-radius: 8px;
    transition: gap 0.2s ease, background 0.2s ease;
}
.dcard-btn:hover { background: #e5a70c; gap: 10px; }

/* ---------- DETAIL: hero ---------- */
.dd-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 130px 5% 40px;
}
.dd-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,34,64,0.35), rgba(11,34,64,0.85));
}
.dd-hero-inner { position: relative; z-index: 1; max-width: 1400px; margin: 0 auto; }
.dd-badge {
    display: inline-block;
    background: #f4b41a;
    color: #0b2240;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.dd-hero h1 { font-size: 2.2rem; margin-bottom: 8px; text-shadow: 0 4px 18px rgba(0,0,0,0.4); }
.dd-tagline { font-size: 1.05rem; opacity: 0.92; margin-bottom: 16px; }
.dd-meta { display: flex; flex-wrap: wrap; gap: 10px 22px; font-size: 0.9rem; }
.dd-meta span { display: inline-flex; align-items: center; gap: 7px; }
.dd-meta i { color: #f4b41a; }
.dd-hero .breadcrumb { margin-bottom: 16px; }

/* ---------- DETAIL: layout ---------- */
.dd-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}
.dd-main { min-width: 0; }

/* Gallery */
.dd-main-img {
    height: 240px;
    border-radius: 16px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 14px 34px rgba(11,34,64,0.15);
}
.dd-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.dd-thumb {
    flex: 1;
    height: 66px;
    border-radius: 10px;
    border: 2px solid transparent;
    background-size: cover;
    background-position: center;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.dd-thumb:hover { opacity: 1; transform: translateY(-2px); }
.dd-thumb.active { opacity: 1; border-color: #f4b41a; }

.dd-block { margin-top: 30px; }
.dd-block h2 {
    color: #0b2240;
    font-size: 1.4rem;
    margin-bottom: 14px;
    padding-bottom: 10px;
    position: relative;
}
.dd-block h2::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 46px; height: 3px;
    background: #f4b41a;
    border-radius: 3px;
}
.dd-block p { color: #64748b; line-height: 1.75; }
.dd-besttime {
    margin-top: 14px;
    background: #fff7e6;
    border: 1px dashed #f4b41a;
    color: #7a5a10 !important;
    padding: 10px 14px;
    border-radius: 10px;
    font-size: 0.9rem;
}

.dd-highlights { list-style: none; display: grid; grid-template-columns: 1fr; gap: 10px; }
.dd-highlights li { display: flex; align-items: center; gap: 10px; color: #334155; font-size: 0.94rem; }
.dd-highlights i { color: #22a565; }

/* Itinerary timeline */
.dd-timeline { position: relative; }
.dd-day { display: flex; gap: 14px; padding-bottom: 18px; position: relative; }
.dd-day::before {
    content: '';
    position: absolute;
    left: 33px; top: 30px; bottom: -4px;
    width: 2px;
    background: #e6ebf2;
}
.dd-day:last-child::before { display: none; }
.dd-day-marker {
    flex: 0 0 auto;
    width: 68px;
    height: 30px;
    background: #0b2240;
    color: #fff;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}
.dd-day-body h4 { color: #0b2240; font-size: 1rem; margin-bottom: 4px; }
.dd-day-body p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

.dd-inclusions { list-style: none; display: grid; grid-template-columns: 1fr; gap: 10px; }
.dd-inclusions li { display: flex; align-items: center; gap: 10px; color: #334155; font-size: 0.94rem; }
.dd-inclusions i {
    color: #f4b41a;
    background: rgba(244,180,26,0.14);
    width: 24px; height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    flex-shrink: 0;
}

/* Booking sidebar */
.dd-book {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 24px;
    box-shadow: 0 14px 34px rgba(11,34,64,0.1);
}
.dd-from { color: #94a3b8; font-size: 0.8rem; }
.dd-price { color: #0b2240; font-size: 1.9rem; font-weight: 800; }
.dd-price small { font-size: 0.8rem; color: #94a3b8; font-weight: 500; }
.dd-old { text-decoration: line-through; color: #94a3b8; font-size: 0.95rem; margin-right: 6px; }
.dd-save { background: rgba(34,165,101,0.14); color: #178a53; font-weight: 700; font-size: 0.78rem; padding: 3px 10px; border-radius: 20px; }
.dd-quick { list-style: none; margin: 18px 0; border-top: 1px solid #eef2f7; }
.dd-quick li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 11px 0;
    border-bottom: 1px solid #eef2f7;
    color: #64748b;
    font-size: 0.9rem;
}
.dd-quick li i { color: #f4b41a; width: 18px; text-align: center; }
.dd-quick li b { margin-left: auto; color: #0b2240; }
.dd-book-btn, .dd-wa-btn { width: 100%; justify-content: center; margin-bottom: 10px; border: none; }
/* override .hero-btn.ghost so the WhatsApp button is always visible (green) */
.dd-book .dd-wa-btn,
.hero-btn.ghost.dd-wa-btn { background: #25d366; color: #fff; border: none; }
.dd-book .dd-wa-btn:hover,
.hero-btn.ghost.dd-wa-btn:hover { background: #1eb958; }
.dd-call {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.95rem;
    padding-top: 6px;
}
.dd-call i { color: #f4b41a; }

/* ---------- Breakpoints (progressive enhancement) ---------- */
@media (min-width: 600px) {
    .dest-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
    .dsearch { max-width: 300px; width: 100%; }
    .dest-grid { grid-template-columns: repeat(2, 1fr); }
    .dd-highlights { grid-template-columns: 1fr 1fr; }
    .dd-inclusions { grid-template-columns: 1fr 1fr; }
    .dd-main-img { height: 340px; }
    .dd-hero h1 { font-size: 2.6rem; }
}

@media (min-width: 900px) {
    .dest-grid { grid-template-columns: repeat(3, 1fr); }
    .dd-layout { grid-template-columns: 1fr 340px; align-items: start; }
    .dd-side { position: sticky; top: 106px; }
    .dd-hero { padding-top: 150px; padding-bottom: 54px; }
    .dd-hero h1 { font-size: 3rem; }
    .dd-main-img { height: 420px; }
}

/* =====================================================================
   PACKAGES (listing + detail) — MOBILE-FIRST (reuses .dcard / .dd-*)
   ===================================================================== */

/* Listing sub-bar: count + sort */
.pkg-subbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin: 6px 0 20px;
    flex-wrap: wrap;
}
.pkg-subbar .dest-count { margin: 0; }
.pkg-sort {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: #64748b;
}
.pkg-sort select {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #0b2240;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
    font-family: inherit;
}
.pkg-sort select:focus { outline: none; border-color: #f4b41a; }

/* Package card extras */
.pcard-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 8px; }
.pcard-tag {
    background: rgba(244, 180, 26, 0.14);
    color: #b8860b;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.pcard-desc {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.55;
    margin: 2px 0 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pcard-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
    margin: 10px 0 14px;
    padding: 12px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
}
.pcard-facts span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    color: #64748b;
}
.pcard-facts i { color: #f4b41a; }
.dcard-price s { font-size: 0.78rem; color: #b0b8c4; font-weight: 500; margin-left: 2px; }

/* Detail: hero theme tags */
.pd-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 14px; }
.pd-tag {
    background: rgba(255, 255, 255, 0.16);
    border: 1px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(4px);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
}

/* Detail: quick info bar */
.pd-infobar-wrap { padding-top: 26px; padding-bottom: 0; }
.pd-infobar {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    box-shadow: 0 12px 30px rgba(11, 34, 64, 0.08);
    padding: 8px 6px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.pd-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
}
.pd-info i {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border-radius: 10px;
    background: rgba(244, 180, 26, 0.14);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.pd-info span { display: block; font-size: 0.72rem; color: #94a3b8; }
.pd-info b { color: #0b2240; font-size: 0.9rem; }

/* Detail: inclusions / exclusions */
.pd-inex { display: grid; grid-template-columns: 1fr; gap: 14px 30px; }
.pd-inex-list { list-style: none; }
.pd-inex-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.92rem;
    color: #334155;
}
.pd-inex-list li i {
    width: 22px; height: 22px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    flex-shrink: 0;
}
.pd-inex-list li.ok i { background: rgba(34, 165, 101, 0.15); color: #178a53; }
.pd-inex-list li.no i { background: rgba(225, 29, 72, 0.12); color: #e11d48; }
.pd-inex-list li.no { color: #94a3b8; }

@media (min-width: 600px) {
    .pd-infobar { grid-template-columns: repeat(3, 1fr); }
    .pd-inex { grid-template-columns: 1fr 1fr; }
}
@media (min-width: 900px) {
    .pd-infobar { grid-template-columns: repeat(5, 1fr); }
}

/* =====================================================================
   MOBILE HAMBURGER + SLIDE-IN DRAWER
   ===================================================================== */

/* Hamburger button (hidden on desktop, shown <=1100px via media query) */
.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0 10px;
    background: transparent;
    border: none;
    cursor: pointer;
}
.nav-toggle span {
    display: block;
    height: 2.5px;
    width: 100%;
    background: #fff;
    border-radius: 3px;
    transition: transform 0.3s ease, opacity 0.2s ease;
}
.nav-toggle.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Overlay */
.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(11, 34, 64, 0.55);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    z-index: 1800;
}
.drawer-overlay.show { opacity: 1; visibility: visible; }

/* Drawer panel */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 86%;
    max-width: 340px;
    height: 100%;
    background: #fff;
    z-index: 1900;
    transform: translateX(105%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -12px 0 40px rgba(11, 34, 64, 0.25);
    overflow-y: auto;
    overscroll-behavior: contain;
}
.mobile-drawer.open { transform: translateX(0); }

.drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 18px;
    background: #0b2240;
    position: sticky;
    top: 0;
    z-index: 2;
}
.drawer-logo { height: 76px; width: auto; }
.drawer-close {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.2s ease;
}
.drawer-close:hover { background: #f4b41a; color: #0b2240; }

.drawer-nav { padding: 8px 0; flex: 1; }
.drawer-nav .drawer-link,
.drawer-acc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 14px 20px;
    font-size: 0.98rem;
    font-weight: 600;
    color: #0b2240;
    background: none;
    border: none;
    border-bottom: 1px solid #f0f3f7;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}
.drawer-nav .drawer-link:hover,
.drawer-acc-head:hover { background: #f8fafc; color: #f4b41a; }
.drawer-acc.open .drawer-acc-head { color: #f4b41a; }

/* animated +/- indicator (used on accordions and region groups) */
.acc-pm { position: relative; width: 18px; height: 18px; flex-shrink: 0; }
.acc-pm.sm { width: 15px; height: 15px; }
.acc-pm::before, .acc-pm::after {
    content: '';
    position: absolute;
    background: #f4b41a;
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.25s ease;
}
.acc-pm::before { top: 50%; left: 1px; right: 1px; height: 2.5px; transform: translateY(-50%); }
.acc-pm::after { left: 50%; top: 1px; bottom: 1px; width: 2.5px; transform: translateX(-50%); }
.drawer-acc.open > .drawer-acc-head .acc-pm::after,
.drawer-group.open > .drawer-group-head .acc-pm::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.drawer-acc.open > .drawer-acc-head .acc-pm::before,
.drawer-group.open > .drawer-group-head .acc-pm::before { transform: translateY(-50%) rotate(180deg); }

/* grid-based collapse — animates height even when nested */
.drawer-acc-panel {
    display: grid;
    grid-template-rows: 0fr;
    background: #f8fafc;
    transition: grid-template-rows 0.35s ease;
}
.drawer-acc.open > .drawer-acc-panel { grid-template-rows: 1fr; }
.drawer-acc-inner { overflow: hidden; }
/* target ALL links (direct + grouped mega links) so nothing renders inline */
.drawer-acc-panel a {
    display: block;
    padding: 11px 20px 11px 34px;
    font-size: 0.9rem;
    color: #475569;
    border-bottom: 1px solid #eef2f7;
}
.drawer-acc-panel a:hover { color: #f4b41a; background: #eff3f8; }

.drawer-group:not(:last-child) { border-bottom: 1px solid #e8edf3; }
.drawer-group-head {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    padding: 11px 20px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #64748b;
    transition: color 0.2s ease;
}
.drawer-group-head:hover,
.drawer-group.open > .drawer-group-head { color: #0b2240; }

.drawer-group-panel {
    display: grid;
    grid-template-rows: 0fr;
    background: #fff;
    transition: grid-template-rows 0.3s ease;
}
.drawer-group.open > .drawer-group-panel { grid-template-rows: 1fr; }
.drawer-group-inner { overflow: hidden; }
.drawer-group a { padding-left: 40px; }

.drawer-foot {
    padding: 20px;
    border-top: 1px solid #eef2f7;
    text-align: center;
}
.drawer-book {
    display: block;
    text-align: center;
    padding: 13px;
    border-radius: 8px;
    margin-bottom: 16px;
}
.drawer-contact {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 16px;
}
.drawer-contact i { color: #f4b41a; }
.drawer-social { justify-content: center; }
.drawer-social a { background: #0b2240; }
.drawer-social a:hover { background: #f4b41a; color: #0b2240; }

/* lock background scroll while drawer is open */
body.drawer-open { overflow: hidden; }

/* =====================================================================
   BLOG — magazine listing + rich article (MOBILE-FIRST, unique design)
   ===================================================================== */

/* Shared category pill */
.blog-cat {
    display: inline-block;
    background: #f4b41a;
    color: #0b2240;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
}
.blog-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.8rem;
    margin: 10px 0;
}
.blog-meta i { color: #f4b41a; }
.blog-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: #cbd5e1; }

/* Toolbar */
.blog-toolbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}

/* ---------- Featured hero post ---------- */
.blog-featured {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 18px 44px rgba(11, 34, 64, 0.1);
    margin-bottom: 40px;
    display: grid;
    grid-template-columns: 1fr;
}
.blog-featured-media {
    display: block;
    min-height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 16px;
}
.blog-featured-body { padding: 26px 24px 30px; }
.blog-flag {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #e11d48;
    font-weight: 800;
    font-size: 0.76rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}
.blog-featured-body h2 {
    font-size: 1.7rem;
    line-height: 1.25;
    color: #0b2240;
    margin-bottom: 6px;
}
.blog-featured-body h2 a:hover { color: #f4b41a; }
.blog-featured-body > p { color: #64748b; line-height: 1.7; margin-bottom: 18px; }

/* ---------- Author row ---------- */
.blog-author {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 16px;
}
.blog-author img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.blog-author b { display: block; color: #0b2240; font-size: 0.88rem; }
.blog-author span { color: #94a3b8; font-size: 0.78rem; }
.blog-readmore {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.85rem;
    transition: gap 0.2s ease, color 0.2s ease;
}
.blog-readmore:hover { color: #f4b41a; gap: 10px; }

/* ---------- Blog grid ---------- */
.blog-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
}
.blog-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.blog-card.in { opacity: 1; transform: none; }
.blog-card:hover { box-shadow: 0 22px 46px rgba(11, 34, 64, 0.16); }
.blog-card-media {
    display: block;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 14px;
    transition: transform 0.5s ease;
    overflow: hidden;
}
.blog-card:hover .blog-card-media { transform: scale(1.04); }
.blog-card-body { padding: 8px 20px 20px; display: flex; flex-direction: column; flex: 1; }
.blog-card-body h3 { font-size: 1.18rem; line-height: 1.3; color: #0b2240; margin-bottom: 8px; }
.blog-card-body h3 a { background: linear-gradient(#f4b41a, #f4b41a) no-repeat left bottom / 0 2px; transition: background-size 0.3s ease, color 0.2s ease; padding-bottom: 2px; }
.blog-card-body h3 a:hover { background-size: 100% 2px; }
.blog-excerpt { color: #64748b; font-size: 0.9rem; line-height: 1.6; margin-bottom: 8px; flex: 1; }
.blog-card-body .blog-author { border-top: 1px solid #eef2f7; padding-top: 14px; }

/* ---------- ARTICLE hero ---------- */
.article-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 130px 5% 44px;
}
.article-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(11,34,64,0.30), rgba(11,34,64,0.88));
}
.article-hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; text-align: center; }
.article-hero .breadcrumb { justify-content: center; margin-bottom: 16px; }
.article-hero h1 {
    font-size: 1.9rem;
    line-height: 1.25;
    margin: 14px 0 20px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.article-hero-meta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-align: left;
}
.article-hero-meta img { width: 46px; height: 46px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(255,255,255,0.6); }
.article-hero-meta b { display: block; font-size: 0.95rem; }
.article-hero-meta span { font-size: 0.82rem; opacity: 0.85; }

/* ---------- ARTICLE body (readable column) ---------- */
.article-wrap { max-width: 760px; margin: 0 auto; padding: 44px 5% 20px; }
.article-layout { max-width: 1180px; }
.article-body { min-width: 0; }

/* Sidebar */
.article-sidebar { margin-top: 40px; display: flex; flex-direction: column; gap: 22px; }
.side-widget {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.05);
}
.side-title {
    color: #0b2240;
    font-size: 1.05rem;
    margin-bottom: 16px;
    padding-bottom: 10px;
    position: relative;
}
.side-title::after {
    content: '';
    position: absolute;
    left: 0; bottom: 0;
    width: 34px; height: 3px;
    background: #f4b41a;
    border-radius: 3px;
}

/* CTA widget */
.side-cta { background: linear-gradient(160deg, #0b2240, #14335c); color: #fff; text-align: center; }
.side-cta-ic {
    width: 54px; height: 54px;
    margin: 0 auto 12px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.18);
    color: #f4b41a;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem;
}
.side-cta h4 { font-size: 1.2rem; margin-bottom: 8px; }
.side-cta p { color: rgba(255, 255, 255, 0.82); font-size: 0.9rem; line-height: 1.55; margin-bottom: 16px; }

/* Popular posts */
.side-posts { list-style: none; }
.side-posts li + li { margin-top: 14px; padding-top: 14px; border-top: 1px solid #f0f3f7; }
.side-posts a { display: flex; gap: 12px; align-items: center; }
.sp-thumb {
    width: 66px; height: 58px;
    flex-shrink: 0;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}
.sp-text b { display: block; color: #0b2240; font-size: 0.9rem; line-height: 1.35; transition: color 0.2s ease; }
.side-posts a:hover .sp-text b { color: #f4b41a; }
.sp-date { color: #94a3b8; font-size: 0.76rem; display: inline-flex; align-items: center; gap: 5px; margin-top: 5px; }
.sp-date i { color: #f4b41a; }

/* Categories */
.side-cats { list-style: none; }
.side-cats li + li { margin-top: 4px; }
.side-cats a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: 9px;
    color: #334155;
    font-weight: 500;
    font-size: 0.92rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.side-cats a:hover { background: rgba(244, 180, 26, 0.12); color: #0b2240; }
.side-count {
    background: #f1f5f9;
    color: #64748b;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 20px;
}
.side-cats a:hover .side-count { background: #f4b41a; color: #0b2240; }

/* Tags cloud */
.side-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.side-tag {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
    transition: background 0.2s ease, color 0.2s ease;
}
.side-tag:hover { background: #0b2240; color: #fff; }
.article-body { font-size: 1.05rem; line-height: 1.85; color: #374151; }
.article-body p { margin-bottom: 22px; }
.article-body > p:first-of-type::first-letter {
    float: left;
    font-size: 3.6rem;
    line-height: 0.8;
    font-weight: 800;
    color: #f4b41a;
    margin: 6px 12px 0 0;
    font-family: Georgia, 'Times New Roman', serif;
}
.article-body h2 { font-size: 1.55rem; color: #0b2240; margin: 34px 0 14px; }
.article-body h3 { font-size: 1.2rem; color: #0b2240; margin: 26px 0 10px; }
.article-body blockquote {
    margin: 30px 0;
    padding: 6px 6px 6px 26px;
    border-left: 4px solid #f4b41a;
    background: linear-gradient(90deg, rgba(244,180,26,0.08), transparent);
    border-radius: 0 12px 12px 0;
    position: relative;
}
.article-body blockquote p {
    font-size: 1.3rem;
    font-style: italic;
    color: #0b2240;
    line-height: 1.5;
    margin-bottom: 6px;
}
.article-body blockquote cite { color: #94a3b8; font-size: 0.9rem; font-style: normal; font-weight: 600; }
.article-figure { margin: 28px 0; }
.article-figure img { width: 100%; border-radius: 14px; box-shadow: 0 14px 34px rgba(11,34,64,0.14); }
.article-figure figcaption { text-align: center; color: #94a3b8; font-size: 0.85rem; margin-top: 10px; font-style: italic; }
.article-list { margin: 0 0 22px; padding-left: 4px; list-style: none; }
.article-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 12px;
    line-height: 1.7;
}
.article-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0; top: 2px;
    color: #22a565;
    font-size: 0.85rem;
}

/* Tags + share */
.article-tags { display: flex; flex-wrap: wrap; gap: 10px; margin: 34px 0 22px; padding-top: 24px; border-top: 1px solid #eef2f7; }
.article-tag { background: #f1f5f9; color: #475569; font-size: 0.82rem; font-weight: 600; padding: 6px 14px; border-radius: 20px; transition: background 0.2s ease, color 0.2s ease; }
.article-tag:hover { background: #0b2240; color: #fff; }
.article-share { display: flex; align-items: center; gap: 12px; margin-bottom: 34px; }
.article-share span { color: #64748b; font-weight: 600; font-size: 0.9rem; }
.article-share a {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: #f1f5f9;
    color: #0b2240;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.article-share a:hover { background: #f4b41a; color: #0b2240; transform: translateY(-3px); }

/* Author card */
.article-author-card {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 24px;
}
.article-author-card img { width: 66px; height: 66px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.aac-role { display: block; color: #f4b41a; font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; }
.article-author-card b { display: block; color: #0b2240; font-size: 1.15rem; margin: 2px 0 8px; }
.article-author-card p { color: #64748b; font-size: 0.92rem; line-height: 1.6; }

/* ---------- Breakpoints ---------- */
@media (min-width: 640px) {
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-toolbar { flex-direction: row; align-items: center; justify-content: space-between; }
    .blog-toolbar .dsearch { max-width: 280px; }
    .article-hero h1 { font-size: 2.5rem; }
    .article-hero { padding-top: 150px; }
}
@media (min-width: 900px) {
    .blog-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-featured { grid-template-columns: 1.1fr 1fr; }
    .blog-featured-media { min-height: 100%; }
    .blog-featured-body { padding: 40px 38px; align-self: center; }
    .blog-featured-body h2 { font-size: 2.1rem; }
    .article-hero h1 { font-size: 2.9rem; }
    .article-body { font-size: 1.1rem; }
}

@media (min-width: 992px) {
    .article-layout {
        display: grid;
        grid-template-columns: minmax(0, 1fr) 330px;
        gap: 46px;
        align-items: start;
    }
    .article-sidebar { margin-top: 0; position: sticky; top: 106px; }
}

/* Homepage blog grid responsiveness */
@media (max-width: 900px) { .hblog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .hblog-grid { grid-template-columns: 1fr; } }

/* =====================================================================
   PHOTO GALLERY (masonry) + LIGHTBOX — MOBILE-FIRST
   ===================================================================== */
.gallery-head { margin-bottom: 24px; }
.gallery-head .dfilter { justify-content: flex-start; }

/* Masonry via CSS columns */
.masonry {
    column-count: 1;
    column-gap: 14px;
}
.g-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 14px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(11, 34, 64, 0.08);
    opacity: 1;
    transform: none;
}
.g-item.g-hidden { opacity: 0; transform: translateY(22px); }
.g-item.g-in { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }
.g-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.g-item:hover img { transform: scale(1.06); }

.g-cap {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 6px;
    padding: 16px;
    background: linear-gradient(transparent 45%, rgba(11, 34, 64, 0.82));
    opacity: 0;
    transition: opacity 0.3s ease;
}
.g-item:hover .g-cap { opacity: 1; }
.g-zoom {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    color: #0b2240;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.6);
    transition: transform 0.3s ease;
}
.g-item:hover .g-zoom { transform: scale(1); }
.g-title { color: #fff; font-weight: 700; font-size: 1rem; }
.g-badge {
    background: #f4b41a;
    color: #0b2240;
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 3px 10px;
    border-radius: 20px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(6, 18, 36, 0.94);
    backdrop-filter: blur(4px);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.lightbox.open { opacity: 1; visibility: visible; }
.lb-stage {
    max-width: 92vw;
    max-height: 82vh;
    text-align: center;
}
.lb-img {
    max-width: 92vw;
    max-height: 78vh;
    border-radius: 10px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
    opacity: 0;
    transform: scale(0.96);
    transition: opacity 0.35s ease, transform 0.35s ease;
}
.lb-img.loaded { opacity: 1; transform: scale(1); }
.lb-cap { color: #e2e8f0; font-size: 0.92rem; margin-top: 14px; }
.lb-count {
    position: absolute;
    top: 20px;
    left: 24px;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.lb-close {
    position: absolute;
    top: 16px;
    right: 20px;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.12);
    color: #fff;
    font-size: 1.3rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.lb-close:hover { background: #f4b41a; color: #0b2240; transform: rotate(90deg); }
.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease;
}
.lb-nav:hover { background: #f4b41a; border-color: #f4b41a; color: #0b2240; }
.lb-prev { left: 16px; }
.lb-next { right: 16px; }

@media (min-width: 560px) { .masonry { column-count: 2; } }
@media (min-width: 860px) { .masonry { column-count: 3; } }
@media (min-width: 1200px) { .masonry { column-count: 4; } }
@media (max-width: 559px) {
    .lb-nav { width: 42px; height: 42px; font-size: 1rem; }
    .lb-prev { left: 8px; }
    .lb-next { right: 8px; }
}

/* =====================================================================
   VIDEO GALLERY — grid + YouTube lightbox (MOBILE-FIRST)
   ===================================================================== */
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.v-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(11, 34, 64, 0.07);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.v-card.v-hidden { opacity: 0; transform: translateY(22px); }
.v-card.v-in { opacity: 1; transform: none; transition: opacity 0.5s ease, transform 0.5s ease; }
.v-card:hover { transform: translateY(-5px); box-shadow: 0 20px 42px rgba(11, 34, 64, 0.16); }

.v-thumb {
    position: relative;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
}
.v-thumb::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(11, 34, 64, 0.35));
}
.v-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.95);
    color: #0b2240;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    z-index: 1;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, background 0.3s ease;
}
.v-play i { margin-left: 3px; }
.v-card:hover .v-play { transform: translate(-50%, -50%) scale(1.12); }
.v-play::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: vPulse 2s infinite;
}
@keyframes vPulse {
    0% { transform: scale(1); opacity: 0.8; }
    100% { transform: scale(1.5); opacity: 0; }
}
.v-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 1;
    background: rgba(11, 34, 64, 0.85);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 3px 9px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.v-duration i { color: #f4b41a; }

.v-body { padding: 16px 18px 18px; }
.v-cat {
    display: inline-block;
    color: #f4b41a;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 6px;
}
.v-body h3 { color: #0b2240; font-size: 1.1rem; line-height: 1.35; }

/* Video lightbox stage (reuses .lightbox / .lb-close / .lb-nav / .lb-count) */
.lb-video-stage { width: min(92vw, 960px); }
.lb-video {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
}
.lb-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-lightbox .lb-cap { color: #e2e8f0; text-align: center; font-size: 0.92rem; margin-top: 14px; }

@media (min-width: 640px) { .video-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 992px) { .video-grid { grid-template-columns: repeat(3, 1fr); } }

/* =====================================================================
   HIRE A GUIDE — listing cards + profile (MOBILE-FIRST)
   ===================================================================== */
.guides-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}

/* Guide card */
.guide-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.guide-card.in { opacity: 1; transform: none; }
.guide-card:hover { box-shadow: 0 22px 46px rgba(11, 34, 64, 0.15); }
.guide-card-top {
    position: relative;
    height: 96px;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
}
.guide-avatar {
    position: absolute;
    left: 24px;
    bottom: -34px;
    width: 84px;
    height: 84px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 4px solid #fff;
    box-shadow: 0 8px 20px rgba(11, 34, 64, 0.2);
    display: block;
}
.guide-verified {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(34, 165, 101, 0.16);
    color: #34d17e;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.guide-card-body { padding: 46px 22px 20px; }
.guide-card-body h3 { color: #0b2240; font-size: 1.2rem; }
.guide-card-body h3 a:hover { color: #f4b41a; }
.guide-role { color: #f4b41a; font-size: 0.85rem; font-weight: 600; margin: 2px 0 10px; }
.guide-rate { color: #f4b41a; font-size: 0.85rem; display: flex; align-items: center; gap: 6px; }
.guide-rate b { color: #0b2240; }
.guide-rate span { color: #94a3b8; }
.guide-meta { list-style: none; margin: 12px 0; }
.guide-meta li { color: #64748b; font-size: 0.86rem; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; }
.guide-meta i { color: #f4b41a; width: 14px; text-align: center; }
.guide-langs { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }
.guide-langs span {
    background: #f1f5f9;
    color: #475569;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.guide-langs .more { background: #0b2240; color: #fff; }
.guide-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.guide-tag {
    background: rgba(244, 180, 26, 0.14);
    color: #b8860b;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 20px;
}
.guide-card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eef2f7;
    padding-top: 14px;
}
.guide-price { color: #0b2240; font-weight: 800; font-size: 1.15rem; }
.guide-price small { font-size: 0.72rem; color: #94a3b8; font-weight: 500; }

/* Profile hero */
.guide-hero {
    background: linear-gradient(160deg, #0b2240, #14335c);
    color: #fff;
    padding-top: 96px;
}
.guide-hero-inner { padding-top: 26px; padding-bottom: 34px; }
.guide-hero .breadcrumb { margin-bottom: 22px; }
.guide-hero .breadcrumb span { color: rgba(255, 255, 255, 0.85); }
.guide-profile { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 18px; }
.guide-photo {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    border: 5px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
}
.guide-headinfo .guide-verified { position: static; display: inline-flex; margin-bottom: 10px; }
.guide-headinfo h1 { font-size: 1.9rem; margin-bottom: 4px; }
.guide-title { color: #f4b41a; font-weight: 600; margin-bottom: 12px; }
.guide-rate.light b { color: #fff; }
.guide-rate.light span { color: rgba(255, 255, 255, 0.7); }
.guide-rate.light { justify-content: center; margin-bottom: 14px; }
.guide-headmeta { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; font-size: 0.9rem; }
.guide-headmeta span { display: inline-flex; align-items: center; gap: 7px; opacity: 0.92; }
.guide-headmeta i { color: #f4b41a; }

/* Profile body extras */
.gd-langs { display: flex; flex-wrap: wrap; gap: 10px; }
.gd-lang {
    background: #f1f5f9;
    color: #0b2240;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 16px;
    border-radius: 30px;
}
.gd-regions { display: flex; flex-wrap: wrap; gap: 10px; }
.gd-region {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(244, 180, 26, 0.12);
    color: #0b2240;
    font-weight: 600;
    font-size: 0.88rem;
    padding: 8px 14px;
    border-radius: 10px;
}
.gd-region i { color: #f4b41a; }
.gd-certs { list-style: none; }
.gd-certs li { display: flex; align-items: center; gap: 10px; color: #334155; font-size: 0.94rem; margin-bottom: 10px; }
.gd-certs i { color: #f4b41a; }
.gd-reviews { display: grid; gap: 16px; }
.gd-review {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-left: 4px solid #f4b41a;
    border-radius: 12px;
    padding: 18px 20px;
}
.gd-review .stars { color: #f4b41a; font-size: 0.85rem; margin-bottom: 8px; }
.gd-review p { color: #334155; font-style: italic; line-height: 1.6; margin-bottom: 8px; }
.gd-review b { color: #0b2240; font-size: 0.9rem; }

@media (min-width: 620px) {
    .guides-grid { grid-template-columns: repeat(2, 1fr); }
    .guide-profile { flex-direction: row; text-align: left; align-items: center; gap: 30px; }
    .guide-rate.light, .guide-headmeta { justify-content: flex-start; }
    .guide-hero-inner { padding-bottom: 40px; }
    .guide-headinfo h1 { font-size: 2.3rem; }
}
@media (min-width: 992px) {
    .guides-grid { grid-template-columns: repeat(3, 1fr); }
    .gd-reviews { grid-template-columns: 1fr 1fr; }
}

/* =====================================================================
   FAQ PAGE — toolbar, grouped accordions, support CTA (MOBILE-FIRST)
   ===================================================================== */
.faq-shell { max-width: 900px; margin: 0 auto; }
.faq-shell .faq-list { max-width: none; margin: 0; }

.faq-toolbar {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 26px;
}
.faq-searchbox { width: 100%; }

.faq-group { margin-bottom: 26px; }
.faq-cat-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.05rem;
    color: #0b2240;
    margin-bottom: 14px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eef2f7;
}
.faq-cat-title i {
    color: #f4b41a;
    background: rgba(244, 180, 26, 0.14);
    width: 34px;
    height: 34px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

/* Support CTA */
.faq-cta {
    margin-top: 36px;
    background: linear-gradient(160deg, #0b2240, #14335c);
    color: #fff;
    border-radius: 18px;
    padding: 30px 26px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.faq-cta-ic {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: rgba(244, 180, 26, 0.18);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}
.faq-cta-text h3 { font-size: 1.35rem; margin-bottom: 6px; }
.faq-cta-text p { color: rgba(255, 255, 255, 0.82); font-size: 0.95rem; }
.faq-cta-btns { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.faq-ghost { color: #fff; border: 1.5px solid rgba(255, 255, 255, 0.55); }
.faq-ghost:hover { background: rgba(255, 255, 255, 0.12); }

@media (min-width: 720px) {
    .faq-toolbar { flex-direction: row-reverse; align-items: center; justify-content: space-between; }
    .faq-searchbox { max-width: 280px; }
    .faq-cta { flex-direction: row; text-align: left; justify-content: space-between; }
    .faq-cta-ic { flex-shrink: 0; }
    .faq-cta-text { flex: 1; }
    .faq-cta-btns { flex-shrink: 0; }
}

/* =====================================================================
   SERVICES PAGE — service cards (MOBILE-FIRST)
   ===================================================================== */
.services-page-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.svc-card {
    position: relative;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 30px 26px;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    overflow: hidden;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.svc-card.in { opacity: 1; transform: translateY(0); }
.svc-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #f4b41a, #ffd873);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s ease;
}
.svc-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 46px rgba(11, 34, 64, 0.15);
    border-color: #f4d58a;
}
.svc-card:hover::before { transform: scaleX(1); }

.svc-badge {
    position: absolute;
    top: 18px;
    right: 18px;
    background: rgba(244, 180, 26, 0.16);
    color: #b8860b;
    font-size: 0.68rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 4px 10px;
    border-radius: 20px;
}
.svc-icon {
    width: 68px;
    height: 68px;
    border-radius: 16px;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    margin-bottom: 18px;
    transition: transform 0.35s ease, background 0.35s ease, color 0.35s ease;
}
.svc-card:hover .svc-icon {
    transform: rotate(-6deg) scale(1.06);
    background: linear-gradient(135deg, #f4b41a, #ffcf5c);
    color: #0b2240;
}
.svc-title { color: #0b2240; font-size: 1.25rem; margin-bottom: 10px; }
.svc-desc { color: #64748b; font-size: 0.92rem; line-height: 1.6; margin-bottom: 16px; }
.svc-features { list-style: none; margin-bottom: 18px; }
.svc-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #334155;
    font-size: 0.88rem;
    margin-bottom: 8px;
}
.svc-features li i {
    color: #22a565;
    background: rgba(34, 165, 101, 0.12);
    width: 20px; height: 20px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.62rem;
    flex-shrink: 0;
}
.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #0b2240;
    font-weight: 700;
    font-size: 0.9rem;
    transition: gap 0.2s ease, color 0.2s ease;
}
.svc-link i { color: #f4b41a; transition: transform 0.2s ease; }
.svc-link:hover { color: #f4b41a; gap: 11px; }

@media (min-width: 640px) {
    .services-page-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 980px) {
    .services-page-grid { grid-template-columns: repeat(3, 1fr); }
}

/* =====================================================================
   LEGAL PAGES — Privacy / Terms / Refund (MOBILE-FIRST)
   ===================================================================== */
.legal-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

/* Table of contents */
.legal-updated {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(244, 180, 26, 0.14);
    color: #b8860b;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 14px;
    border-radius: 20px;
    margin-bottom: 18px;
}
.legal-toc-title {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #94a3b8;
    margin-bottom: 10px;
}
.legal-toc { display: flex; flex-direction: column; }
.legal-toc-link {
    padding: 9px 14px;
    border-left: 2px solid #eef2f7;
    color: #64748b;
    font-size: 0.9rem;
    transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.legal-toc-link:hover { color: #0b2240; background: #f8fafc; }
.legal-toc-link.active {
    color: #0b2240;
    font-weight: 700;
    border-left-color: #f4b41a;
    background: rgba(244, 180, 26, 0.08);
}

/* Article body */
.legal-body { min-width: 0; color: #475569; line-height: 1.8; }
.legal-intro {
    font-size: 1.08rem;
    color: #334155;
    background: #f8fafc;
    border-left: 4px solid #f4b41a;
    padding: 18px 20px;
    border-radius: 0 12px 12px 0;
    margin-bottom: 30px;
}
.legal-body h2 {
    color: #0b2240;
    font-size: 1.35rem;
    margin: 34px 0 12px;
    scroll-margin-top: 100px;
}
.legal-body h2:first-of-type { margin-top: 0; }
.legal-body p { margin-bottom: 16px; }
.legal-body a { color: #c88a00; font-weight: 600; text-decoration: underline; }
.legal-body ul { margin: 0 0 18px; padding-left: 4px; list-style: none; }
.legal-body ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 10px;
}
.legal-body ul li::before {
    content: '\f105';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 6px; top: 1px;
    color: #f4b41a;
}
.legal-body ul li b { color: #0b2240; }

/* Cancellation table */
.legal-table-wrap { overflow-x: auto; margin: 0 0 16px; border-radius: 12px; border: 1px solid #eef2f7; }
.legal-table { width: 100%; border-collapse: collapse; min-width: 380px; }
.legal-table th {
    background: #0b2240;
    color: #fff;
    text-align: left;
    font-size: 0.9rem;
    padding: 13px 16px;
}
.legal-table td {
    padding: 13px 16px;
    border-top: 1px solid #eef2f7;
    font-size: 0.92rem;
    color: #334155;
}
.legal-table tbody tr:nth-child(even) { background: #f8fafc; }
.legal-table td:last-child { font-weight: 700; color: #0b2240; }

.legal-note-inline {
    display: flex;
    gap: 10px;
    background: #fff7e6;
    border: 1px dashed #f4b41a;
    color: #7a5a10;
    padding: 12px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    line-height: 1.6;
}
.legal-note-inline i { color: #f4b41a; margin-top: 3px; }

/* Contact block */
.legal-contact {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 12px;
}
.legal-contact a, .legal-contact span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #eef2f7;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 0.9rem;
    color: #0b2240;
    font-weight: 600;
    text-decoration: none;
}
.legal-contact a i, .legal-contact span i { color: #f4b41a; }
.legal-contact a:hover { border-color: #f4b41a; }

@media (min-width: 900px) {
    .legal-wrap { grid-template-columns: 260px 1fr; gap: 50px; align-items: start; }
    .legal-toc-wrap { position: sticky; top: 106px; }
}

/* =====================================================================
   ABOUT PAGE EXTRAS — Journey timeline + Team (MOBILE-FIRST)
   ===================================================================== */
.timeline { position: relative; max-width: 860px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 19px; top: 6px; bottom: 6px;
    width: 2px;
    background: #e6ebf2;
}
.tl-item { position: relative; padding-left: 58px; margin-bottom: 24px; }
.tl-dot {
    position: absolute;
    left: 0; top: 2px;
    width: 40px; height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    z-index: 1;
    box-shadow: 0 6px 16px rgba(11, 34, 64, 0.2);
}
.tl-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 14px;
    padding: 18px 20px;
    box-shadow: 0 8px 22px rgba(11, 34, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.tl-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(11, 34, 64, 0.14); }
.tl-year {
    display: inline-block;
    background: rgba(244, 180, 26, 0.16);
    color: #b8860b;
    font-weight: 800;
    font-size: 0.78rem;
    padding: 3px 11px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.tl-card h4 { color: #0b2240; margin-bottom: 6px; font-size: 1.1rem; }
.tl-card p { color: #64748b; font-size: 0.9rem; line-height: 1.6; }

@media (min-width: 760px) {
    .timeline::before { left: 50%; transform: translateX(-1px); }
    .tl-item { width: 50%; padding: 0 44px; margin-bottom: 34px; }
    .tl-item:nth-child(odd) { margin-right: 50%; text-align: right; }
    .tl-item:nth-child(even) { margin-left: 50%; text-align: left; }
    .tl-dot { top: 4px; }
    .tl-item:nth-child(odd) .tl-dot { left: auto; right: -20px; }
    .tl-item:nth-child(even) .tl-dot { left: -20px; right: auto; }
    .tl-year { margin-bottom: 6px; }
}

/* Team */
.team-grid { display: grid; grid-template-columns: 1fr; gap: 24px; }
.team-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 20px 42px rgba(11, 34, 64, 0.15); }
.team-photo {
    position: relative;
    height: 300px;
    background-size: cover;
    background-position: center top;
}
.team-social {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: linear-gradient(transparent, rgba(11, 34, 64, 0.85));
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.35s ease;
}
.team-card:hover .team-social { transform: translateY(0); opacity: 1; }
.team-social a {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.16);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
}
.team-social a:hover { background: #f4b41a; color: #0b2240; }
.team-info { padding: 16px; text-align: center; }
.team-info h4 { color: #0b2240; font-size: 1.1rem; }
.team-info span { color: #f4b41a; font-size: 0.85rem; font-weight: 600; }

@media (min-width: 560px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

/* =====================================================================
   TEAMS PAGE — leadership showcase + animated member grid (MOBILE-FIRST)
   ===================================================================== */
.team-stats { margin: 0; }
.team-filter { justify-content: center; margin-bottom: 26px; }

/* ---------- Leadership cards ---------- */
.team-leaders {
    display: grid;
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 980px;
    margin: 0 auto;
}
.tm-lead {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 34px rgba(11, 34, 64, 0.08);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.6s ease, transform 0.6s ease, box-shadow 0.3s ease;
}
.tm-lead.in { opacity: 1; transform: none; }
.tm-lead:hover { box-shadow: 0 26px 54px rgba(11, 34, 64, 0.18); }
.tm-lead::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f4b41a, #ffd873, #f4b41a);
    z-index: 2;
}
.tm-lead-photo {
    height: 300px;
    background-size: cover;
    background-position: center top;
    transition: background-size 0.6s ease;
}
.tm-lead:hover .tm-lead-photo { background-size: 112%; }
.tm-lead-body { padding: 26px 24px; }
.tm-lead-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(244, 180, 26, 0.16);
    color: #b8860b;
    font-size: 0.74rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 5px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}
.tm-lead-body h3 { color: #0b2240; font-size: 1.5rem; }
.tm-lead-role { color: #f4b41a; font-weight: 600; font-size: 0.95rem; }
.tm-lead-body p { color: #64748b; line-height: 1.7; margin: 14px 0 18px; }

/* Social buttons */
.tm-social { display: flex; gap: 9px; }
.tm-social a {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.tm-social.dark a { background: #0b2240; color: #fff; }
.tm-social.dark a:hover { background: #f4b41a; color: #0b2240; transform: translateY(-3px); }

/* ---------- Member grid ---------- */
.team2-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
}
.tm-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    opacity: 0;
    transform: translateY(26px);
    transition: opacity 0.55s ease, transform 0.55s ease, box-shadow 0.3s ease;
}
.tm-card.in { opacity: 1; transform: none; }
.tm-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11, 34, 64, 0.16); }

.tm-media {
    position: relative;
    aspect-ratio: 3 / 4;
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s ease;
}
.tm-card:hover .tm-media { background-size: 112%; }
.tm-tags {
    position: absolute;
    top: 12px; left: 12px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    z-index: 2;
}
.tm-tags span {
    background: rgba(255, 255, 255, 0.92);
    color: #0b2240;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
}
.tm-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 18px;
    background: linear-gradient(transparent 35%, rgba(11, 34, 64, 0.92));
    opacity: 0;
    transition: opacity 0.4s ease;
}
.tm-card:hover .tm-overlay { opacity: 1; }
.tm-bio {
    color: #fff;
    font-size: 0.85rem;
    line-height: 1.55;
    margin-bottom: 14px;
    transform: translateY(10px);
    transition: transform 0.4s ease;
}
.tm-card:hover .tm-bio { transform: none; }
.tm-overlay .tm-social a {
    width: 36px; height: 36px;
    background: #fff;
    color: #0b2240;
    opacity: 0;
    transform: translateY(14px);
}
.tm-card:hover .tm-overlay .tm-social a { opacity: 1; transform: none; }
.tm-overlay .tm-social a:hover { background: #f4b41a; }
.tm-card:hover .tm-social a:nth-child(1) { transition-delay: 0.06s; }
.tm-card:hover .tm-social a:nth-child(2) { transition-delay: 0.12s; }
.tm-card:hover .tm-social a:nth-child(3) { transition-delay: 0.18s; }
.tm-card:hover .tm-social a:nth-child(4) { transition-delay: 0.24s; }

.tm-info { padding: 16px; text-align: center; }
.tm-info h4 { color: #0b2240; font-size: 1.12rem; }
.tm-info span { color: #f4b41a; font-size: 0.85rem; font-weight: 600; }

@media (min-width: 560px) { .team2-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) {
    .team-leaders { grid-template-columns: 1fr 1fr; }
    .tm-lead { flex-direction: row; }
    .tm-lead-photo { width: 44%; height: auto; min-height: 320px; flex-shrink: 0; }
    .tm-lead-body { align-self: center; }
}
@media (min-width: 900px) { .team2-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1200px) { .team2-grid { grid-template-columns: repeat(4, 1fr); } }

/* =====================================================================
   CABS / FLEET — vehicle cards (MOBILE-FIRST)
   ===================================================================== */
.cabs-filter { justify-content: center; margin-bottom: 26px; }
.cabs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.cab-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(11, 34, 64, 0.06);
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease, box-shadow 0.3s ease;
}
.cab-card.in { opacity: 1; transform: none; }
.cab-card:hover { transform: translateY(-6px); box-shadow: 0 22px 46px rgba(11, 34, 64, 0.15); }

.cab-media {
    position: relative;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: background-size 0.6s ease;
}
.cab-card:hover .cab-media { background-size: 110%; }
.cab-badge {
    position: absolute;
    top: 14px; left: 14px;
    background: #e11d48;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 11px;
    border-radius: 20px;
}
.cab-type {
    position: absolute;
    bottom: 14px; right: 14px;
    background: rgba(11, 34, 64, 0.85);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.cab-type i { color: #f4b41a; }

.cab-body { padding: 18px 20px 20px; }
.cab-name { color: #0b2240; font-size: 1.2rem; margin-bottom: 14px; }
.cab-specs {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 14px 0;
    border-top: 1px solid #eef2f7;
    border-bottom: 1px solid #eef2f7;
    margin-bottom: 14px;
}
.cab-specs li {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #475569;
    font-size: 0.85rem;
    font-weight: 500;
}
.cab-specs i {
    color: #f4b41a;
    width: 18px;
    text-align: center;
}
.cab-features { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 16px; }
.cab-features span {
    background: rgba(244, 180, 26, 0.12);
    color: #b8860b;
    font-size: 0.72rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 20px;
}
.cab-price {
    display: flex;
    align-items: flex-end;
    gap: 18px;
    margin-bottom: 16px;
}
.cab-rate { color: #0b2240; font-weight: 800; font-size: 1.5rem; }
.cab-price small { color: #94a3b8; font-size: 0.75rem; font-weight: 500; }
.cab-day { padding-left: 18px; border-left: 1px solid #eef2f7; }
.cab-day span { color: #0b2240; font-weight: 700; font-size: 1.1rem; }

.cab-actions { display: flex; gap: 10px; }
.cab-book {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    font-weight: 700;
    font-size: 0.92rem;
    padding: 11px;
    border-radius: 10px;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cab-book:hover { background: #1eb958; transform: translateY(-2px); }
.cab-call {
    width: 46px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #0b2240;
    color: #fff;
    border-radius: 10px;
    font-size: 1rem;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cab-call:hover { background: #f4b41a; color: #0b2240; transform: translateY(-2px); }

@media (min-width: 620px) { .cabs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .cabs-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Cab booking popup ---------- */
.cab-modal {
    position: fixed;
    inset: 0;
    z-index: 2200;
    background: rgba(11, 34, 64, 0.6);
    backdrop-filter: blur(3px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.cab-modal.open { opacity: 1; visibility: visible; }
.cab-modal-box {
    background: #fff;
    width: 100%;
    max-width: 520px;
    max-height: 92vh;
    overflow-y: auto;
    border-radius: 18px;
    padding: 26px 24px;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4);
    transform: translateY(20px) scale(0.98);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.cab-modal.open .cab-modal-box { transform: none; }
.cab-modal-close {
    position: absolute;
    top: 14px; right: 14px;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: none;
    background: #f1f5f9;
    color: #0b2240;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cab-modal-close:hover { background: #f4b41a; transform: rotate(90deg); }
.cab-modal-head { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.cab-modal-ic {
    width: 50px; height: 50px;
    flex-shrink: 0;
    border-radius: 12px;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}
.cab-modal-head h3 { color: #0b2240; font-size: 1.3rem; }
.cab-modal-head p { color: #64748b; font-size: 0.88rem; }

.cbf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.cbf-field { margin-bottom: 14px; display: flex; flex-direction: column; }
.cbf-field label { font-size: 0.82rem; font-weight: 600; color: #0b2240; margin-bottom: 6px; }
.cab-modal-box input {
    width: 100%;
    padding: 11px 13px;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    font-size: 0.93rem;
    color: #334155;
    background: #f8fafc;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.cab-modal-box input:focus {
    outline: none;
    border-color: #f4b41a;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(244, 180, 26, 0.15);
}
.cab-modal-box input[readonly] { background: #eef2f7; color: #0b2240; font-weight: 600; cursor: default; }
.cab-modal-box input.cbf-error { border-color: #e11d48; background: #fff5f7; }
.cab-modal-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    border: none;
    font-weight: 700;
    font-size: 0.98rem;
    padding: 13px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 4px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.cab-modal-submit:hover { background: #1eb958; transform: translateY(-2px); }
.cbf-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    padding: 11px 14px;
    background: rgba(34, 165, 101, 0.12);
    color: #178a53;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
}
.cbf-success.show { display: flex; }

@media (max-width: 480px) {
    .cbf-row { grid-template-columns: 1fr; gap: 0; }
}

/* =====================================================================
   PACKAGES — LEFT FILTER SIDEBAR (MOBILE-FIRST)
   ===================================================================== */
.pkg-filter-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #0b2240;
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 11px 18px;
    font-weight: 700;
    font-size: 0.92rem;
    cursor: pointer;
    margin-bottom: 18px;
    font-family: inherit;
}
.pkg-filter-toggle i { color: #f4b41a; }

.pkg-sidebar {
    display: none;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 0 0 20px;
    box-shadow: 0 14px 34px rgba(11, 34, 64, 0.08);
    margin-bottom: 24px;
    overflow: hidden;
}
.pkg-sidebar.open { display: block; }

/* gradient header band */
.pkg-sidebar-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
}
.pkg-sidebar-head h3 {
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 10px;
}
.pkg-sidebar-head h3 i {
    color: #f4b41a;
    font-size: 0.85rem;
    background: rgba(244, 180, 26, 0.18);
    width: 30px;
    height: 30px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.pkg-clear {
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.78rem;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease, color 0.2s ease;
}
.pkg-clear:hover { background: #f4b41a; color: #0b2240; }

.fgroup { margin-bottom: 22px; padding: 0 20px; }
.fgroup:last-child { margin-bottom: 0; }
.fgroup-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.74rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0b2240;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f0f3f7;
}
.fgroup-title i { color: #f4b41a; font-size: 0.8rem; }
.fgroup .dsearch input { padding-top: 11px; padding-bottom: 11px; }
.fopts { display: flex; flex-direction: column; gap: 4px; }

/* custom selectable option rows */
.fopt {
    display: flex;
    align-items: center;
    gap: 11px;
    padding: 9px 12px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    color: #475569;
    border: 1.5px solid transparent;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.fopt:hover { background: #f8fafc; color: #0b2240; }
/* custom radio dot */
.fopt input {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 2px solid #cbd5e1;
    border-radius: 50%;
    cursor: pointer;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease, background 0.2s ease;
}
.fopt input:checked {
    border-color: #f4b41a;
    background: #f4b41a;
}
.fopt input:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    transform: translate(-50%, -50%);
}
.fopt input:focus-visible { outline: 2px solid rgba(244, 180, 26, 0.5); outline-offset: 2px; }
.fopt input:checked ~ span { color: #0b2240; font-weight: 600; }
/* highlight the whole selected row */
.fopt:has(input:checked) {
    background: rgba(244, 180, 26, 0.1);
    border-color: #f4d58a;
}

/* Results column: fewer columns since sidebar takes space */
.pkg-main { min-width: 0; }
.pkg-main .dest-grid { grid-template-columns: 1fr; }

@media (min-width: 560px) {
    .pkg-main .dest-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
    .pkg-layout {
        display: grid;
        grid-template-columns: 272px 1fr;
        gap: 34px;
        align-items: start;
    }
    .pkg-filter-toggle { display: none; }
    .pkg-sidebar {
        display: block;
        position: sticky;
        top: 106px;
        margin-bottom: 0;
    }
}
@media (min-width: 1240px) {
    .pkg-main .dest-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ---- Grid / List view switcher ---- */
.pkg-subbar-tools { display: flex; align-items: center; gap: 12px; }
.view-toggle {
    display: flex;
    border: 1.5px solid #e2e8f0;
    border-radius: 9px;
    overflow: hidden;
}
.view-btn {
    width: 40px;
    height: 40px;
    background: #fff;
    border: none;
    color: #94a3b8;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    transition: background 0.2s ease, color 0.2s ease;
}
.view-btn + .view-btn { border-left: 1.5px solid #e2e8f0; }
.view-btn:hover:not(.active) { color: #0b2240; }
.view-btn.active { background: #0b2240; color: #fff; }

/* ---- List view layout ---- */
.pkg-main .dest-grid.list-view { grid-template-columns: 1fr; }
.dest-grid.list-view .dcard { flex-direction: row; }
.dest-grid.list-view .dcard-media {
    flex: 0 0 240px;
    width: 240px;
    height: auto;
    min-height: 200px;
}
.dest-grid.list-view .dcard-body { flex: 1; }
.dest-grid.list-view .pcard-facts { border-bottom: none; }
.dest-grid.list-view .pcard-desc { -webkit-line-clamp: 3; line-clamp: 3; }

@media (max-width: 560px) {
    .dest-grid.list-view .dcard { flex-direction: column; }
    .dest-grid.list-view .dcard-media { flex-basis: auto; width: 100%; height: 200px; }
}

/* =====================================================================
   PAY ONLINE PAGE (MOBILE-FIRST)
   ===================================================================== */
.pay-wrap { max-width: 720px; margin: 0 auto; }

/* two-column card layout */
.pay-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1020px;
    margin: 0 auto;
    align-items: start;
}
.pay-card {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 18px;
    padding: 26px 24px;
    box-shadow: 0 12px 32px rgba(11, 34, 64, 0.08);
}
.pay-card-head { display: flex; align-items: center; gap: 12px; margin-bottom: 22px; }
.pay-card-head h2 { color: #0b2240; font-size: 1.25rem; }
.req { color: #e11d48; }
.dz-title { font-weight: 600; color: #0b2240; }
/* form sits inside a card already — drop its own card chrome */
.pay-card .pay-form { background: none; border: none; border-radius: 0; padding: 0; box-shadow: none; }
@media (min-width: 900px) {
    .pay-layout { grid-template-columns: 0.92fr 1.08fr; }
}

.pay-step { display: flex; align-items: center; gap: 12px; margin: 6px 0 18px; }
.pay-step:not(:first-child) { margin-top: 40px; }
.pay-step-no {
    width: 34px; height: 34px;
    flex-shrink: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex; align-items: center; justify-content: center;
    font-weight: 800;
    font-size: 0.95rem;
}
.pay-step h2 { color: #0b2240; font-size: 1.3rem; }

/* method selector */
.pay-methods { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 22px; }
.pay-method {
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px 10px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-family: inherit;
    font-weight: 700;
    font-size: 0.9rem;
    color: #475569;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pay-method i { font-size: 1.6rem; color: #94a3b8; transition: color 0.2s ease; }
.pay-method:hover { border-color: #f4b41a; transform: translateY(-3px); }
.pay-method.active { border-color: #f4b41a; background: rgba(244, 180, 26, 0.08); color: #0b2240; }
.pay-method.active i { color: #f4b41a; }

/* panels */
.pay-panel { display: none; }
.pay-panel.active { display: block; }
.pay-panels {
    background: #f8fafc;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 26px;
    margin-bottom: 10px;
}

/* QR */
.qr-box { text-align: center; }
.qr-img { width: 220px; max-width: 80%; border-radius: 12px; border: 6px solid #fff; box-shadow: 0 12px 30px rgba(11,34,64,0.12); }
.qr-fallback {
    width: 220px; height: 220px;
    max-width: 80%;
    margin: 0 auto;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #94a3b8;
    text-align: center;
    background: #fff;
}
.qr-fallback i { font-size: 3rem; color: #cbd5e1; }
.qr-fallback b { color: #64748b; }
.qr-hint { margin-top: 16px; color: #64748b; font-size: 0.9rem; }
.qr-hint i { color: #f4b41a; }

/* supported UPI app badges */
.upi-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 18px 0 4px;
}
.upi-logo {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 10px;
    padding: 8px 12px;
    font-size: 0.8rem;
    font-weight: 800;
    box-shadow: 0 4px 12px rgba(11, 34, 64, 0.06);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.upi-logo:hover { transform: translateY(-3px); box-shadow: 0 8px 18px rgba(11, 34, 64, 0.14); }
.upi-logo i { font-size: 1.35rem; }
.upi-logo.gpay { color: #4285f4; }
.upi-logo.phonepe { color: #5f259f; }
.upi-logo.phonepe i { font-size: 0.85rem; }
.upi-logo.paytm { color: #00baf2; }
.upi-logo.bhim { color: #e8751a; }
.upi-logo.amazon { color: #ff9900; }

/* how-to-pay steps */
.pay-steps-box {
    margin-top: 22px;
    text-align: left;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 16px 18px;
}
.pay-steps-title {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #0b2240;
    font-size: 0.95rem;
    margin-bottom: 12px;
}
.pay-steps-title i { color: #f4b41a; }
.pay-steps { list-style: none; }
.pay-steps li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 7px 0;
    color: #475569;
    font-size: 0.88rem;
    line-height: 1.5;
}
.ps-num {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0b2240, #1c3d68);
    color: #f4b41a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 800;
}
.pay-steps b { color: #0b2240; }

/* UPI */
.upi-box { text-align: center; }
.upi-label { display: block; color: #94a3b8; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.06em; font-weight: 700; margin-bottom: 12px; }
.upi-id-row {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 12px;
    padding: 12px 16px;
    margin-bottom: 18px;
}
.upi-id { font-size: 1.1rem; font-weight: 700; color: #0b2240; letter-spacing: 0.02em; }
.copy-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #0b2240;
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 14px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s ease;
}
.copy-btn:hover { background: #f4b41a; color: #0b2240; }
.copy-btn.copied { background: #22a565; color: #fff; }
.upi-apps { margin-top: 14px; color: #64748b; font-size: 0.85rem; }
.upi-apps i { color: #f4b41a; margin: 0 2px; }

/* Cash */
.cash-box { text-align: center; }
.cash-ic { font-size: 2.6rem; color: #22a565; margin-bottom: 10px; }
.cash-box h4 { color: #0b2240; font-size: 1.2rem; margin-bottom: 8px; }
.cash-box p { color: #64748b; line-height: 1.6; max-width: 460px; margin: 0 auto 8px; }
.cash-addr { color: #0b2240 !important; font-weight: 600; }
.cash-addr i { color: #f4b41a; }

/* form */
.pay-form {
    background: #fff;
    border: 1px solid #eef2f7;
    border-radius: 16px;
    padding: 26px 24px;
    box-shadow: 0 8px 24px rgba(11,34,64,0.06);
}
.pay-form label { font-size: 0.85rem; font-weight: 600; color: #0b2240; margin-bottom: 6px; display: block; }
.pay-form input[type="text"],
.pay-form input[type="tel"],
.pay-form input[type="number"] {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.95rem;
    color: #334155;
    background: #f8fafc;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.pay-form input:focus { outline: none; border-color: #f4b41a; background: #fff; box-shadow: 0 0 0 4px rgba(244,180,26,0.15); }
.pay-form input.cbf-error { border-color: #e11d48; background: #fff5f7; }

/* dropzone */
.pay-dropzone {
    position: relative;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    background: #f8fafc;
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
    overflow: hidden;
}
.pay-dropzone:hover { border-color: #f4b41a; background: #fffdf5; }
.pay-dropzone.cbf-error { border-color: #e11d48; background: #fff5f7; }
.pay-dz-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 26px 16px;
    color: #64748b;
    text-align: center;
}
.pay-dz-inner i { font-size: 1.8rem; color: #f4b41a; }
.pay-dz-inner small { color: #94a3b8; font-size: 0.78rem; }
.pay-dropzone.has-file .pay-dz-inner { display: none; }
.pay-preview { position: relative; }
.pay-preview img { width: 100%; max-height: 280px; object-fit: contain; background: #0b2240; display: block; }
.pay-remove {
    position: absolute;
    top: 10px; right: 10px;
    width: 34px; height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(11,34,64,0.85);
    color: #fff;
    cursor: pointer;
    font-size: 0.95rem;
}
.pay-remove:hover { background: #e11d48; }
.pay-filename {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: rgba(11,34,64,0.85);
    color: #fff;
    font-size: 0.78rem;
    padding: 8px 12px;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.pay-submit {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f4b41a;
    color: #0b2240;
    border: none;
    font-weight: 800;
    font-size: 1rem;
    padding: 14px;
    border-radius: 10px;
    cursor: pointer;
    font-family: inherit;
    margin-top: 18px;
    transition: background 0.2s ease, transform 0.2s ease;
}
.pay-submit:hover { background: #e5a70c; transform: translateY(-2px); }
.pay-secure { margin-top: 14px; text-align: center; color: #94a3b8; font-size: 0.82rem; }
.pay-secure i { color: #22a565; }

@media (max-width: 520px) {
    .cbf-row { grid-template-columns: 1fr; gap: 0; }
    .pay-methods { grid-template-columns: 1fr; }
    .pay-method { flex-direction: row; justify-content: center; }
}

/* =====================================================================
   HOME — "Our Tour Packages" tabs
   ===================================================================== */
.pkg-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 28px;
}
.pkg-tab {
    border: 1.5px solid #e2e8f0;
    background: #fff;
    color: #334155;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 9px 24px;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    font-family: inherit;
}
.pkg-tab:hover { border-color: #f4b41a; color: #0b2240; }
.pkg-tab.active {
    background: #0b2240;
    border-color: #0b2240;
    color: #fff;
    box-shadow: 0 8px 18px rgba(11, 34, 64, 0.18);
}

/* =====================================================================
   GLOBAL RESPONSIVE / HORIZONTAL-OVERFLOW FIXES
   ===================================================================== */
/* overflow-x: clip clips stray overflow WITHOUT breaking position:sticky */
html, body { max-width: 100%; overflow-x: clip; }
img { max-width: 100%; }
.destinations-grid,
.services-grid,
.packages-grid,
.split-layout,
.features-grid { min-width: 0; }

/* Popular Destinations grid (was fixed 5 cols) */
@media (max-width: 1100px) { .destinations-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 820px)  { .destinations-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px)  { .destinations-grid { grid-template-columns: repeat(2, 1fr); } }

/* Our Services grid (was fixed 9 cols) */
@media (max-width: 1100px) { .services-grid { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 820px)  { .services-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 520px)  { .services-grid { grid-template-columns: repeat(3, 1fr); } }

/* Featured / split / stats */
@media (max-width: 820px) {
    .packages-grid { grid-template-columns: 1fr 1fr; }
    .split-layout { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
    .packages-grid { grid-template-columns: 1fr; }
}
.stats-bar { flex-wrap: wrap; gap: 24px 30px; }

/* Hero floating search bar — wrap instead of overflowing on small screens */
.search-item { min-width: 0; }
@media (max-width: 820px) {
    .search-bar { flex-wrap: wrap; gap: 10px 14px; padding: 16px; }
    .search-item { flex: 1 1 42%; border-right: none; padding: 8px 6px; }
    .search-btn { flex: 1 1 100%; justify-content: center; }
}

