/* ==================================
   GO GOLDEN TRIP
   Pixel-Perfect Travel Landing Page
================================== */

:root {
    --primary: #FDBB2D;
    --secondary: #0D2A5E;
    --dark: #081C3A;
    --white: #ffffff;
    --text: #5f6b7a;
    --shadow: 0 15px 40px rgba(0, 0, 0, .08);
    --radius: 20px;
}

/* ---------- RESET ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #222;
    overflow-x: hidden;
    background: #fff;
}

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

a {
    text-decoration: none;
}

.cursor-pointer {
    cursor: pointer;
}

/* ===================
   TOP BAR (Premium)
=================== */
.top-bar {
    background: #041227;
    /* Deep premium navy */
    border-bottom: 1px solid rgba(253, 187, 45, 0.15);
    padding: 8px 0;
    transition: all 0.3s ease;
}

.tb-icon-box {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: rgba(253, 187, 45, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 11px;
    transition: all 0.3s ease;
}

.tb-contact a:hover .tb-icon-box {
    background: var(--primary);
    color: #041227;
}

.tb-text {
    color: rgba(255, 255, 255, 0.85);
    font-size: 12.5px;
    font-weight: 400;
    letter-spacing: 0.2px;
    transition: color 0.3s ease;
}

.tb-contact a:hover .tb-text {
    color: var(--primary);
}

.tb-divider {
    width: 1px;
    height: 14px;
    background: rgba(255, 255, 255, 0.15);
}

.tb-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    font-weight: 500;
    margin-right: 4px;
}

.tb-social-btn {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 11.5px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tb-social-btn:hover {
    background: var(--primary);
    color: #041227;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(253, 187, 45, 0.3);
}

/* ===================
   HEADER & NAVBAR
=================== */
.header-wrapper {
    transition: transform 0.3s ease, background 0.3s ease;
    background: transparent;
}

/* Gradient overlay to replicate the white glow behind the logo from the screenshot */
.header-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.95) 30%, rgba(255, 255, 255, 0.4) 60%, rgba(255, 255, 255, 0) 100%);
    z-index: -1;
    transition: opacity 0.3s ease;
}

.header-wrapper.scrolled {
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.header-wrapper.scrolled::before {
    opacity: 0;
    /* solid background takes over */
}

.header-wrapper.scrolled .top-bar {
    display: none !important;
}

.custom-navbar {
    padding: 4px 0;
    transition: all 0.3s ease;
}

.header-wrapper.scrolled .custom-navbar {
    padding: 2px 0;
}

/* Logo */
.navbar-brand img {
    height: 64px;
    width: auto;
    transition: height 0.3s ease;
}

.header-wrapper.scrolled .navbar-brand img {
    height: 52px;
}

/* Nav Links */
.navbar-nav .nav-link {
    color: #0d2a5e !important;
    font-weight: 500;
    font-size: 14.5px;
    padding: 8px 0 !important;
    margin: 0 16px;
    position: relative;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--primary) !important;
}

/* Active Nav Link (Tight yellow underline) */
.navbar-nav .nav-link.active {
    color: var(--primary) !important;
    font-weight: 600;
}

.navbar-nav .nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--primary);
}

/* Dropdown arrow */
.navbar-nav .dropdown-toggle::after {
    margin-left: 6px;
    vertical-align: 1px;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    transition: transform 0.3s ease;
}

.navbar-nav .dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

/* Phone button */
.phone-btn {
    border: 1px solid #0d2a5e;
    padding: 8px 18px;
    color: #0d2a5e;
    font-weight: 500;
    font-size: 14px;
    background: transparent;
    transition: all 0.3s ease;
    border-radius: 50px !important;
}

.phone-btn i {
    font-size: 13.5px;
    color: var(--primary);
}

.phone-btn:hover {
    background: #0d2a5e;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(13, 42, 94, .15);
}

.phone-btn:hover i {
    color: #fff;
}

/* Enquire Now button */
.enquire-btn {
    background: var(--primary);
    border: none;
    padding: 9px 24px;
    color: #0d2a5e;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    border-radius: 50px !important;
}

.enquire-btn:hover {
    background: #eaa818;
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(253, 187, 45, 0.4);
    color: #0d2a5e;
}

.enquire-btn i {
    font-size: 13.5px;
    transition: transform 0.3s ease;
    margin-left: 2px;
}

.enquire-btn:hover i {
    transform: translateX(4px);
}

/* Dropdown Animation for Desktop */
@media (min-width: 992px) {
    .navbar-nav .dropdown:hover .dropdown-menu {
        display: block;
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
    }

    .navbar-nav .dropdown-menu {
        display: block;
        visibility: hidden;
        opacity: 0;
        transform: translateY(15px);
        transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
        margin-top: 0;
    }
}

.dropdown-menu {
    border: none !important;
    box-shadow: 0 12px 40px rgba(0, 0, 0, .12);
    border-radius: 16px !important;
    padding: 12px;
    min-width: 190px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
}

.dropdown-item {
    border-radius: 10px;
    font-size: 14.5px;
    font-weight: 500;
    padding: 10px 18px;
    color: #0d2a5e;
    transition: all 0.25s ease;
}

.dropdown-item:hover {
    background: rgba(253, 187, 45, 0.12);
    color: var(--primary);
    transform: translateX(5px);
}

