/* ============================================================
   Khushbu Tour & Travels – style.css  (v2 – all fixes)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --color-white: #fff;
    --color-btn: #0CB2DB;
    --color-btn1: #1C2D31;
    --text-color: #909DA1;
    --primary: #0CB2DB;
    --title-color: #fff;
    --color-black1: #1E1E1E;
    --bg-dark: #111820;
    --bg-card: #162028;
    --bg-deep: #0a1118;
    --border: rgba(12, 178, 219, .18);
    --glow: 0 0 30px rgba(12, 178, 219, .22);
    --tr: all .35s cubic-bezier(.4, 0, .2, 1);
    --r: 12px;
    --rl: 20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tr);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge-label {
    display: inline-block;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-header p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    margin: 14px auto 0;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    border: 2px solid var(--primary);
    transition: var(--tr);
    cursor: pointer;
}

.btn-primary-cta:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--glow);
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: var(--tr);
    cursor: pointer;
}

.btn-outline-cta:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(12, 178, 219, .15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--tr);
}

#mainNav.scrolled {
    background: rgba(17, 24, 32, .96);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #0880a0);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(12, 178, 219, .35);
}

.logo-text .name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.logo-text .tagline {
    display: block;
    font-size: .67rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .75) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 13px !important;
    position: relative;
    transition: var(--tr);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--primary) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-quick {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-quick a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    border: 1px solid var(--border);
    transition: var(--tr);
}

.nav-quick .wa {
    color: #25d366;
}

.nav-quick .wa:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.nav-quick .ph {
    color: var(--primary);
}

.nav-quick .ph:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO  — FIXED CAROUSEL
   ============================================================
   All slides sit absolutely on top of each other.
   Only .active is visible (opacity 1). JS toggles .active.
   ============================================================ */
#hero {
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Every slide stacks at the same spot */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    z-index: 1;
}

/* Only the active slide is shown */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(17, 24, 32, .96) 0%,
            rgba(17, 24, 32, .72) 55%,
            rgba(17, 24, 32, .35) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 22px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stat-item .num {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Roboto', sans-serif;
}

.stat-item .label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--tr);
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot-btn {
    width: 28px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: var(--tr);
}

.hero-dot-btn.active {
    width: 52px;
    background: var(--primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
    background: var(--primary);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .83rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marquee-item i {
    font-size: .55rem;
    opacity: .55;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ============================================================
   SERVICE CARDS  — redesigned compact & punchy
   ============================================================ */
.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--svc-color, var(--primary)), transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.svc-card:hover {
    border-color: var(--svc-color, var(--primary));
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(12, 178, 219, .15);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--svc-color, var(--primary)) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color, var(--primary)) 30%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--svc-color, var(--primary));
    margin-bottom: 16px;
    transition: var(--tr);
    flex-shrink: 0;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--svc-color, var(--primary));
    color: #fff;
    border-color: var(--svc-color, var(--primary));
}

.svc-body {
    flex: 1;
}

.svc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.svc-desc {
    font-size: .84rem;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 18px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(12, 178, 219, .08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--tr);
    align-self: flex-start;
    margin-top: auto;
}

.svc-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-image-wrap {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rl);
}

.about-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(12, 178, 219, .4);
}

.about-badge-float .big-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.about-badge-float .small-text {
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 26px 0;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feat-icon {
    width: 38px;
    height: 38px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
}

.feat-item h6 {
    font-size: .88rem;
    margin-bottom: 2px;
}

.feat-item span {
    font-size: .78rem;
    color: var(--text-color);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 30px 26px;
    text-align: center;
    transition: var(--tr);
    height: 100%;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.why-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, rgba(12, 178, 219, .18), rgba(12, 178, 219, .04));
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--tr);
}

.why-card:hover .why-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.why-card h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: .83rem;
    line-height: 1.65;
}

/* ============================================================
   FLEET SPLIDE
   ============================================================ */
.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: var(--tr);
    margin: 4px;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.fleet-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.fleet-card-body {
    padding: 18px 20px;
}

.fleet-card-body h5 {
    font-size: .98rem;
    margin-bottom: 10px;
}

.fleet-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.fleet-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .77rem;
    color: var(--text-color);
}

.fleet-meta span i {
    color: var(--primary);
}

.fleet-badge {
    background: rgba(12, 178, 219, .1);
    color: var(--primary);
    font-size: .71rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.splide__arrow {
    background: rgba(12, 178, 219, .14) !important;
    border: 1px solid var(--border) !important;
}

.splide__arrow:hover {
    background: var(--primary) !important;
}

.splide__arrow svg {
    fill: #fff !important;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, .2) !important;
}

.splide__pagination__page.is-active {
    background: var(--primary) !important;
}

/* ============================================================
   GALLERY  — CSS columns masonry (no broken nth-child hacks)
   ============================================================ */
.gallery-masonry {
    column-count: 4;
    column-gap: 12px;
}

.gal-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
    border: 1px solid var(--border);
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .55s ease;
}

.gal-item:hover img {
    transform: scale(1.06);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 178, 219, .0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr);
}

.gal-item:hover .gal-overlay {
    background: rgba(12, 24, 32, .55);
    opacity: 1;
}

.gal-zoom {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    transform: scale(0);
    transition: transform .3s ease;
}

.gal-item:hover .gal-zoom {
    transform: scale(1);
}

/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

#lightbox.open {
    opacity: 1;
    pointer-events: all;
}

#lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--r);
    box-shadow: 0 0 80px rgba(0, 0, 0, .8);
}

.lb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    opacity: .7;
}

.lb-close:hover {
    opacity: 1;
    color: var(--primary);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--tr);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(12, 178, 219, .1);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ci-body h6 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ci-body p,
.ci-body a {
    font-size: .84rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.ci-body a:hover {
    color: var(--primary);
}

.contact-quick-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 6px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    border: 2px solid #25d366;
    transition: var(--tr);
}

.btn-wa:hover {
    background: transparent;
    color: #25d366;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    border: 2px solid var(--primary);
    transition: var(--tr);
}

.btn-call:hover {
    background: transparent;
    color: var(--primary);
}

