    :root {
        --theme1: #1e3564;
        --theme-dk: #0E2A47;
        --amber: #c8760a;
        --amber-lt: #f8a30f;
        --cream: #f4f2fd;
        --cream2: #e8e9f7;
        --border: #cac4e2;
        --txt: #2d2d2d;
        --muted: #777;
        --dark: #1a1212;
    }

    * {
        box-sizing: border-box;
        margin: 0;
        padding: 0
    }

    body {
        font-family: 'Poppins', sans-serif;
        color: var(--txt);
        background: #fff;
        font-size: 14px;
        overflow-x: hidden
    }

    .text-theme1 {
        color: var(--theme1);
    }

    a {
        text-decoration: none
    }

    img {
        max-width: 100%;
        display: block
    }

    /* ═══ TOP BAR ═══ */
    .topbar {
        background: var(--theme-dk);
        padding: 6px 0;
        font-size: 12px;
        color: #ffffff
    }

    .topbar a {
        color: #ffffff;
        font-size: 11.5px;
        display: inline-flex;
        align-items: center;
        gap: 4px
    }

    .topbar a:hover {
        color: #fff
    }

    .soc-icon {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        border: 1px solid #ffffff;
        border-radius: 50%;
        color: #ffffff;
        font-size: 11px;
        transition: .2s
    }

    .soc-icon:hover {
        background: var(--amber);
        border-color: var(--amber);
        color: #fff
    }

    /* ═══ NAVBAR ═══ */
    .main-nav {
        background: #fff;
        box-shadow: 0 1px 8px rgba(0, 0, 0, .1);
        padding: 0;
        position: sticky;
        top: 0;
        z-index: 1000
    }

    .nav-inner {
        display: flex;
        align-items: center;
        min-height: 64px;
        gap: 16px;
        flex-wrap: nowrap
    }

    .logo-wrap {
        display: flex;
        align-items: center;
        gap: 9px;
        flex-shrink: 0
    }

    .logo-svg {
        width: 44px;
        height: 44px;
        flex-shrink: 0
    }

    .logo-brand {
        font-family: 'Playfair Display', serif;
        font-size: 18px;
        font-weight: 800;
        color: var(--theme1);
        line-height: 1;
        letter-spacing: .5px
    }

    .logo-brand span {
        color: var(--amber)
    }

    .logo-tag {
        font-size: 9px;
        color: var(--amber);
        letter-spacing: 2px;
        text-transform: uppercase;
        font-weight: 500
    }

    .nav-links {
        display: flex;
        align-items: center;
        gap: 0;
        list-style: none;
        margin: 0;
        padding: 0
    }

    .nav-links li a {
        font-size: 13px;
        font-weight: 500;
        color: #333;
        padding: 14px;
        display: block;
        border-bottom: 2px solid transparent;
        transition: .2s;
        white-space: nowrap
    }

    .nav-links li a:hover,
    .nav-links li a.active {
        color: var(--theme1)
    }

    .nav-links li a.active {
        border-bottom-color: var(--theme1)
    }

    .btn-enq {
        background: var(--theme1);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 9px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        white-space: nowrap;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: .2s;
        flex-shrink: 0
    }

    .btn-enq:hover {
        background: var(--theme-dk)
    }

    /* hamburger */
    .nav-toggle {
        background: none;
        border: 1.5px solid var(--border);
        border-radius: 4px;
        padding: 5px 8px;
        cursor: pointer;
        display: none;
        color: var(--theme1);
        font-size: 20px
    }

    .mobile-menu {
        display: none;
        background: #fff;
        border-top: 1px solid var(--border);
        padding: 8px 0;
    }

    /* Normal Links */
    .mobile-menu a {
        display: block;
        padding: 11px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--txt);
        text-decoration: none;
        border-bottom: 1px solid #f5f0ea;
    }

    .mobile-menu a:hover,
    .mobile-menu a.active {
        color: var(--theme1);
        background: var(--cream);
    }

    /* Dropdown Wrapper */
    .mobile-dropdown {
        border-bottom: 1px solid #f5f0ea;
    }

    /* Dropdown Button */
    .mobile-dropdown-btn {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 11px 20px;
        font-size: 14px;
        font-weight: 500;
        color: var(--txt);
        background: transparent;
        border: 0;
        cursor: pointer;
        text-align: left;
    }

    .mobile-dropdown-btn:hover {
        color: var(--theme1);
        background: var(--cream);
    }

    /* Arrow */
    .mobile-dropdown-btn i {
        font-size: 12px;
        transition: .3s ease;
    }

    /* Sub Menu */
    .mobile-submenu {
        display: none;
        background: #fafafa;
    }

    .mobile-submenu a {
        padding: 10px 20px 10px 40px;
        font-size: 13px;
        font-weight: 400;
        color: #666;
        border-bottom: 1px solid #f1f1f1;
    }

    .mobile-submenu a:hover {
        color: var(--theme1);
        background: #fff;
    }

    /* Active Dropdown */
    .mobile-dropdown.active .mobile-submenu {
        display: block;
    }

    .mobile-dropdown.active .mobile-dropdown-btn i {
        transform: rotate(180deg);
    }

    /* Enquiry Button */
    .mobile-menu .btn-enq-mb {
        display: block;
        margin: 12px 20px 8px;
        padding: 11px;
        text-align: center;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 700;
        border: none;
    }


    /* ═══ HERO ═══ */
    .hero {
        position: relative;
        min-height: 480px;
        background: linear-gradient(90deg, rgba(15, 8, 5, .75) 0%, rgba(15, 8, 5, .5) 55%, rgba(15, 8, 5, .15) 100%),
            url('https://images.unsplash.com/photo-1537996194471-e657df975ab4?w=1400&q=80') center/cover no-repeat;
        display: flex;
        align-items: center;
        padding: 60px 0 150px
    }

    .hero-eyebrow {
        font-size: 14px;
        color: #ffffff;
        letter-spacing: 1px;
        display: flex;
        align-items: center;
        gap: 5px;
        margin-bottom: 12px
    }

    .hero h1 {
        font-size: clamp(26px, 5vw, 50px);
        color: #fff;
        line-height: 1.18;
        margin-bottom: 12px;
        font-weight: 800
    }

    .hero h1 span {
        color: var(--amber-lt)
    }

    .hero .sub {
        color: rgba(255, 255, 255, .82);
        font-size: 14px;
        max-width: 400px;
        line-height: 1.65;
        margin-bottom: 24px
    }

    .btn-hf {
        background: var(--theme1);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 12px 20px;
        font-size: 13.5px;
        font-weight: 600;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: .2s
    }

    .btn-hf:hover {
        background: var(--theme-dk)
    }

    .btn-ho {
        background: transparent;
        color: #fff;
        border: 1.5px solid rgba(255, 255, 255, .65);
        border-radius: 4px;
        padding: 11px 20px;
        font-size: 13.5px;
        font-weight: 500;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 7px;
        transition: .2s
    }

    .btn-ho:hover {
        background: rgba(255, 255, 255, .12)
    }

    /* ═══ SEARCH PANEL ═══ */
    .sp-wrap {
        margin-top: -80px;
        position: relative;
        z-index: 100
    }

    .sp-box {
        background: #fff;
        border-radius: 10px;
        box-shadow: 0 10px 50px rgba(0, 0, 0, .18);
        overflow: hidden
    }

    .sp-tabs {
        border-bottom: 1px solid var(--border);
        display: flex
    }

    .sp-tab {
        flex: 1;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        padding: 14px 6px;
        font-size: 12.5px;
        font-weight: 500;
        color: #666;
        cursor: pointer;
        border-bottom: 2px solid transparent;
        transition: .2s;
        white-space: nowrap
    }

    .sp-tab i {
        font-size: 15px
    }

    .sp-tab.active {
        color: var(--theme1);
        border-bottom-color: var(--theme1)
    }

    .sp-tab.active i {
        color: var(--theme1)
    }

    .sp-tab:hover {
        color: var(--theme1)
    }

    .sp-fields {
        display: flex;
        align-items: flex-end;
        gap: 10px;
        padding: 14px 16px;
        flex-wrap: nowrap
    }

    .sp-f {
        flex: 1;
        min-width: 0
    }

    .sp-f label {
        display: block;
        font-size: 10px;
        font-weight: 700;
        color: #555;
        text-transform: uppercase;
        letter-spacing: .6px;
        margin-bottom: 4px
    }

    .sp-f .fi {
        position: relative
    }

    .sp-f .fi input,
    .sp-f .fi select {
        width: 100%;
        border: 1px solid #ddd;
        border-radius: 4px;
        padding: 9px 10px;
        font-size: 12px;
        color: var(--txt);
        font-family: 'Poppins', sans-serif;
        outline: none;
        background: #fff;
        -webkit-appearance: none
    }

    .sp-f .fi input {
        padding-right: 28px
    }

    .sp-f .fi .ic {
        position: absolute;
        right: 8px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--theme1);
        font-size: 13px;
        pointer-events: none
    }

    .sp-f .fi input:focus,
    .sp-f .fi select:focus {
        border-color: var(--theme1)
    }

    .btn-srch {
        background: var(--theme1);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 9px 18px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 6px;
        transition: .2s;
        flex-shrink: 0;
        align-self: flex-end;
        height: 38px
    }

    .btn-srch:hover {
        background: var(--theme-dk)
    }

    /* ═══ TRUST STRIP ═══ */
    .trust-strip {
        background: var(--cream);
        border-top: 1px solid var(--border);
        border-bottom: 1px solid var(--border);
        padding: 14px 0
    }

    .ti-item {
        display: flex;
        align-items: flex-start;
        gap: 10px;
        padding: 4px 6px
    }

    .ti-item .ico {
        font-size: 24px;
        color: var(--theme1);
        flex-shrink: 0;
        margin-top: 1px
    }

    .ti-item h6 {
        font-size: 12.5px;
        font-weight: 600;
        margin-bottom: 1px
    }

    .ti-item p {
        font-size: 11px;
        color: var(--muted);
        margin: 0;
        line-height: 1.4
    }

    /* ═══ SECTION COMMONS ═══ */
    .sec {
        padding: 48px 0
    }

    .sec-bg {
        background: var(--cream2)
    }

    .sec-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 22px;
        flex-wrap: wrap;
        gap: 8px
    }

    .sec-lbl {
        font-size: 18px;
        font-weight: 600;
        color: var(--theme1);
        display: flex;
        align-items: center;
        gap: 5px
    }

    .sec-lbl::before,
    .sec-lbl::after {
        content: '–';
        color: var(--theme1)
    }

    .view-all {
        font-size: 12px;
        color: var(--theme1);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 3px;
        white-space: nowrap
    }

    .view-all:hover {
        color: var(--theme-dk)
    }

    .ornament {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        font-weight: 600;
        font-size: 15px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--theme1);
        margin-bottom: 6px
    }

    .ornament::before,
    .ornament::after {
        content: '';
        width: 28px;
        height: 1px;
        background: #ccc
    }

    /* ═══ DESTINATIONS ═══ */
    .dest-scroll {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px
    }

    .dest-scroll::-webkit-scrollbar {
        display: none
    }

    .dest-card {
        flex: 0 0 176px;
        border-radius: 10px;
        overflow: hidden;
        position: relative;
        aspect-ratio: .72;
        cursor: pointer
    }

    .dest-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .4s
    }

    .dest-card:hover img {
        transform: scale(1.07)
    }

    .dest-grad {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, .78) 0%, rgba(0, 0, 0, .08) 55%, transparent 100%)
    }

    .dest-info {
        position: absolute;
        bottom: 12px;
        left: 12px;
        color: #fff
    }

    .dest-info h5 {
        font-size: 15px;
        margin: 0;
        font-weight: 600;
        line-height: 1
    }

    .dest-info span {
        font-size: 11px;
        opacity: .85
    }

    .arr {
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: #fff;
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        cursor: pointer;
        color: var(--theme1);
        font-size: 14px;
        box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
        transition: .2s
    }

    .arr:hover {
        background: var(--theme1);
        color: #fff
    }



    /* =========================
   FEATURED PACKAGE SCROLL
========================= */

    .pkg-scroll {
        display: flex;
        gap: 16px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .pkg-scroll::-webkit-scrollbar {
        display: none;
    }

    .pkg-wrap {
        flex-shrink: 0;
    }

    /* Mobile - 1 Card */
    @media (max-width:767.98px) {
        .pkg-wrap {
            width: 85%;
        }
    }

    /* Tablet - 3 Cards */
    @media (min-width:768px) and (max-width:991.98px) {
        .pkg-wrap {
            width: calc((100% - 32px) / 2);
        }
    }

    /* Desktop - 4 Cards */
    @media (min-width:992px) {
        .pkg-wrap {
            width: calc((100% - 48px) / 4);
        }
    }

    /* =========================
   PACKAGE CARD
========================= */

    .pkg-card {
        border: 1px solid var(--border);
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        height: 100%;
    }

    .pkg-img {
        position: relative;
        overflow: hidden;
    }

    .pkg-img img {
        width: 100%;
        height: 190px;
        object-fit: cover;
    }

    .pkg-badge {
        position: absolute;
        top: 9px;
        left: 9px;
        font-size: 9px;
        font-weight: 800;
        text-transform: uppercase;
        letter-spacing: .6px;
        padding: 3px 8px;
        border-radius: 3px;
    }

    .b-best {
        background: #c0392b;
        color: #fff;
    }

    .b-pop {
        background: var(--amber);
        color: #fff;
    }

    .b-trend {
        background: #27ae60;
        color: #fff;
    }

    .b-new {
        background: #2980b9;
        color: #fff;
    }

    .pkg-body {
        padding: 13px;
    }

    .pkg-body h5 {
        font-size: 14.5px;
        font-weight: 700;
        margin-bottom: 8px;
        color: var(--dark);
    }

    .pkg-loc {
        font-size: 11px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 3px;
        margin-bottom: 4px;
    }

    .pkg-loc i {
        color: var(--theme1);
        font-size: 11px;
    }

    .pkg-metas {
        display: flex;
        flex-direction: column;
        gap: 2px;
        margin-bottom: 8px;
    }

    .pkg-metas span {
        font-size: 11px;
        color: var(--muted);
        display: flex;
        align-items: center;
        gap: 4px;
    }

    .pkg-metas i {
        color: var(--theme1);
        font-size: 11px;
    }

    .pkg-price-lbl {
        font-size: 10px;
        color: var(--muted);
        margin-bottom: 1px;
    }

    .pkg-price {
        font-size: 17px;
        font-weight: 700;
        color: var(--theme1);
        margin-bottom: 10px;
        line-height: 1;
    }

    .btn-view {
        width: 100%;
        background: var(--theme1);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 9px;
        font-size: 12.5px;
        font-weight: 600;
        cursor: pointer;
    }

    /* =========================
   ARROW BUTTONS
========================= */

    .arr {
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        background: #fff;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--theme1);
        flex-shrink: 0;
    }

    .arr i {
        font-size: 18px;
    }

    .arr:hover {
        background: #fff;
        color: var(--theme1);
    }

    /* Hide arrows on mobile */

    @media (max-width:767.98px) {
        .arr {
            display: none !important;
        }
    }


    /* ═══ SERVICES ═══ */
    .svc-item {
        text-align: center;
        padding: 12px 6px;
        cursor: pointer
    }

    .svc-ico {
        width: 62px;
        height: 62px;
        border-radius: 50%;
        background: var(--cream);
        border: 1px solid var(--border);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 9px;
        font-size: 24px;
        color: var(--theme1);
        transition: .25s
    }

    .svc-item:hover .svc-ico {
        background: var(--theme1);
        color: #fff
    }

    .svc-item p {
        font-size: 11.5px;
        font-weight: 600;
        margin: 0;
        color: var(--txt)
    }

    /* ═══ WHY US ═══ */
    .why-check {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .why-check li {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        padding: 5px 0;
        color: var(--txt)
    }

    .why-check li i {
        color: var(--theme1);
        font-size: 14px;
        flex-shrink: 0
    }

    .btn-know {
        background: var(--theme1);
        color: #fff;
        border: none;
        border-radius: 4px;
        padding: 10px 18px;
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: .2s;
        margin-top: 12px;
        display: inline-flex;
        align-items: center;
        gap: 6px
    }

    .btn-know:hover {
        background: var(--theme-dk)
    }

    .stat-box {
        text-align: center;
        padding: 10px 0
    }

    .stat-ico {
        font-size: 26px;
        color: var(--theme1);
        margin-bottom: 4px
    }

    .stat-num {
        font-size: 34px;
        font-weight: 800;
        color: var(--theme1);
        line-height: 1;
        display: flex;
        align-items: flex-start;
        justify-content: center
    }

    .stat-num sup {
        font-size: 18px;
        margin-top: 5px
    }

    .stat-lbl {
        font-size: 12px;
        color: var(--muted);
        margin-top: 3px
    }

    /* ═══ CTA BANNER ═══ */
    .cta-wrap {
        background: linear-gradient(120deg, var(--theme1) 0%, var(--theme-dk) 100%);
        border-radius: 10px;
        padding: 28px 24px;
        position: relative;
        overflow: hidden
    }

    .cta-wrap::after {
        content: '';
        position: absolute;
        right: -20px;
        bottom: -20px;
        width: 140px;
        height: 140px;
        border-radius: 50%;
        background: rgba(255, 255, 255, .06)
    }

    .cta-wrap .ct {
        color: #fff;
        position: relative;
        z-index: 1
    }

    .cta-wrap .ct small {
        font-size: 10px;
        opacity: .75;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        display: block;
        margin-bottom: 4px
    }

    .cta-wrap .ct h3 {
        font-size: 20px;
        margin-bottom: 6px
    }

    .cta-wrap .ct p {
        font-size: 12.5px;
        opacity: .82;
        margin-bottom: 18px
    }

    .btn-plan {
        background: #fff;
        color: var(--theme1);
        border: none;
        border-radius: 4px;
        padding: 10px 20px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        display: inline-flex;
        align-items: center;
        gap: 6px;
        transition: .2s
    }

    .btn-plan:hover {
        background: var(--amber-lt);
        color: #fff
    }

    /* ═══ TESTIMONIALS ═══ */
    .testi-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 10px;
        padding: 16px;
        height: 100%
    }

    .testi-av {
        width: 44px;
        height: 44px;
        border-radius: 50%;
        object-fit: cover;
        flex-shrink: 0
    }

    .testi-name {
        font-size: 13.5px;
        font-weight: 700;
        color: var(--dark);
        line-height: 1
    }

    .testi-city {
        font-size: 11px;
        color: var(--muted);
        margin-top: 2px
    }

    .testi-stars {
        color: #f5c518;
        font-size: 13px;
        margin: 9px 0 7px;
        letter-spacing: 1px
    }

    .testi-txt {
        font-size: 12.5px;
        color: #555;
        line-height: 1.6;
        margin: 0
    }

    .testi-scroll {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        padding: 4px 2px
    }

    .testi-scroll::-webkit-scrollbar {
        display: none
    }

    .testi-slide {
        flex: 0 0 260px
    }

    /* ═══ BLOG ═══ */
    .blog-card {
        border: 1px solid var(--border);
        border-radius: 10px;
        overflow: hidden;
        background: #fff;
        height: 100%
    }

    .blog-img {
        position: relative;
        overflow: hidden
    }

    .blog-img img {
        width: 100%;
        height: 160px;
        object-fit: cover;
        transition: transform .4s
    }

    .blog-card:hover .blog-img img {
        transform: scale(1.05)
    }

    .blog-date-tag {
        position: absolute;
        bottom: 0;
        left: 0;
        background: var(--amber);
        color: #fff;
        font-size: 9.5px;
        font-weight: 700;
        padding: 4px 10px;
        letter-spacing: .4px
    }

    .blog-body {
        padding: 12px 13px
    }

    .blog-body h6 {
        font-size: 13px;
        font-weight: 700;
        color: var(--dark);
        margin-bottom: 8px;
        line-height: 1.45;
        font-family: 'Poppins', sans-serif
    }

    .blog-read {
        font-size: 11.5px;
        color: var(--theme1);
        font-weight: 600;
        display: inline-flex;
        align-items: center;
        gap: 4px
    }

    .blog-read:hover {
        color: var(--theme-dk)
    }

    /* ═══ NEWSLETTER ═══ */
    .newsletter {
        background: var(--theme1);
        padding: 34px 0
    }

    .nl-icon {
        font-size: 42px;
        color: rgba(255, 255, 255, .65);
        flex-shrink: 0
    }

    .newsletter h3 {
        font-size: 20px;
        color: #fff;
        margin-bottom: 4px
    }

    .newsletter p {
        font-size: 12.5px;
        color: rgba(255, 255, 255, .75);
        margin: 0
    }

    .nl-form {
        display: flex;
        max-width: 460px
    }

    .nl-input {
        flex: 1;
        border: none;
        padding: 12px 14px;
        font-size: 13px;
        font-family: 'Poppins', sans-serif;
        outline: none;
        border-radius: 4px 0 0 4px;
        min-width: 0
    }

    .nl-btn {
        background: var(--amber);
        color: #fff;
        border: none;
        padding: 12px 18px;
        font-size: 13px;
        font-weight: 700;
        cursor: pointer;
        border-radius: 0 4px 4px 0;
        white-space: nowrap;
        display: flex;
        align-items: center;
        gap: 5px;
        transition: .2s
    }

    .nl-btn:hover {
        background: #a06208
    }

    /* ═══ FOOTER ═══ */
    footer {
        background: #111;
        color: #999
    }

    .ft-top {
        padding: 44px 0 26px
    }

    .ft-logo-txt {
        font-family: 'Playfair Display', serif;
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        line-height: 1
    }

    .ft-logo-txt span {
        color: var(--amber)
    }

    .ft-tag {
        font-size: 9px;
        letter-spacing: 2px;
        text-transform: uppercase;
        color: var(--amber);
        margin-top: 1px
    }

    .ft-about {
        font-size: 12px;
        color: #888;
        line-height: 1.75;
        margin: 10px 0 14px
    }

    .ft-soc a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 30px;
        height: 30px;
        border: 1px solid #2e2e2e;
        border-radius: 50%;
        color: #888;
        font-size: 12px;
        margin-right: 5px;
        transition: .2s
    }

    .ft-soc a:hover {
        background: var(--amber);
        border-color: var(--amber);
        color: #fff
    }

    .ft-h6 {
        font-family: 'Poppins', sans-serif;
        font-size: 11.5px;
        font-weight: 800;
        color: #fff;
        text-transform: uppercase;
        letter-spacing: 1.2px;
        margin-bottom: 14px
    }

    .ft-ul {
        list-style: none;
        padding: 0;
        margin: 0
    }

    .ft-ul li {
        margin-bottom: 8px
    }

    .ft-ul li a {
        color: #888;
        font-size: 12px;
        transition: .2s
    }

    .ft-ul li a:hover {
        color: var(--amber-lt)
    }

    .ft-ci {
        display: flex;
        gap: 8px;
        margin-bottom: 10px;
        font-size: 12px;
        color: #888;
        align-items: flex-start
    }

    .ft-ci i {
        color: var(--amber);
        font-size: 13px;
        flex-shrink: 0;
        margin-top: 2px
    }

    .ft-bottom {
        border-top: 1px solid #1e1e1e;
        padding: 13px 0;
        font-size: 11px;
        color: #555
    }

    .ft-bottom a {
        color: #555;
        transition: .2s
    }

    .ft-bottom a:hover {
        color: var(--amber-lt)
    }

    /* ═══ RESPONSIVE ═══ */
    @media(max-width:991.98px) {
        .nav-toggle {
            display: flex
        }

        .nav-links,
        .btn-enq {
            display: none !important
        }

        .hero {
            padding: 50px 0 140px;
            min-height: 380px
        }

        .sp-wrap {
            margin-top: -60px
        }

        .dest-card {
            flex: 0 0 150px
        }
    }

    @media(max-width:767.98px) {
        .topbar .topbar-contact {
            display: none !important
        }

        .hero {
            padding: 44px 0 130px
        }

        .hero h1 {
            font-size: 26px
        }

        .hero .sub {
            font-size: 13px
        }

        .sp-wrap {
            margin-top: -50px
        }

        .sp-tabs .sp-tab span {
            display: none
        }

        .sp-tab {
            padding: 12px 6px
        }

        .sp-fields {
            flex-wrap: wrap;
            gap: 8px;
            padding: 12px
        }

        .sp-f {
            flex: 1 1 calc(50% - 4px);
            min-width: 130px
        }

        .btn-srch {
            flex: 1 1 100%;
            justify-content: center;
            height: 40px
        }

        .sec {
            padding: 36px 0
        }

        .dest-card {
            flex: 0 0 138px
        }

        .pkg-img img {
            height: 160px
        }

        .trust-strip .col-6 {
            padding-bottom: 4px
        }

        .testi-slide {
            flex: 0 0 240px
        }

        .blog-img img {
            height: 140px
        }
    }

    @media(max-width:575.98px) {
        .hero h1 {
            font-size: 24px
        }

        .hero-eyebrow {
            font-size: 12px
        }

        .btn-hf,
        .btn-ho {
            font-size: 12.5px;
            padding: 10px 16px
        }

        .sec-lbl {
            font-size: 16px
        }

        .sp-f {
            flex: 1 1 100%
        }

        .btn-srch {
            flex: 1 1 100%
        }

        .stat-num {
            font-size: 28px
        }

        .stat-ico {
            font-size: 22px
        }

        .cta-wrap {
            padding: 22px 18px
        }

        .cta-wrap .ct h3 {
            font-size: 18px
        }

        .nl-form {
            flex-direction: column
        }

        .nl-input {
            border-radius: 4px 4px 0 0
        }

        .nl-btn {
            border-radius: 0 0 4px 4px;
            justify-content: center
        }

        .ft-top {
            padding: 30px 0 18px
        }
    }