/* ===================
   HERO
=================== */
.hero-section {
    min-height: 85vh;
    background: url('../images/herosection.webp') center center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    padding-top: 120px;
    padding-bottom: 100px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(4, 25, 60, .95) 0%,
            rgba(4, 25, 60, .78) 30%,
            rgba(4, 25, 60, .35) 65%,
            rgba(4, 25, 60, .05) 100%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
}

/* Tag */
.hero-tag {
    display: block;
    color: #cdd8e8;
    font-size: 12.5px;
    font-weight: 500;
    letter-spacing: 3.5px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

/* Main title */
.hero-title {
    color: #fff;
    font-size: 42px;
    font-weight: 400;
    line-height: 1;
    margin-bottom: 0;
}

.hero-title span {
    font-size: 42px;
    font-weight: 400;
    opacity: .93;
}

.hero-title strong {
    display: block;
    font-size: 96px;
    font-weight: 800;
    line-height: .92;
    letter-spacing: -3px;
    margin-top: 2px;
}

/* Cursive subtitle */
.hero-subtitle {
    font-family: 'Dancing Script', cursive;
    color: var(--primary);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.1;
    margin-top: 10px;
}

/* Body text */
.hero-text {
    color: rgba(255, 255, 255, .80);
    font-size: 16px;
    line-height: 1.65;
    margin-top: 14px;
    margin-bottom: 0;
}

/* Feature icons row */
.hero-features {
    margin-top: 36px;
    gap: 28px;
}

.feature {
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.35;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Feature icon circles (outline style) */
.feature-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, .9);
}

/* ===================
   TRUST CARD
=================== */
.trust-card {
    position: absolute;
    right: 24px;
    bottom: 30px;
    background: #fff;
    padding: 18px 22px;
    border-radius: 18px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .18);
    z-index: 10;
    min-width: 220px;
}

.trust-images {
    display: flex;
    align-items: center;
}

.trust-images img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    object-fit: cover;
    margin-left: -10px;
}

.trust-images img:first-child {
    margin-left: 0;
}

.rating-badge {
    background: var(--primary);
    border-radius: 50px;
    padding: 4px 10px;
    font-size: 13px;
    font-weight: 700;
    color: #0d2a5e;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 12px rgba(253, 187, 45, .35);
}

.rating-badge i {
    font-size: 11px;
}

.trust-card .trust-label {
    font-weight: 600;
    color: #1a1a2e;
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 2px;
}

.trust-card .trust-sub {
    color: #8a94a6;
    font-size: 12px;
}

/* ===================
   BOOKING / SEARCH BAR
=================== */
.search-bar-wrapper {
    margin-top: -52px;
    position: relative;
    z-index: 15;
}

.booking-box {
    background: #fff;
    border-radius: 60px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, .12);
    padding: 6px 6px 6px 0;
    max-width: 1050px;
    margin: 0 auto;
    display: flex;
    align-items: stretch;
}

/* Each field segment */
.booking-field {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 14px 20px;
    border-right: 1.5px solid #e8ecf3;
    cursor: pointer;
    border-radius: 0;
    transition: background .2s;
    position: relative;
}

.booking-field:first-child {
    padding-left: 28px;
    border-radius: 60px 0 0 60px;
}

.booking-field:hover {
    background: #f7f9fc;
}

.booking-field .field-icon {
    font-size: 20px;
    color: #8a94a6;
    margin-right: 12px;
    flex-shrink: 0;
}

.booking-field .field-label {
    font-size: 10.5px;
    font-weight: 600;
    color: #8a94a6;
    text-transform: uppercase;
    letter-spacing: .6px;
    display: block;
    margin-bottom: 2px;
}

.booking-field .field-value {
    font-size: 15px;
    font-weight: 700;
    color: #0d2a5e;
    display: block;
}

.booking-field .field-arrow {
    font-size: 11px;
    color: #8a94a6;
    margin-left: auto;
    flex-shrink: 0;
}

/* Explore button wrapper */
.booking-btn-wrap {
    padding: 6px 8px 6px 8px;
    flex-shrink: 0;
}

.explore-btn {
    background: var(--primary);
    border: none;
    color: #0d2a5e;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 50px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: background .25s, transform .2s;
    cursor: pointer;
    height: 100%;
}

.explore-btn:hover {
    background: #e9a810;
    transform: translateY(-1px);
}

.explore-btn .btn-arrow-circle {
    width: 26px;
    height: 26px;
    border-radius: 50%;
    border: 2px solid rgba(13, 42, 94, .35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

/* Dropdown inside booking */
.booking-field .dropdown-menu {
    min-width: 180px;
    top: calc(100% + 10px);
    left: 0;
}

/* ===================
   DESTINATIONS SECTION
=================== */
.destination-section {
    padding: 90px 0 70px;
    background: #fff;
}

/* Section header */
.section-label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.section-label svg {
    flex-shrink: 0;
}

.section-heading {
    font-size: 36px;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 0;
}

/* Destination Cards */
.destination-card {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    background: #000;
    transition: transform .3s, box-shadow .3s;
}

.destination-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, .18) !important;
}

.destination-card>img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    transition: transform .55s ease;
    opacity: .88;
    display: block;
}

.destination-card:hover>img {
    transform: scale(1.06);
}

/* Dark gradient overlay */
.destination-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, .82) 0%,
            rgba(0, 0, 0, .30) 45%,
            rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
    z-index: 1;
}

/* Card content */
.dest-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 20px 18px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    z-index: 2;
}

.dest-content h4 {
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 2px;
    line-height: 1.2;
}