/* Form card */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 32px 32px 28px;
    height: 100%;
}

.cf-header {
    margin-bottom: 24px;
}

.cf-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cf-header p {
    font-size: .85rem;
    color: var(--text-color);
}

.cf-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cf-input {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    padding: 11px 15px;
    transition: var(--tr);
    outline: none;
    appearance: none;
}

.cf-input:focus {
    border-color: var(--primary);
    background: rgba(12, 178, 219, .05);
    box-shadow: 0 0 0 3px rgba(12, 178, 219, .12);
}

.cf-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.cf-select {
    cursor: pointer;
}

.cf-select option {
    background: var(--bg-card);
    color: #fff;
}

.cf-textarea {
    resize: vertical;
    min-height: 90px;
}

.cf-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
}

.cf-submit:hover {
    background: #1fb055;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

.cf-note {
    font-size: .75rem;
    color: var(--text-color);
    margin-top: 10px;
    text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--bg-deep);
    padding: 70px 0 0;
    border-top: 1px solid var(--border);
}

.footer-about {
    font-size: .87rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--text-color);
    transition: var(--tr);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links li+li {
    margin-top: 9px;
}

.footer-links a {
    font-size: .86rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--tr);
}

.footer-links a i {
    font-size: .6rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.fc-icon {
    width: 36px;
    height: 36px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .88rem;
    flex-shrink: 0;
}

.fc-info .label {
    font-size: .7rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fc-info .value {
    font-size: .86rem;
    color: #fff;
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0, 0, 0, .3);
    border-top: 1px solid var(--border);
    margin-top: 54px;
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .32);
}

.footer-bottom span {
    color: var(--primary);
}

/* ============================================================
   FIXED UTILITY BUTTONS
   ============================================================ */
#scrollTop {
    position: fixed;
    bottom: 26px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 11px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: var(--tr);
    box-shadow: 0 4px 20px rgba(12, 178, 219, .4);
    cursor: pointer;
}

#scrollTop.show {
    opacity: 1;
    pointer-events: all;
}

#scrollTop:hover {
    transform: translateY(-4px);
}

#wa-float {
    position: fixed;
    bottom: 26px;
    left: 22px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    z-index: 800;
    box-shadow: 0 4px 22px rgba(37, 211, 102, .45);
    transition: var(--tr);
    cursor: pointer;
}

#wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1199px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .about-image-wrap img {
        height: 380px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .hero-title {
        font-size: 2rem;
    }

    .contact-quick-btns {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* ============================================================
   SERVICE CARDS v2  – image-background cards
   ============================================================ */
.svc2-card {
    position: relative;
    height: 280px;
    border-radius: var(--rl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--tr);
    border: 1px solid var(--border);
}

.svc2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    border-color: var(--primary);
}

/* Background image fills the card */
.svc2-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .65s ease;
}

.svc2-card:hover .svc2-img {
    transform: scale(1.08);
}

/* Gradient overlay – dark at bottom, slight at top */
.svc2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 17, 24, .25) 0%,
            rgba(10, 17, 24, .55) 45%,
            rgba(10, 17, 24, .97) 100%);
    transition: var(--tr);
}

.svc2-card:hover .svc2-overlay {
    background: linear-gradient(to bottom,
            rgba(12, 178, 219, .08) 0%,
            rgba(10, 17, 24, .65) 45%,
            rgba(10, 17, 24, .98) 100%);
}

/* Icon badge – top right */
.svc2-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(12, 178, 219, .85);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--tr);
    box-shadow: 0 4px 14px rgba(12, 178, 219, .4);
}

.svc2-card:hover .svc2-badge {
    background: var(--primary);
    transform: scale(1.08);
}

/* Bottom content block */
.svc2-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc2-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .9;
}

.svc2-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.svc2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 8px;
    border: 1.5px solid var(--primary);
    transition: var(--tr);
}

.svc2-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.hiw-section {
    background: #0d1820;
}

.hiw-img-wrap {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
}

.hiw-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rl);
}

.hiw-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(17, 24, 32, .9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.hiw-img-badge i {
    font-size: 1.6rem;
}

.hiw-img-badge strong {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    display: block;
    line-height: 1;
}

.hiw-img-badge small {
    font-size: .72rem;
    color: var(--text-color);
}

/* Steps */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hiw-step:last-child {
    border-bottom: none;
}

.hiw-step-num {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    color: rgba(12, 178, 219, .12);
    line-height: 1;
    min-width: 56px;
    letter-spacing: -2px;
    transition: var(--tr);
}

.hiw-step:hover .hiw-step-num {
    color: rgba(12, 178, 219, .3);
}

.hiw-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--tr);
}

.hiw-step:hover .hiw-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.hiw-step-body h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hiw-step-body p {
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   EXPERIENCE BANNER  (parallax-style strip)
   ============================================================ */
.exp-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.exp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    /* parallax */
    transform: scale(1.04);
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(12, 178, 219, .88) 0%,
            rgba(10, 24, 32, .96) 55%,
            rgba(10, 24, 32, .98) 100%);
}

.exp-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.exp-kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 14px;
}

.exp-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.exp-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
}

.exp-right {
    flex-shrink: 0;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.dest-section {
    background: var(--bg-dark);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
}

/* Make first card span 2 rows for visual variety */
.dest-grid .dest-card:first-child {
    grid-row: span 2;
}

.dest-card {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--tr);
}

.dest-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .65s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.07);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(10, 17, 24, .92) 100%);
}

.dest-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

.dest-dist {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 7px;
}

.dest-city {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.dest-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

/* Invisible full-cover link */
.dest-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ============================================================
   MAIN CTA SECTION
   ============================================================ */
.main-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.mcta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mcta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 17, 24, .97) 100%,
            rgba(12, 178, 219, .98) 100%,
            rgba(10, 17, 24, .97) 100%);
}

.mcta-inner {
    position: relative;
    z-index: 2;
}

.mcta-tag {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.mcta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}

.mcta-sub {
    font-size: .98rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 44px;
    line-height: 1.9;
}