.dest-content p {
    color: rgba(255, 255, 255, .65);
    font-size: 13px;
    font-weight: 500;
    margin: 0;
}

.arrow-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0;
    transition: background .25s, transform .25s;
    box-shadow: 0 4px 12px rgba(253, 187, 45, .40);
}

.destination-card:hover .arrow-btn {
    background: #fff;
    transform: translateX(4px);
}

/* ===================
   STATS BAR
=================== */
.stats-bar {
    background: #fafbfe;
    border: 1.5px solid #eff1f8;
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 28px 40px;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
}

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

.stat-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: #fff8e6;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon-wrap i {
    font-size: 22px;
    color: var(--primary);
}

.stat-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: #0d2a5e;
    margin-bottom: 1px;
}

.stat-item p {
    font-size: 13px;
    color: #8a94a6;
    font-weight: 500;
    margin: 0;
}

.stat-divider {
    width: 1.5px;
    height: 48px;
    background: #e2e8f4;
    border-radius: 2px;
    flex-shrink: 0;
}

/* ===================
   MOBILE OFFCANVAS
=================== */
.offcanvas {
    width: 300px;
}

.offcanvas .nav-link {
    padding: 12px 0 !important;
    font-size: 16px;
    border-bottom: 1px solid #f1f3f8;
    margin: 0 !important;
}

.offcanvas .nav-link::after {
    display: none;
}

/* ===================
   RESPONSIVE
=================== */
@media (max-width: 1400px) {
    .hero-title strong {
        font-size: 82px;
    }

    .hero-subtitle {
        font-size: 46px;
    }
}

@media (max-width: 1200px) {
    .hero-title span {
        font-size: 36px;
    }

    .hero-title strong {
        font-size: 70px;
        letter-spacing: -2px;
    }

    .hero-subtitle {
        font-size: 40px;
    }

    .trust-card {
        right: 16px;
        bottom: 20px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        padding-top: 110px;
        padding-bottom: 130px;
        min-height: auto;
    }

    .hero-overlay {
        background: linear-gradient(90deg,
                rgba(4, 25, 60, .95) 0%,
                rgba(4, 25, 60, .82) 100%);
    }

    .hero-title span {
        font-size: 30px;
    }

    .hero-title strong {
        font-size: 58px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 36px;
    }

    .hero-text {
        font-size: 15px;
    }

    .trust-card {
        display: none !important;
    }

    /* Search bar — stacked on tablet */
    .booking-box {
        flex-direction: column;
        border-radius: 24px;
        padding: 8px;
    }

    .booking-field {
        border-right: none;
        border-bottom: 1.5px solid #e8ecf3;
        border-radius: 0 !important;
        padding: 14px 16px;
    }

    .booking-field:first-child {
        border-radius: 16px 16px 0 0 !important;
    }

    .booking-btn-wrap {
        padding: 6px 8px;
    }

    .explore-btn {
        width: 100%;
        justify-content: center;
        border-radius: 16px !important;
    }

    .search-bar-wrapper {
        margin-top: -30px;
    }
}

@media (max-width: 768px) {
    .hero-title span {
        font-size: 24px;
    }

    .hero-title strong {
        font-size: 46px;
        letter-spacing: -1px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .hero-features {
        gap: 14px;
    }

    .feature {
        font-size: 12px;
    }

    .destination-section {
        padding: 60px 0 40px;
    }

    .destination-card>img {
        height: 270px;
    }

    .stats-bar {
        border-radius: 24px;
        flex-direction: column;
        align-items: flex-start;
        padding: 24px 28px;
    }

    .stat-divider {
        width: 100%;
        height: 1.5px;
    }

    .section-heading {
        font-size: 28px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 95px;
        padding-bottom: 110px;
    }

    .hero-title strong {
        font-size: 38px;
    }

    .hero-subtitle {
        font-size: 26px;
    }

    .feature {
        width: 45%;
    }
}

/* ===================
   WHY TRAVEL WITH US
=================== */
.why-section {
    padding: 90px 0 80px;
    background: #f9f9f6;
}

.why-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.why-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 14px;
    line-height: 1.2;
}

.why-cursive {
    font-family: 'Dancing Script', cursive;
    font-style: normal;
    font-size: 42px;
    font-weight: 700;
    color: var(--primary);
}

.why-underline {
    width: 55px;
    height: 3px;
    background: var(--primary);
    border-radius: 2px;
    margin: 0 auto;
}

/* Why Card */
.why-card {
    background: #fff;
    border: 1.5px solid #eef0f7;
    border-radius: 18px;
    padding: 32px 18px 26px;
    height: 100%;
    transition: transform .28s, box-shadow .28s, border-color .28s;
}

.why-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(13, 42, 94, .09);
    border-color: #e2e9f8;
}

.why-icon-wrap {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background: #fff8e6;
    border: 1.5px solid #ffe4a0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    font-size: 24px;
    color: var(--primary);
    transition: background .25s;
}

.why-card:hover .why-icon-wrap {
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.why-card h5 {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
    line-height: 1.35;
}

.why-card p {
    font-size: 12.5px;
    color: #7a8599;
    line-height: 1.65;
    margin: 0;
}

/* ===================
   CTA BANNER
=================== */
.cta-banner {
    position: relative;
    overflow: hidden;
    padding: 56px 0;
    background: #081c3a;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(8, 28, 58, .15);
}

/* Mountain photo — visible RIGHT half, fading left */
.cta-bg-img {
    position: absolute;
    inset: 0;
    /* Place image on the right ~55% of the banner */
    background: url('../images/cta-banner.webp') right center / cover no-repeat;
    z-index: 0;
    /* Mask: left side stays dark, right side shows photo */
    -webkit-mask-image: linear-gradient(90deg,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, .3) 45%,
            rgba(0, 0, 0, .75) 62%,
            black 80%);
    mask-image: linear-gradient(90deg,
            transparent 0%,
            transparent 30%,
            rgba(0, 0, 0, .3) 45%,
            rgba(0, 0, 0, .75) 62%,
            black 80%);
}

/* Extra darkening layer so text remains readable */
.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg,
            rgba(8, 28, 58, 1.0) 0%,
            rgba(8, 28, 58, .95) 30%,
            rgba(8, 28, 58, .65) 55%,
            rgba(8, 28, 58, .25) 80%,
            rgba(8, 28, 58, .10) 100%);
    z-index: 1;
}

.cta-tag {
    font-size: 11.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .65);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.cta-title {
    font-family: 'Dancing Script', cursive;
    font-size: 46px;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.1;
    margin-bottom: 14px;
}

.cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, .72);
    line-height: 1.65;
    margin: 0;
    max-width: 320px;
}

/* CTA Badges */
.cta-divider {
    width: 1.5px;
    height: 40px;
    background: rgba(255, 255, 255, .15);
    border-radius: 2px;
}

.cta-badge {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.cta-badge-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid rgba(255, 255, 255, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: var(--primary);
    flex-shrink: 0;
    background: rgba(255, 255, 255, .06);
    transition: background .22s, border-color .22s;
}

.cta-badge:hover .cta-badge-icon {
    background: rgba(253, 187, 45, .15);
    border-color: var(--primary);
}

.cta-badge span {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .85);
    line-height: 1.45;
}

/* CTA Button */
.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    background: var(--primary);
    color: #0d2a5e;
    font-weight: 700;
    font-size: 15px;
    padding: 16px 28px;
    border-radius: 50px;
    transition: background .25s, transform .22s;
    white-space: nowrap;
}

.cta-btn:hover {
    background: #e9a818;
    color: #0d2a5e;
    transform: translateY(-2px);
}

.cta-btn-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid rgba(13, 42, 94, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
}

/* ===================
   TESTIMONIALS
=================== */
.testimonials-section {
    padding: 90px 0 80px;
    background: #fff;
}

.testi-label {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--primary);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.testi-heading {
    font-size: 34px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 10px;
}

.testi-heart {
    font-size: 20px;
    color: #e0c8f0;
    margin-top: 4px;
}

/* Slider */
.testi-slider-wrap {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testi-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    flex: 1;
    overflow: hidden;
}

/* Arrow buttons */
.testi-arrow {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1.5px solid #dde3ef;
    background: #fff;
    color: var(--secondary);
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background .22s, color .22s, border-color .22s;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .07);
}

.testi-arrow:hover {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

/* Individual card */
.testi-card {
    background: #f8f9fd;
    border: 1.5px solid #eef0f8;
    border-radius: 18px;
    padding: 24px 22px 20px;
    position: relative;
    transition: transform .25s, box-shadow .25s;
}

.testi-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(13, 42, 94, .1);
}

.testi-stars {
    color: var(--primary);
    font-size: 14px;
    display: flex;
    gap: 3px;
    margin-bottom: 10px;
}

.testi-quote {
    position: absolute;
    top: 16px;
    right: 20px;
    font-size: 52px;
    color: #e8ecf6;
    font-family: Georgia, serif;
    line-height: 1;
    user-select: none;
}

.testi-text {
    font-size: 13.5px;
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 18px;
    position: relative;
    z-index: 1;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 14px;
    border-top: 1.5px solid #eef0f8;
}

.testi-author img {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #fff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .12);
}

.testi-author strong {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--secondary);
}

.testi-author span {
    font-size: 12px;
    color: #8a94a6;
}

/* ===================
   NEWSLETTER
=================== */
/* ===================
   NEWSLETTER
=================== */
.newsletter-section {
    padding: 0 0 80px;
    background: #f9f9f6;
}

.nl-img-item {
    transition: filter 0.3s ease;
}

.nl-img-item:hover {
    filter: brightness(1.1);
}

.nl-form input:focus {
    box-shadow: 0 0 0 3px rgba(253, 187, 45, 0.3) !important;
}

.nl-submit-hover {
    transition: background .2s, transform .2s;
}

.nl-submit-hover:hover {
    background: #e9a818 !important;
    transform: translateY(-1px);
}

/* ===================
   NEW SECTION RESPONSIVE
=================== */
@media (max-width: 1200px) {
    .testi-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .why-cursive {
        font-size: 36px;
    }
}

@media (max-width: 992px) {
    .why-section {
        padding: 60px 0 50px;
    }

    .cta-banner {
        padding: 44px 0;
    }

    .cta-bg-img {
        -webkit-mask-image: linear-gradient(90deg,
                transparent 0%, transparent 20%,
                rgba(0, 0, 0, .4) 38%, rgba(0, 0, 0, .8) 60%, black 80%);
        mask-image: linear-gradient(90deg,
                transparent 0%, transparent 20%,
                rgba(0, 0, 0, .4) 38%, rgba(0, 0, 0, .8) 60%, black 80%);
    }

    .cta-btn {
        margin-top: 10px;
    }

    .testimonials-section {
        padding: 60px 0 50px;
    }

    .newsletter-images {
        display: none;
    }

    .newsletter-left {
        padding: 44px 30px 44px;
    }

    .nl-plane {
        left: 30px;
    }

    .why-heading {
        font-size: 28px;
    }

    .testi-heading {
        font-size: 28px;
    }

    .cta-title {
        font-size: 38px;
    }
}

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

    .testi-slider-wrap {
        gap: 10px;
    }

    .why-heading {
        font-size: 24px;
    }

    .why-cursive {
        font-size: 30px;
    }
}