.mcta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Big phone button */
.mcta-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-call:hover {
    background: transparent;
    color: var(--primary);
}

.mcta-btn-call .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mcta-btn-call .mcta-btn-text {
    text-align: left;
}

.mcta-btn-call .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-call .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Big WhatsApp button */
.mcta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25d366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid #25d366;
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-wa:hover {
    background: transparent;
    color: #25d366;
}

.mcta-btn-wa .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mcta-btn-wa .mcta-btn-text {
    text-align: left;
}

.mcta-btn-wa .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-wa .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Secondary alt button */
.mcta-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    padding: 16px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, .2);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--tr);
}

.mcta-btn-alt:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Trust pills row */
.mcta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mcta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.mcta-trust span i {
    color: #4ade80;
    font-size: .75rem;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1199px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .dest-grid .dest-card:first-child {
        grid-row: span 1;
    }

    .hiw-img-wrap img {
        height: 360px;
    }

    .exp-inner {
        flex-direction: column;
        text-align: center;
    }

    .exp-sub {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-grid .dest-card {
        height: 180px;
    }

    .svc2-card {
        height: 260px;
    }

    .mcta-btns {
        flex-direction: column;
        align-items: center;
    }

    .mcta-btn-call,
    .mcta-btn-wa {
        min-width: 280px;
        justify-content: center;
    }

    .hiw-steps {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .dest-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc2-card {
        height: 240px;
    }
}


/* ============================================================
   MAIN CTA SECTION
   ============================================================ */
.main-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.mcta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.mcta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 17, 24, .97) 0%,
            rgba(12, 178, 219, .18) 50%,
            rgba(10, 17, 24, .97) 100%);
}

.mcta-inner {
    position: relative;
    z-index: 2;
}

.mcta-tag {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.mcta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}

.mcta-sub {
    font-size: .98rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 44px;
    line-height: 1.9;
}

.mcta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Big phone button */
.mcta-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-call:hover {
    background: transparent;
    color: var(--primary);
}

.mcta-btn-call .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mcta-btn-call .mcta-btn-text {
    text-align: left;
}

.mcta-btn-call .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-call .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Big WhatsApp button */
.mcta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25d366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid #25d366;
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-wa:hover {
    background: transparent;
    color: #25d366;
}

.mcta-btn-wa .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mcta-btn-wa .mcta-btn-text {
    text-align: left;
}

.mcta-btn-wa .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-wa .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Secondary alt button */
.mcta-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    padding: 16px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, .8);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--tr);
}

.mcta-btn-alt:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Trust pills row */
.mcta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mcta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.mcta-trust span i {
    color: #4ade80;
    font-size: .75rem;
}


/* ============================================================
   Khushbu Tour & Travels – style.css  (v2 – all fixes)
   ============================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Roboto:wght@300;400;500;700;900&display=swap');

/* ---------- CSS Variables ---------- */
:root {
    --color-white: #fff;
    --color-btn: #0CB2DB;
    --color-btn1: #1C2D31;
    --text-color: #909DA1;
    --primary: #0CB2DB;
    --title-color: #fff;
    --color-black1: #1E1E1E;
    --bg-dark: #111820;
    --bg-card: #162028;
    --bg-deep: #0a1118;
    --border: rgba(12, 178, 219, .18);
    --glow: 0 0 30px rgba(12, 178, 219, .22);
    --tr: all .35s cubic-bezier(.4, 0, .2, 1);
    --r: 12px;
    --rl: 20px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    /* ← FIX: must be on html, not just body */
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--bg-dark);
    color: var(--text-color);
    overflow-x: hidden;
    line-height: 1.7;
    max-width: 100vw;
    /* ← belt-and-suspenders: never wider than viewport */
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Roboto', sans-serif;
    color: var(--title-color);
    font-weight: 700;
    line-height: 1.25;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--tr);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 3px;
}

/* ============================================================
   UTILITY
   ============================================================ */
.section-padding {
    padding: 90px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header .badge-label {
    display: inline-block;
    font-size: .73rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    margin-bottom: 14px;
}

.section-header p {
    max-width: 580px;
    margin: 0 auto;
    font-size: 1rem;
}

.title-line {
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), transparent);
    border-radius: 2px;
    margin: 14px auto 0;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    border: 2px solid var(--primary);
    transition: var(--tr);
    cursor: pointer;
}

.btn-primary-cta:hover {
    background: transparent;
    color: var(--primary);
    box-shadow: var(--glow);
}

.btn-outline-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .93rem;
    border: 2px solid rgba(255, 255, 255, .3);
    transition: var(--tr);
    cursor: pointer;
}

.btn-outline-cta:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-dark);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity .5s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.loader-ring {
    width: 52px;
    height: 52px;
    border: 3px solid rgba(12, 178, 219, .15);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin .8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ============================================================
   NAVBAR
   ============================================================ */
#mainNav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: var(--tr);
}

#mainNav.scrolled {
    background: rgba(17, 24, 32, .96);
    backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, .4);
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), #0880a0);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 900;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    letter-spacing: -1px;
    flex-shrink: 0;
    box-shadow: 0 4px 16px rgba(12, 178, 219, .35);
}

.logo-text .name {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}

.logo-text .tagline {
    display: block;
    font-size: .67rem;
    color: var(--primary);
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    color: rgba(255, 255, 255, .75) !important;
    font-size: .9rem;
    font-weight: 500;
    padding: 8px 13px !important;
    position: relative;
    transition: var(--tr);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 13px;
    right: 13px;
    height: 2px;
    background: var(--primary);
    transform: scaleX(0);
    transition: transform .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff !important;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: var(--primary);
    color: #fff !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-weight: 600;
    border: 2px solid var(--primary);
}

.nav-cta:hover {
    background: transparent !important;
    color: var(--primary) !important;
}

.nav-cta::after {
    display: none !important;
}

.nav-quick {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-quick a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    border: 1px solid var(--border);
    transition: var(--tr);
}

.nav-quick .wa {
    color: #25d366;
}

.nav-quick .wa:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

.nav-quick .ph {
    color: var(--primary);
}