@media (max-width: 576px) {
    .newsletter-left {
        padding: 36px 20px 52px;
    }

    .nl-form {
        flex-direction: column;
        align-items: stretch;
    }

    .nl-form button {
        justify-content: center;
    }

    .cta-title {
        font-size: 32px;
    }

    .testi-arrow {
        display: none;
    }

    .testi-cards {
        overflow-x: auto;
        grid-template-columns: 280px;
    }
}

.cursive-text {
    font-family: 'Dancing Script', cursive;
    color: #FDBB2D;
    font-weight: 700;
}

/* Experiences Section */
.exp-card {
    height: 360px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    background: #000;
}
.exp-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    z-index: 2;
    pointer-events: none;
}
.exp-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(8, 28, 58, 0.15);
}
.exp-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
    opacity: 0.9;
}
.exp-card:hover img {
    transform: scale(1.12);
    opacity: 1;
}
.exp-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 85%;
    background: linear-gradient(to top, rgba(8, 28, 58, 0.95) 0%, rgba(8, 28, 58, 0.6) 45%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px 20px;
    color: white;
    z-index: 1;
}
.exp-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: #FDBB2D;
    font-size: 18px;
    transition: all 0.4s ease;
}
.exp-card:hover .exp-icon {
    transform: translateY(-5px) scale(1.1);
    background: #FDBB2D;
    color: #081c3a;
    border-color: #FDBB2D;
    box-shadow: 0 5px 15px rgba(253, 187, 45, 0.4);
}
.exp-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 8px;
    letter-spacing: -0.3px;
    transition: color 0.3s ease;
}
.exp-card:hover .exp-title {
    color: #FDBB2D;
}
.exp-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.85);
    line-height: 1.5;
    margin-bottom: 0;
    opacity: 0.9;
    transform: translateY(0);
    transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Quiz Section */
.quiz-section {
    background-color: #FFFDF7;
    border-radius: 20px;
    padding: 50px;
    position: relative;
    overflow: hidden;
}
.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    height: 100%;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    text-align: center;
    transition: transform 0.3s;
}
.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.info-icon-wrapper {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #FEF6E6;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px auto;
}
.info-icon-wrapper img {
    width: 24px;
}
.info-title {
    font-size: 16px;
    font-weight: 700;
    color: #081c3a;
    margin-bottom: 10px;
}
.info-desc {
    font-size: 13px;
    color: #6c757d;
    line-height: 1.5;
}

/* Newsletter Block */
.newsletter-block {
    background-color: #081c3a;
    border-radius: 20px;
    padding: 40px 50px;
    position: relative;
    overflow: hidden;
    margin-bottom: 0;
}
.nl-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid #FDBB2D;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 24px;
    flex-shrink: 0;
}
.nl-icon-circle i {
    font-size: 24px;
    color: #FDBB2D;
}
.dotted-plane-nl {
    position: absolute;
    bottom: 20px;
    right: 50px;
    opacity: 0.6;
    pointer-events: none;
}

/* New Footer */
.main-footer {
    background-color: #06162d;
    color: white;
    padding: 60px 0 30px 0;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}
.footer-logo img {
    height: 35px;
}
.footer-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
}
.footer-logo-text span {
    color: #FDBB2D;
}
.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 24px;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    text-decoration: none;
    margin-right: 10px;
    transition: 0.3s;
}
.social-links a:hover {
    background-color: #FDBB2D;
    border-color: #FDBB2D;
    color: #081c3a;
}
.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}
.footer-links a:hover {
    color: #FDBB2D;
}
.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.footer-contact i {
    color: rgba(255,255,255,0.4);
    font-size: 16px;
    margin-top: 3px;
}

/* ====================================================
   PREMIUM MOBILE RESPONSIVE UPGRADES & POLISH
   ==================================================== */

/* 1. Mobile Horizontal Scroll Carousels */
@media (max-width: 768px) {
    .mobile-scroll-row {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        padding-bottom: 24px !important;
        margin-left: -15px !important;
        margin-right: -15px !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    .mobile-scroll-row::-webkit-scrollbar {
        display: none !important;
    }
    
    .mobile-scroll-row > [class*="col-"] {
        flex: 0 0 auto !important;
        width: 82% !important; /* Shows 82% of card, revealing the next slightly */
        scroll-snap-align: start !important;
    }
    
    /* Image height adjustment for swipe cards */
    .destination-card > img {
        height: 230px !important;
    }
    
    .pkg-img-wrap img {
        height: 190px !important;
    }
    
    .pkg-body {
        padding: 20px 16px !important;
    }
    
    .pkg-card {
        transform: none !important; /* Disable scale/hover translate on mobile to prevent jumpy scrolling */
    }
    .pkg-card:hover {
        transform: none !important;
        box-shadow: 0 4px 6px rgba(0,0,0,0.05) !important;
    }
}

/* 2. Premium Glassmorphic Offcanvas Menu */
.offcanvas {
    width: 290px !important;
    background: rgba(255, 255, 255, 0.92) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-left: 1px solid rgba(13, 42, 94, 0.08) !important;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05) !important;
}

.offcanvas-header {
    border-bottom: 1px solid rgba(13, 42, 94, 0.06) !important;
    padding: 20px 24px !important;
}

.offcanvas-body {
    padding: 24px !important;
}

.offcanvas .nav-link {
    color: var(--secondary) !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(13, 42, 94, 0.04) !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    margin: 0 !important;
}

.offcanvas .nav-link:hover, 
.offcanvas .nav-link.active {
    color: var(--primary) !important;
    padding-left: 8px !important;
}

.offcanvas .nav-link::after {
    content: '\f054' !important;
    font-family: 'Font Awesome 6 Free' !important;
    font-weight: 900 !important;
    font-size: 10px !important;
    opacity: 0.3 !important;
    transition: transform 0.3s ease, opacity 0.3s ease !important;
}

.offcanvas .nav-link:hover::after, 
.offcanvas .nav-link.active::after {
    transform: translateX(4px) !important;
    opacity: 1 !important;
    color: var(--primary) !important;
}

/* 3. Mobile Hero Section Scaling & 2x2 Feature Badges */
@media (max-width: 576px) {
    .hero-section {
        padding-top: 105px !important;
        padding-bottom: 80px !important;
        background-position: 72% center !important;
    }
    
    .hero-title {
        line-height: 1.15 !important;
    }
    
    .hero-title span {
        font-size: 20px !important;
        letter-spacing: 1.5px !important;
    }
    
    .hero-title strong {
        font-size: 38px !important;
        letter-spacing: -0.5px !important;
        margin-top: 4px !important;
        line-height: 1.0 !important;
    }
    
    .hero-subtitle {
        font-size: 24px !important;
        margin-top: 8px !important;
        margin-bottom: 12px !important;
    }
    
    .hero-text {
        font-size: 13.5px !important;
        line-height: 1.55 !important;
        margin-bottom: 24px !important;
    }
    
    .hero-features {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 12px !important;
        margin-top: 24px !important;
    }
    
    .feature {
        width: 100% !important;
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        padding: 10px 12px !important;
        border-radius: 12px !important;
        gap: 8px !important;
        font-size: 11px !important;
        line-height: 1.35 !important;
    }
    
    .feature-icon {
        width: 30px !important;
        height: 30px !important;
        font-size: 12px !important;
        background: rgba(253, 187, 45, 0.1) !important;
        border-color: var(--primary) !important;
        color: var(--primary) !important;
    }
}

/* 4. Booking Search Bar Optimization */
@media (max-width: 992px) {
    .booking-box {
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border: 1px solid rgba(8, 28, 58, 0.06) !important;
        border-radius: 24px !important;
        padding: 12px !important;
        box-shadow: 0 15px 35px rgba(8, 28, 58, 0.1) !important;
    }
    
    .booking-field {
        border-bottom: 1px solid #f0f3f8 !important;
        padding: 12px 8px !important;
        transition: background 0.2s ease !important;
    }
    
    .booking-field:last-of-type {
        border-bottom: none !important;
    }
    
    .booking-field:hover {
        background: rgba(13, 42, 94, 0.02) !important;
        border-radius: 12px !important;
    }
    
    .explore-btn {
        padding: 14px !important;
        font-size: 14.5px !important;
        border-radius: 14px !important;
        margin-top: 8px !important;
    }
}

/* 5. Stats Bar Compact 2x2 Grid */
@media (max-width: 768px) {
    .stats-bar {
        display: grid !important;
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
        border-radius: 20px !important;
        padding: 20px !important;
        background: #fafbfe !important;
        border: 1px solid #eff1f8 !important;
    }
    
    .stat-item {
        gap: 10px !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
    }
    
    .stat-icon-wrap {
        width: 44px !important;
        height: 44px !important;
        border-radius: 10px !important;
        margin: 0 !important;
    }
    
    .stat-icon-wrap i {
        font-size: 18px !important;
    }
    
    .stat-item h4 {
        font-size: 16px !important;
        margin-top: 4px !important;
    }
    
    .stat-item p {
        font-size: 11px !important;
        margin: 0 !important;
    }
    
    .stat-divider {
        display: none !important;
    }
}

/* 6. Connected Process Timeline ("How It Works") */
@media (max-width: 992px) {
    .how-it-works-section .row {
        flex-direction: column !important;
        align-items: stretch !important;
        text-align: left !important;
        padding-left: 20px !important;
        position: relative !important;
    }
    
    .how-it-works-section .row::before {
        content: '' !important;
        position: absolute !important;
        top: 20px !important;
        bottom: 20px !important;
        left: 48px !important;
        width: 2px !important;
        border-left: 2px dashed var(--primary) !important;
        z-index: 0 !important;
        opacity: 0.4 !important;
    }
    
    .how-it-works-section [class*="col-"] {
        display: flex !important;
        align-items: flex-start !important;
        gap: 16px !important;
        margin-bottom: 24px !important;
        z-index: 1 !important;
        width: 100% !important;
    }
    
    .how-it-works-section .icon-circle {
        width: 56px !important;
        height: 56px !important;
        flex-shrink: 0 !important;
        margin: 0 !important;
    }
    
    .how-it-works-section .icon-circle i {
        font-size: 20px !important;
    }
    
    .how-it-works-section .step-num {
        top: 40px !important;
        left: 42px !important;
        transform: none !important;
        width: 18px !important;
        height: 18px !important;
        font-size: 9px !important;
    }
    
    .how-it-works-section h5 {
        margin-top: 0 !important;
        margin-bottom: 4px !important;
        font-size: 14.5px !important;
        text-align: left !important;
    }
    
    .how-it-works-section p {
        margin: 0 !important;
        text-align: left !important;
        font-size: 12.5px !important;
    }
    
    .how-it-works-section .row > div > div:last-child {
        flex-grow: 1 !important;
    }
}