.nav-quick .ph:hover {
    background: var(--primary);
    color: #fff;
}

.navbar-toggler {
    border: 1px solid var(--border);
    padding: 6px 10px;
    border-radius: 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ============================================================
   HERO  — FIXED CAROUSEL
   ============================================================
   All slides sit absolutely on top of each other.
   Only .active is visible (opacity 1). JS toggles .active.
   ============================================================ */
#hero {
    position: relative;
}

.hero-carousel {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

/* Every slide stacks at the same spot */
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    z-index: 1;
}

/* Only the active slide is shown */
.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 8s ease;
}

.hero-slide.active .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(17, 24, 32, .96) 0%,
            rgba(17, 24, 32, .72) 55%,
            rgba(17, 24, 32, .35) 100%);
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 660px;
    padding: 120px 0 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 6px 18px;
    border-radius: 50px;
    font-size: .77rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 22px;
}

.hero-dot {
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    animation: blink 1.5s infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1
    }

    50% {
        opacity: .25
    }
}

.hero-title {
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 20px;
}

.hero-title span {
    color: var(--primary);
}

.hero-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, .72);
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.hero-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 50px;
}

.stat-item .num {
    display: block;
    font-size: 1.85rem;
    font-weight: 800;
    color: var(--primary);
    font-family: 'Roboto', sans-serif;
}

.stat-item .label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .5);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Arrow buttons */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--tr);
    backdrop-filter: blur(8px);
}

.hero-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.hero-prev {
    left: 20px;
}

.hero-next {
    right: 20px;
}

/* Dot indicators */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.hero-dot-btn {
    width: 28px;
    height: 4px;
    padding: 0;
    border: none;
    border-radius: 2px;
    background: rgba(255, 255, 255, .28);
    cursor: pointer;
    transition: var(--tr);
}

.hero-dot-btn.active {
    width: 52px;
    background: var(--primary);
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-bar {
    background: var(--primary);
    padding: 11px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-track {
    display: inline-flex;
    gap: 48px;
    animation: marquee 22s linear infinite;
}

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: .83rem;
    font-weight: 600;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.marquee-item i {
    font-size: .55rem;
    opacity: .55;
}

@keyframes marquee {
    0% {
        transform: translateX(0)
    }

    100% {
        transform: translateX(-50%)
    }
}

/* ============================================================
   SERVICE CARDS  — redesigned compact & punchy
   ============================================================ */
.svc-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 28px 24px 22px;
    display: flex;
    flex-direction: column;
    gap: 0;
    height: 100%;
    transition: var(--tr);
    position: relative;
    overflow: hidden;
}

.svc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--svc-color, var(--primary)), transparent);
    opacity: 0;
    transition: opacity .35s ease;
}

.svc-card:hover {
    border-color: var(--svc-color, var(--primary));
    transform: translateY(-6px);
    box-shadow: 0 12px 40px rgba(12, 178, 219, .15);
}

.svc-card:hover::before {
    opacity: 1;
}

.svc-icon-wrap {
    width: 56px;
    height: 56px;
    background: color-mix(in srgb, var(--svc-color, var(--primary)) 15%, transparent);
    border: 1px solid color-mix(in srgb, var(--svc-color, var(--primary)) 30%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--svc-color, var(--primary));
    margin-bottom: 16px;
    transition: var(--tr);
    flex-shrink: 0;
}

.svc-card:hover .svc-icon-wrap {
    background: var(--svc-color, var(--primary));
    color: #fff;
    border-color: var(--svc-color, var(--primary));
}

.svc-body {
    flex: 1;
}

.svc-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    color: #fff;
}

.svc-desc {
    font-size: .84rem;
    color: var(--text-color);
    line-height: 1.65;
    margin-bottom: 18px;
}

.svc-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(12, 178, 219, .08);
    color: var(--primary);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 600;
    border: 1px solid var(--border);
    transition: var(--tr);
    align-self: flex-start;
    margin-top: auto;
}

.svc-link:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* ============================================================
   ABOUT
   ============================================================ */
.about-image-wrap {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
}

.about-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rl);
}

.about-badge-float {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: var(--primary);
    color: #fff;
    padding: 14px 20px;
    border-radius: var(--r);
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 32px rgba(12, 178, 219, .4);
}

.about-badge-float .big-num {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    line-height: 1;
}

.about-badge-float .small-text {
    font-size: .76rem;
    font-weight: 600;
    line-height: 1.45;
    opacity: .9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 26px 0;
}

.feat-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feat-icon {
    width: 38px;
    height: 38px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .95rem;
    flex-shrink: 0;
}

.feat-item h6 {
    font-size: .88rem;
    margin-bottom: 2px;
}

.feat-item span {
    font-size: .78rem;
    color: var(--text-color);
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 30px 26px;
    text-align: center;
    transition: var(--tr);
    height: 100%;
}

.why-card:hover {
    border-color: var(--primary);
    transform: translateY(-6px);
    box-shadow: var(--glow);
}

.why-icon {
    width: 66px;
    height: 66px;
    background: linear-gradient(135deg, rgba(12, 178, 219, .18), rgba(12, 178, 219, .04));
    border: 1px solid var(--border);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: var(--primary);
    margin: 0 auto 18px;
    transition: var(--tr);
}

.why-card:hover .why-icon {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.why-card h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.why-card p {
    font-size: .83rem;
    line-height: 1.65;
}

/* ============================================================
   FLEET SPLIDE
   ============================================================ */
.fleet-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: var(--tr);
    margin: 4px;
}

.fleet-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--glow);
    border-color: var(--primary);
}

.fleet-card img {
    width: 100%;
    height: 210px;
    object-fit: cover;
}

.fleet-card-body {
    padding: 18px 20px;
}

.fleet-card-body h5 {
    font-size: .98rem;
    margin-bottom: 10px;
}

.fleet-meta {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.fleet-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: .77rem;
    color: var(--text-color);
}

.fleet-meta span i {
    color: var(--primary);
}

.fleet-badge {
    background: rgba(12, 178, 219, .1);
    color: var(--primary);
    font-size: .71rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    border: 1px solid var(--border);
}

.splide__arrow {
    background: rgba(12, 178, 219, .14) !important;
    border: 1px solid var(--border) !important;
}

.splide__arrow:hover {
    background: var(--primary) !important;
}

.splide__arrow svg {
    fill: #fff !important;
}

.splide__pagination__page {
    background: rgba(255, 255, 255, .2) !important;
}

.splide__pagination__page.is-active {
    background: var(--primary) !important;
}

/* ============================================================
   GALLERY  — CSS columns masonry (no broken nth-child hacks)
   ============================================================ */
.gallery-masonry {
    column-count: 4;
    column-gap: 12px;
}

.gal-item {
    break-inside: avoid;
    margin-bottom: 12px;
    position: relative;
    overflow: hidden;
    border-radius: var(--r);
    cursor: pointer;
    border: 1px solid var(--border);
}

.gal-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform .55s ease;
}

.gal-item:hover img {
    transform: scale(1.06);
}

.gal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(12, 178, 219, .0);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--tr);
}

.gal-item:hover .gal-overlay {
    background: rgba(12, 24, 32, .55);
    opacity: 1;
}

.gal-zoom {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    transform: scale(0);
    transition: transform .3s ease;
}

.gal-item:hover .gal-zoom {
    transform: scale(1);
}

/* Lightbox */
#lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .93);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity .35s ease;
}

#lightbox.open {
    opacity: 1;
    pointer-events: all;
}

#lightbox img {
    max-width: 90vw;
    max-height: 88vh;
    border-radius: var(--r);
    box-shadow: 0 0 80px rgba(0, 0, 0, .8);
}

.lb-close {
    position: absolute;
    top: 18px;
    right: 22px;
    font-size: 2rem;
    color: #fff;
    cursor: pointer;
    opacity: .7;
}

.lb-close:hover {
    opacity: 1;
    color: var(--primary);
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-info-wrap {
    display: flex;
    flex-direction: column;
    gap: 14px;
    height: 100%;
}

.contact-info-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 18px 20px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: var(--tr);
}

.contact-info-card:hover {
    border-color: var(--primary);
    box-shadow: 0 4px 20px rgba(12, 178, 219, .1);
}

.ci-icon {
    width: 44px;
    height: 44px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.05rem;
    flex-shrink: 0;
}

.ci-body h6 {
    font-size: .9rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ci-body p,
.ci-body a {
    font-size: .84rem;
    color: var(--text-color);
    line-height: 1.6;
    margin: 0;
}

.ci-body a:hover {
    color: var(--primary);
}

.contact-quick-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: auto;
    padding-top: 6px;
}

.btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    border: 2px solid #25d366;
    transition: var(--tr);
}

.btn-wa:hover {
    background: transparent;
    color: #25d366;
}

.btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .88rem;
    border: 2px solid var(--primary);
    transition: var(--tr);
}

.btn-call:hover {
    background: transparent;
    color: var(--primary);
}

/* Form card */
.contact-form-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 32px 32px 28px;
    height: 100%;
}

.cf-header {
    margin-bottom: 24px;
}

.cf-header h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cf-header p {
    font-size: .85rem;
    color: var(--text-color);
}

.cf-label {
    display: block;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: .8px;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.cf-input {
    width: 100%;
    background: rgba(255, 255, 255, .04);
    border: 1px solid var(--border);
    border-radius: 10px;
    color: #fff;
    font-size: .9rem;
    font-family: 'Inter', sans-serif;
    padding: 11px 15px;
    transition: var(--tr);
    outline: none;
    appearance: none;
}

.cf-input:focus {
    border-color: var(--primary);
    background: rgba(12, 178, 219, .05);
    box-shadow: 0 0 0 3px rgba(12, 178, 219, .12);
}

.cf-input::placeholder {
    color: rgba(255, 255, 255, .25);
}

.cf-select {
    cursor: pointer;
}

.cf-select option {
    background: var(--bg-card);
    color: #fff;
}

.cf-textarea {
    resize: vertical;
    min-height: 90px;
}

.cf-submit {
    width: 100%;
    background: #25d366;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 14px 28px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    margin-top: 4px;
}

.cf-submit:hover {
    background: #1fb055;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, .35);
}

.cf-note {
    font-size: .75rem;
    color: var(--text-color);
    margin-top: 10px;
    text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
    background: var(--bg-deep);
    padding: 70px 0 0;
    border-top: 1px solid var(--border);
}

.footer-about {
    font-size: .87rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    width: 37px;
    height: 37px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
    color: var(--text-color);
    transition: var(--tr);
}

.social-links a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.footer-title {
    font-size: .95rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 34px;
    height: 2px;
    background: var(--primary);
    border-radius: 1px;
}

.footer-links li+li {
    margin-top: 9px;
}

.footer-links a {
    font-size: .86rem;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--tr);
}

.footer-links a i {
    font-size: .6rem;
    color: var(--primary);
}

.footer-links a:hover {
    color: var(--primary);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
}

.fc-icon {
    width: 36px;
    height: 36px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: .88rem;
    flex-shrink: 0;
}

.fc-info .label {
    font-size: .7rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.fc-info .value {
    font-size: .86rem;
    color: #fff;
    font-weight: 500;
}

.footer-bottom {
    background: rgba(0, 0, 0, .3);
    border-top: 1px solid var(--border);
    margin-top: 54px;
    padding: 20px 0;
    text-align: center;
    font-size: .8rem;
    color: rgba(255, 255, 255, .32);
}

.footer-bottom span {
    color: var(--primary);
}

/* ============================================================
   FIXED UTILITY BUTTONS
   ============================================================ */
#scrollTop {
    position: fixed;
    bottom: 26px;
    right: 22px;
    width: 44px;
    height: 44px;
    background: var(--primary);
    color: #fff;
    border-radius: 11px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .95rem;
    z-index: 800;
    opacity: 0;
    pointer-events: none;
    transition: var(--tr);
    box-shadow: 0 4px 20px rgba(12, 178, 219, .4);
    cursor: pointer;
}