/* 7. Newsletter Full-Width Card Fix on Mobile */
@media (max-width: 992px) {
    .newsletter-section {
        padding-bottom: 40px !important;
    }
    
    .newsletter-banner {
        height: auto !important;
        flex-direction: column !important;
        background: #081c3a !important;
        border-radius: 20px !important;
    }
    
    .nl-bg-shape {
        width: 100% !important;
        clip-path: none !important;
        border-radius: 20px !important;
    }
    
    .nl-content {
        width: 100% !important;
        padding: 36px 20px !important;
    }
    
    .nl-heading {
        font-size: 24px !important;
        text-align: center !important;
        color: #fff !important;
    }
    
    .nl-desc {
        text-align: center !important;
        margin-bottom: 20px !important;
        font-size: 13px !important;
        color: rgba(255,255,255,0.8) !important;
    }
    
    .nl-content .row {
        padding: 0 !important;
        text-align: center !important;
    }
    
    .nl-content .col-lg-7 {
        padding-left: 0 !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .nl-content .d-flex {
        justify-content: center !important;
        width: 100% !important;
    }
}

/* 8. Experiences, Quiz, and Footer Polish */
@media (max-width: 768px) {
    .section-heading {
        font-size: 24px !important;
    }
    
    .section-label {
        font-size: 11px !important;
        gap: 8px !important;
    }
    
    .section-label svg {
        width: 20px !important;
        height: 10px !important;
    }
    
    .exp-card {
        height: 280px !important;
    }
    
    .exp-title {
        font-size: 16px !important;
    }
    
    .exp-desc {
        font-size: 12px !important;
    }
    
    .exp-overlay {
        padding: 16px 14px !important;
        height: 100% !important;
    }
    
    .exp-icon {
        width: 36px !important;
        height: 36px !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }
    
    .partners-section .bg-white {
        justify-content: center !important;
        text-align: center !important;
        padding: 20px !important;
    }
    
    .partners-section .d-flex {
        justify-content: center !important;
    }
    
    .quiz-section {
        padding: 30px 20px !important;
    }
    
    .quiz-section h3 {
        font-size: 22px !important;
        text-align: center !important;
    }
    
    .quiz-section p {
        text-align: center !important;
        font-size: 13.5px !important;
    }
    
    .quiz-section .btn {
        display: flex !important;
        justify-content: center !important;
        margin: 0 auto !important;
    }
    
    .main-footer {
        padding: 40px 0 20px !important;
        text-align: center !important;
    }
    
    .footer-logo {
        justify-content: center !important;
    }
    
    .footer-contact li {
        justify-content: center !important;
        text-align: center !important;
        flex-direction: column !important;
        gap: 4px !important;
    }
    
    .footer-contact i {
        margin-top: 0 !important;
    }
    
    .social-links {
        margin-bottom: 24px !important;
    }
    
    /* Why choose us 2 column grid on small screens */
    .why-section #why-cards .col-sm-6 {
        width: 50% !important;
    }
    
    .why-card {
        padding: 20px 12px 16px !important;
    }
    
    .why-card h5 {
        font-size: 13px !important;
        margin-bottom: 6px !important;
    }
    
    .why-card p {
        font-size: 11px !important;
        line-height: 1.4 !important;
    }
    
    .why-icon-wrap {
        width: 48px !important;
        height: 48px !important;
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }

    /* Force Testimonials to Swipe on Mobile (Bypass JS Hiding Cards) */
    #testi-cards {
        display: flex !important;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        -webkit-overflow-scrolling: touch !important;
        gap: 16px !important;
        padding: 10px 0 !important;
        margin: 0 !important;
    }
    


    



    #testi-cards .testi-card {
        display: flex !important;
        flex-direction: column !important;
        flex: 0 0 85% !important;
        scroll-snap-align: start !important;
        margin: 0 !important;
    }
    .testi-slider-wrap .testi-arrow {
        display: none !important;
    }
}

/* ====================================================
   ENQUIRY MODAL & HERO FORM PREMIUM STYLING
   ==================================================== */

.modal-backdrop {
    background-color: #040e1e !important;
}

.modal-backdrop.show {
    opacity: 0.75 !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

#enquiryModal .modal-content {
    background: transparent !important;
}

#enquiryModal .form-control,
#enquiryModal .form-select {
    background-color: #f8fafc !important;
    border: 1.5px solid #e2e8f0 !important;
    color: #1e293b !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
}

#enquiryModal .form-control:focus,
#enquiryModal .form-select:focus {
    background-color: #ffffff !important;
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 3px rgba(253, 187, 45, 0.25) !important;
    outline: 0 !important;
}

/* Disk space write test */

#enquiryModal .btn-close {
    background-color: #f1f5f9 !important;
    border-radius: 50% !important;
    padding: 8px !important;
    font-size: 11px !important;
    opacity: 0.8 !important;
    transition: all 0.2s ease !important;
}

#enquiryModal .btn-close:hover {
    background-color: #e2e8f0 !important;
    transform: rotate(90deg) !important;
    opacity: 1 !important;
}