#scrollTop.show {
    opacity: 1;
    pointer-events: all;
}

#scrollTop:hover {
    transform: translateY(-4px);
}

#wa-float {
    position: fixed;
    bottom: 26px;
    left: 22px;
    width: 50px;
    height: 50px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    z-index: 800;
    box-shadow: 0 4px 22px rgba(37, 211, 102, .45);
    transition: var(--tr);
    cursor: pointer;
}

#wa-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, .6);
}

/* ============================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Use translateY only — translateX was the direct horizontal-scroll cause */
.reveal-left {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-right {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .7s ease, transform .7s ease;
}

.reveal-left.visible,
.reveal-right.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* Every top-level section clips its own overflow — prevents any child
   from ever creating a horizontal scrollbar regardless of animation */
section,
.exp-banner,
.main-cta-section,
.mini-cta,
.marquee-bar,
.dest-section,
.hiw-section {
    overflow-x: clip;
}

@media (max-width: 1199px) {
    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 991px) {
    .about-image-wrap img {
        height: 380px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .gallery-masonry {
        column-count: 3;
    }
}

@media (max-width: 767px) {
    .section-padding {
        padding: 60px 0;
    }

    .hero-stats {
        gap: 20px;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .contact-form-card {
        padding: 24px 20px;
    }
}

@media (max-width: 480px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .gallery-masonry {
        column-count: 2;
    }

    .hero-title {
        font-size: 2rem;
    }

    .contact-quick-btns {
        flex-direction: column;
    }
}

@media (max-width: 380px) {
    .gallery-masonry {
        column-count: 1;
    }
}

/* ============================================================
   SERVICE CARDS v2  – image-background cards
   ============================================================ */
.svc2-card {
    position: relative;
    height: 280px;
    border-radius: var(--rl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--tr);
    border: 1px solid var(--border);
}

.svc2-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, .5);
    border-color: var(--primary);
}

/* Background image fills the card */
.svc2-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .65s ease;
}

.svc2-card:hover .svc2-img {
    transform: scale(1.08);
}

/* Gradient overlay – dark at bottom, slight at top */
.svc2-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(10, 17, 24, .25) 0%,
            rgba(10, 17, 24, .55) 45%,
            rgba(10, 17, 24, .97) 100%);
    transition: var(--tr);
}

.svc2-card:hover .svc2-overlay {
    background: linear-gradient(to bottom,
            rgba(12, 178, 219, .08) 0%,
            rgba(10, 17, 24, .65) 45%,
            rgba(10, 17, 24, .98) 100%);
}

/* Icon badge – top right */
.svc2-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background: rgba(12, 178, 219, .85);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: var(--tr);
    box-shadow: 0 4px 14px rgba(12, 178, 219, .4);
}

.svc2-card:hover .svc2-badge {
    background: var(--primary);
    transform: scale(1.08);
}

/* Bottom content block */
.svc2-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.svc2-tag {
    font-size: .68rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    opacity: .9;
}

.svc2-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1.2;
}

.svc2-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--primary);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: .8rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 8px;
    border: 1.5px solid var(--primary);
    transition: var(--tr);
}

.svc2-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ============================================================
   HOW IT WORKS SECTION
   ============================================================ */
.hiw-section {
    background: #0d1820;
}

.hiw-img-wrap {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
}

.hiw-img-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    border-radius: var(--rl);
}

.hiw-img-badge {
    position: absolute;
    bottom: 24px;
    right: 24px;
    background: rgba(17, 24, 32, .9);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--r);
    padding: 14px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
}

.hiw-img-badge i {
    font-size: 1.6rem;
}

.hiw-img-badge strong {
    font-size: 1.2rem;
    font-weight: 800;
    font-family: 'Roboto', sans-serif;
    display: block;
    line-height: 1;
}

.hiw-img-badge small {
    font-size: .72rem;
    color: var(--text-color);
}

/* Steps */
.hiw-steps {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 32px;
}

.hiw-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 22px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

.hiw-step:last-child {
    border-bottom: none;
}

.hiw-step-num {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    color: rgba(12, 178, 219, .12);
    line-height: 1;
    min-width: 56px;
    letter-spacing: -2px;
    transition: var(--tr);
}

.hiw-step:hover .hiw-step-num {
    color: rgba(12, 178, 219, .3);
}

.hiw-step-icon {
    width: 48px;
    height: 48px;
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.15rem;
    flex-shrink: 0;
    transition: var(--tr);
}

.hiw-step:hover .hiw-step-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.hiw-step-body h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.hiw-step-body p {
    font-size: .85rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   EXPERIENCE BANNER  (parallax-style strip)
   ============================================================ */
.exp-banner {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

.exp-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* background-attachment:fixed removed — causes overflow on mobile Safari */
}

.exp-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(12, 178, 219, .88) 0%,
            rgba(10, 24, 32, .96) 55%,
            rgba(10, 24, 32, .98) 100%);
}

.exp-inner {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.exp-kicker {
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .7);
    margin-bottom: 14px;
}

.exp-title {
    font-size: clamp(1.7rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 14px;
}

.exp-sub {
    font-size: .95rem;
    color: rgba(255, 255, 255, .72);
    max-width: 520px;
}

.exp-right {
    flex-shrink: 0;
}

/* ============================================================
   DESTINATIONS SECTION
   ============================================================ */
.dest-section {
    background: var(--bg-dark);
}

.dest-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 240px 240px;
    gap: 14px;
}

/* Make first card span 2 rows for visual variety */
.dest-grid .dest-card:first-child {
    grid-row: span 2;
}

.dest-card {
    position: relative;
    border-radius: var(--rl);
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--border);
    transition: var(--tr);
}

.dest-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-4px);
}

.dest-img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform .65s ease;
}

.dest-card:hover .dest-img {
    transform: scale(1.07);
}

.dest-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            transparent 30%,
            rgba(10, 17, 24, .92) 100%);
}

.dest-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 22px;
}

.dest-dist {
    display: inline-block;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 7px;
}

.dest-city {
    font-size: 1.2rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 4px;
}

.dest-label {
    font-size: .78rem;
    color: rgba(255, 255, 255, .6);
}

/* Invisible full-cover link */
.dest-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* ============================================================
   MAIN CTA SECTION
   ============================================================ */
.main-cta-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    text-align: center;
}

.mcta-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* background-attachment:fixed removed — causes viewport overflow on iOS/Android */
}

.mcta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,
            rgba(10, 17, 24, .97) 0%,
            rgba(12, 178, 219, .18) 50%,
            rgba(10, 17, 24, .97) 100%);
}

.mcta-inner {
    position: relative;
    z-index: 2;
}

.mcta-tag {
    display: inline-block;
    font-size: .73rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    padding: 6px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.mcta-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.15;
}

.mcta-sub {
    font-size: .98rem;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 44px;
    line-height: 1.9;
}

.mcta-btns {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
}

/* Big phone button */
.mcta-btn-call {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid var(--primary);
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-call:hover {
    background: transparent;
    color: var(--primary);
}

.mcta-btn-call .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.mcta-btn-call .mcta-btn-text {
    text-align: left;
}

.mcta-btn-call .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-call .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Big WhatsApp button */
.mcta-btn-wa {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: #25d366;
    color: #fff;
    padding: 16px 32px;
    border-radius: 16px;
    border: 2px solid #25d366;
    transition: var(--tr);
    min-width: 220px;
}

.mcta-btn-wa:hover {
    background: transparent;
    color: #25d366;
}

.mcta-btn-wa .mcta-btn-icon {
    width: 46px;
    height: 46px;
    background: rgba(255, 255, 255, .15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    flex-shrink: 0;
}

.mcta-btn-wa .mcta-btn-text {
    text-align: left;
}

.mcta-btn-wa .mcta-btn-text small {
    display: block;
    font-size: .72rem;
    opacity: .8;
    letter-spacing: .5px;
}

.mcta-btn-wa .mcta-btn-text strong {
    display: block;
    font-size: 1.1rem;
    letter-spacing: .5px;
}

/* Secondary alt button */
.mcta-btn-alt {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: rgba(255, 255, 255, .75);
    padding: 16px 28px;
    border-radius: 16px;
    border: 2px solid rgba(255, 255, 255, .2);
    font-size: .9rem;
    font-weight: 600;
    transition: var(--tr);
}

.mcta-btn-alt:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* Trust pills row */
.mcta-trust {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.mcta-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .6);
    font-weight: 500;
}

.mcta-trust span i {
    color: #4ade80;
    font-size: .75rem;
}

/* ============================================================
   RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 1199px) {
    .dest-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
    }

    .dest-grid .dest-card:first-child {
        grid-row: span 1;
    }

    .hiw-img-wrap img {
        height: 360px;
    }

    .exp-inner {
        flex-direction: column;
        text-align: center;
    }

    .exp-sub {
        max-width: 100%;
    }
}

@media (max-width: 767px) {
    .dest-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .dest-grid .dest-card {
        height: 180px;
    }

    .svc2-card {
        height: 260px;
    }

    .mcta-btns {
        flex-direction: column;
        align-items: center;
    }

    .mcta-btn-call,
    .mcta-btn-wa {
        min-width: 280px;
        justify-content: center;
    }

    .hiw-steps {
        margin-top: 20px;
    }
}

@media (max-width: 575px) {
    .dest-grid {
        grid-template-columns: 1fr 1fr;
    }

    .svc2-card {
        height: 240px;
    }
}

/* ============================================================
   INNER PAGE SHARED STYLES  (page-hero, breadcrumb, page layout)
   ============================================================ */

/* ── Page Hero Banner ─────────────────────────────────────── */
.page-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04);
    transition: transform 6s ease;
}

.page-hero:hover .page-hero-bg {
    transform: scale(1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg,
            rgba(10, 17, 24, .97) 0%,
            rgba(10, 17, 24, .82) 55%,
            rgba(10, 17, 24, .6) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 52px;
    width: 100%;
}

.page-hero-content .ph-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary);
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    padding: 5px 16px;
    border-radius: 50px;
    margin-bottom: 14px;
}

.page-hero-content h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 0;
    line-height: 1.15;
}

.page-hero-content h1 span {
    color: var(--primary);
}

/* Breadcrumb */
.page-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    margin-top: 14px;
}

.page-breadcrumb a {
    color: rgba(255, 255, 255, .5);
}

.page-breadcrumb a:hover {
    color: var(--primary);
}

.page-breadcrumb .sep {
    opacity: .4;
    font-size: .65rem;
}

.page-breadcrumb .current {
    color: var(--primary);
    font-weight: 600;
}