/* Modal form validation style updates */
#enquiryModal .form-control.is-invalid,
#enquiryModal .form-select.is-invalid,
.hero-enquiry-card .form-control.is-invalid,
.hero-enquiry-card .form-select.is-invalid {
    border-color: #ef4444 !important;
    background-image: none !important;
}

#enquiryModal .form-control.is-valid,
#enquiryModal .form-select.is-valid,
.hero-enquiry-card .form-control.is-valid,
.hero-enquiry-card .form-select.is-valid {
    border-color: #10b981 !important;
    background-image: none !important;
}

/* Success Checkmark Animation */
.success-icon-wrap {
    animation: scaleUp 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes scaleUp {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ==========================================================================
   PREMIUM GLASSMORPHIC HERO ENQUIRY CARD STYLES
   ========================================================================== */
.hero-enquiry-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(253, 187, 45, 0.08) 0%, transparent 60%);
    pointer-events: none;
    z-index: 0;
}

/* Custom form container / icon styling */
.form-group-custom {
    position: relative;
    width: 100%;
}

.form-group-custom .input-icon-custom {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255, 255, 255, 0.45);
    font-size: 14px;
    transition: color 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

/* Custom glassmorphic controls */
.form-control-custom,
.form-select-custom {
    width: 100%;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    color: #ffffff !important;
    transition: all 0.3s ease !important;
}

/* Custom placeholders */
.form-control-custom::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

.form-control-custom::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: 0.55;
    cursor: pointer;
}

/* Input Focus Glow */
.form-control-custom:focus,
.form-select-custom:focus {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: #FDBB2D !important;
    box-shadow: 0 0 14px rgba(253, 187, 45, 0.35) !important;
    color: #ffffff !important;
    outline: none;
}

.form-group-custom:focus-within .input-icon-custom {
    color: #FDBB2D !important;
}

/* Dropdown styling */
.form-select-custom {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='rgba(255, 255, 255, 0.6)' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e") !important;
    background-repeat: no-repeat !important;
    background-position: right 16px center !important;
    background-size: 11px 11px !important;
}

.form-select-custom option {
    background: #081c3a !important;
    color: #ffffff !important;
}

/* Premium Gold Glow button hover */
.btn-glow-custom {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-glow-custom::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-glow-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(253, 187, 45, 0.55) !important;
}

.btn-glow-custom:hover::after {
    opacity: 1;
}

.btn-glow-custom:active {
    transform: translateY(0);
}

/* Custom Valid / Invalid States */
.form-group-custom .form-control-custom.is-invalid,
.form-group-custom .form-select-custom.is-invalid {
    border-color: #ef4444 !important;
    box-shadow: 0 0 10px rgba(239, 68, 68, 0.3) !important;
}

.form-group-custom .form-control-custom.is-valid,
.form-group-custom .form-select-custom.is-valid {
    border-color: #10b981 !important;
    box-shadow: 0 0 10px rgba(16, 185, 129, 0.15) !important;
}

/* ==========================================================================
   GOOGLE REVIEWS TRUST RIBBON STYLES
   ========================================================================== */
.reviews-trust-bar-wrapper {
    margin-top: -38px;
    position: relative;
    z-index: 15;
}

.reviews-trust-box {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 32px rgba(8, 28, 58, 0.08);
    border: 1px solid rgba(8, 28, 58, 0.04);
    padding: 16px 28px;
    transition: all 0.3s ease;
}

.review-item-mini {
    transition: transform 0.25s ease;
}

.review-item-mini:hover {
    transform: translateY(-2px);
}

.google-badge-icon {
    box-shadow: 0 6px 16px rgba(66, 133, 244, 0.12);
}

/* Mobile swipe snapping structure for Google Reviews Ribbon */
@media (max-width: 992px) {
    .reviews-trust-bar-wrapper {
        margin-top: -24px;
        padding: 0 12px;
    }
    
    .reviews-trust-box {
        flex-wrap: nowrap !important;
        overflow-x: auto;
        justify-content: flex-start !important;
        gap: 20px !important;
        padding: 14px 20px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;
        scroll-snap-type: x mandatory;
    }
    
    .reviews-trust-box::-webkit-scrollbar {
        display: none;
    }
    
    .reviews-trust-box > * {
        flex-shrink: 0;
        scroll-snap-align: start;
    }
    
    .reviews-trust-box .vr {
        display: block !important;
        height: 32px;
        align-self: center;
        opacity: 0.15;
    }
    
    .review-item-mini {
        max-width: 250px;
    }
}

/* ==========================================================================
   STICKY BOTTOM MOBILE ACTION BAR & PULSING DESKTOP HOOKS
   ========================================================================== */
@media (max-width: 768px) {
    body {
        padding-bottom: 64px !important;
    }
    
    .floating-actions {
        display: none !important;
    }
    
    .mobile-sticky-footer {
        box-shadow: 0 -6px 20px rgba(8, 28, 58, 0.12) !important;
        background: rgba(255, 255, 255, 0.97) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        animation: slideUpSticky 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }
}

@keyframes slideUpSticky {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Pulsing accent ring on the floating desktop WhatsApp button */
.floating-actions a[aria-label="Chat on WhatsApp"]::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 4px solid #25D366;
    animation: pulseRing 1.8s infinite ease-out;
    z-index: -1;
    pointer-events: none;
}

@keyframes pulseRing {
    0% {
        transform: scale(1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}