/* Sticky nav must be solid on inner pages (no hero behind) */
.inner-page #mainNav {
    background: rgba(17, 24, 32, .97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

/* ── Mini CTA bar (shared across all pages) ─────────────── */
.mini-cta {
    background: linear-gradient(90deg, var(--color-btn1), #0e2028);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 38px 0;
}

.mini-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

.mini-cta-text h5 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.mini-cta-text p {
    font-size: .88rem;
    color: var(--text-color);
    margin: 0;
}

.mini-cta-btns {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.svc-detail-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.svc-detail-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.svc-detail-img {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.svc-detail-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.svc-detail-card:hover .svc-detail-img img {
    transform: scale(1.07);
}

.svc-detail-img-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--primary);
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 5px 13px;
    border-radius: 50px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.svc-detail-body {
    padding: 22px 24px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.svc-detail-body .svc-icon-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.svc-detail-body .svc-icon-circle {
    width: 44px;
    height: 44px;
    background: rgba(12, 178, 219, .12);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.svc-detail-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.svc-detail-body p {
    font-size: .86rem;
    line-height: 1.75;
    flex: 1;
    margin-bottom: 18px;
}

.svc-detail-features {
    display: flex;
    flex-direction: column;
    gap: 7px;
    margin-bottom: 20px;
}

.svc-detail-features li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: .82rem;
    color: rgba(255, 255, 255, .75);
}

.svc-detail-features li i {
    color: var(--primary);
    font-size: .7rem;
    flex-shrink: 0;
}

.svc-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: #fff;
    padding: 11px 24px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--tr);
    align-self: flex-start;
}

.svc-book-btn:hover {
    background: transparent;
    color: var(--primary);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 14px;
    top: 6px;
    bottom: 6px;
    width: 2px;
    background: linear-gradient(to bottom, var(--primary), transparent);
}

.tl-item {
    position: relative;
    margin-bottom: 34px;
}

.tl-item:last-child {
    margin-bottom: 0;
}

.tl-dot {
    position: absolute;
    left: -34px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border-radius: 50%;
    border: 3px solid var(--bg-dark);
    box-shadow: 0 0 0 4px rgba(12, 178, 219, .2);
}

.tl-year {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 5px;
}

.tl-item h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.tl-item p {
    font-size: .84rem;
    line-height: 1.7;
    margin: 0;
}

/* Team cards */
.team-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: var(--tr);
    text-align: center;
}

.team-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.team-avatar {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
}

.team-info {
    padding: 20px 18px 22px;
}

.team-info h5 {
    font-size: .98rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.team-info .role {
    font-size: .75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 10px;
}

.team-info p {
    font-size: .82rem;
    line-height: 1.65;
    margin-bottom: 14px;
}

.team-social {
    display: flex;
    gap: 8px;
    justify-content: center;
}

.team-social a {
    width: 32px;
    height: 32px;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    color: var(--text-color);
    transition: var(--tr);
}

.team-social a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

/* Stats strip */
.stats-strip {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 40px 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    text-align: center;
}

.stats-strip .ss-item {
    padding: 0 20px;
    border-right: 1px solid var(--border);
}

.stats-strip .ss-item:last-child {
    border-right: none;
}

.ss-item .ss-num {
    font-size: 2.4rem;
    font-weight: 900;
    font-family: 'Roboto', sans-serif;
    color: var(--primary);
    display: block;
    line-height: 1;
}

.ss-item .ss-label {
    font-size: .78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, .55);
    margin-top: 8px;
}

/* Value cards */
.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    padding: 28px 24px;
    transition: var(--tr);
    height: 100%;
}

.value-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-5px);
}

.value-card .vc-icon {
    width: 54px;
    height: 54px;
    background: rgba(12, 178, 219, .1);
    border: 1px solid var(--border);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 16px;
    transition: var(--tr);
}

.value-card:hover .vc-icon {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.value-card h5 {
    font-size: .97rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: .84rem;
    line-height: 1.7;
    margin: 0;
}

/* ============================================================
   FLEET PAGE
   ============================================================ */
.fleet-full-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--rl);
    overflow: hidden;
    transition: var(--tr);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fleet-full-card:hover {
    border-color: var(--primary);
    box-shadow: var(--glow);
    transform: translateY(-6px);
}

.fleet-full-img {
    position: relative;
    height: 230px;
    overflow: hidden;
}

.fleet-full-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

.fleet-full-card:hover .fleet-full-img img {
    transform: scale(1.07);
}

.fleet-full-img .ffi-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--primary);
    color: #fff;
    font-size: .7rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.fleet-full-body {
    padding: 20px 22px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.fleet-full-body h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.fleet-specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 18px;
}

.fleet-spec {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .81rem;
    color: rgba(255, 255, 255, .7);
}

.fleet-spec i {
    color: var(--primary);
    font-size: .9rem;
    width: 16px;
    text-align: center;
    flex-shrink: 0;
}

.fleet-full-body p {
    font-size: .84rem;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.fleet-cta-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: auto;
}

.fleet-book-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--primary);
    color: #fff;
    padding: 10px 22px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 600;
    border: 2px solid var(--primary);
    transition: var(--tr);
}

.fleet-book-btn:hover {
    background: transparent;
    color: var(--primary);
}

.fleet-wa-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: transparent;
    color: #25d366;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 600;
    border: 2px solid rgba(37, 211, 102, .3);
    transition: var(--tr);
}

.fleet-wa-btn:hover {
    background: #25d366;
    color: #fff;
    border-color: #25d366;
}

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}

.gf-btn {
    background: transparent;
    color: var(--text-color);
    border: 1px solid var(--border);
    padding: 8px 22px;
    border-radius: 50px;
    font-size: .83rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--tr);
}

.gf-btn:hover,
.gf-btn.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.gallery-masonry-full {
    column-count: 4;
    column-gap: 14px;
}

.gallery-masonry-full .gal-item {
    margin-bottom: 14px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.map-embed {
    border-radius: var(--rl);
    overflow: hidden;
    border: 1px solid var(--border);
    height: 340px;
}

.map-embed iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================================================
   RESPONSIVE – inner pages
   ============================================================ */
@media (max-width: 991px) {
    .page-hero {
        height: 300px;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
    }

    .stats-strip .ss-item:nth-child(2) {
        border-right: none;
    }

    .stats-strip .ss-item:nth-child(3) {
        border-top: 1px solid var(--border);
    }

    .gallery-masonry-full {
        column-count: 3;
    }

    .mini-cta-inner {
        flex-direction: column;
        text-align: center;
    }

    .mini-cta-btns {
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .page-hero {
        height: 260px;
    }

    .page-hero-content h1 {
        font-size: 1.9rem;
    }

    .stats-strip {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        padding: 28px 20px;
    }

    .gallery-masonry-full {
        column-count: 2;
    }

    .fleet-specs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .gallery-masonry-full {
        column-count: 2;
    }

    .stats-strip {
        grid-template-columns: 1fr 1fr;
    }
}

/* ── Bootstrap accordion overrides for dark theme ────────── */
.accordion-item {
    background: var(--bg-card) !important;
    border-color: var(--border) !important;
}

.accordion-button {
    background: var(--bg-card) !important;
    color: #fff !important;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    color: var(--primary) !important;
}

.accordion-button::after {
    filter: invert(1) brightness(2);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(56%) sepia(84%) saturate(400%) hue-rotate(165deg);
}

.accordion-body {
    color: var(--text-color);
}

/* ── Gallery masonry-full gal-item hidden state ─────────── */
#galleryGrid .gal-item {
    display: block;
}