 *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    body { font-family: 'Poppins', sans-serif; color: #222; background: #fff; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }

    /* ===== NAVBAR ===== */
    .navbar {
      display: flex; align-items: center; justify-content: space-between;
      padding: 0 40px; height: 64px; background: #fff;
      box-shadow: 0 2px 8px rgba(0,0,0,0.08); position: sticky; top: 0; z-index: 1000;
    }
    .logo { font-size: 26px; font-weight: 800; color: #0b2d6e; letter-spacing: -0.5px; }
    .logo span { color: #00b4d8; }
    .nav-links { display: flex; gap: 24px; list-style: none; align-items: center; }
    .nav-links a { font-size: 13.5px; font-weight: 500; color: #333; transition: color .2s; }
    .navbar-nav .nav-link:hover, .nav-link.active { color: #00b4d8 !important; }
    .nav-right { display: flex; align-items: center; gap: 16px; }
    .nav-phone { font-size: 13.5px; font-weight: 600; color: #0b2d6e; }
    .nav-phone i { margin-right: 5px; }
    .btn-enquire {
      background: #ff6600; color: #fff; border: none; border-radius: 6px;
      padding: 10px 22px; font-size: 13px; font-weight: 600; cursor: pointer; transition: background .2s;
    }
    .btn-enquire:hover { background: #e55a00; }

    /* ===== HERO ===== */
    .hero {
      position: relative; min-height: 420px;
      background: linear-gradient(rgba(10,30,80,0.52), rgba(10,30,80,0.42));
      display: flex; align-items: center; padding: 60px 40px 140px;
    }
    .hero-content { max-width: 580px; }
    .hero-eyebrow { font-size: 12px; font-weight: 600; color: #ffd700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
    .hero h1 { font-size: 42px; font-weight: 800; color: #fff; line-height: 1.2; margin-bottom: 18px; }
    .hero-sub { font-size: 14px; color: rgba(255,255,255,0.9); line-height: 1.7; }
    .hero-sub span { color: #00d4ff; font-weight: 600; }

    /* ===== SEARCH BAR ===== */
    .traveler-box{
    min-height:40px;
    font-size:14px;
    color:#444;
}
 .btn-login-trigger {
      display: flex; align-items: center; gap: 8px; background: transparent;
      border: 1.5px solid #0b2d6e; color: #0b2d6e; border-radius: 6px;
      padding: 8.5px 18px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
    }
    .btn-login-trigger:hover { background: #0b2d6e; color: #fff; }

    /* ============ AUTH MODAL ============ */
    .modal-overlay {
      display: none; position: fixed; inset: 0; background: rgba(11,20,40,0.6);
      backdrop-filter: blur(3px); z-index: 3000; align-items: center; justify-content: center;
      padding: 20px; opacity: 0; transition: opacity .25s;
    }
    .modal-overlay.open { display: flex; }
    .modal-overlay.show { opacity: 1; }

    .modal-box {
      background: #fff; width: 420px; max-width: 100%; max-height: 92vh; overflow-y: auto;
      border-radius: 18px; padding: 34px 32px 30px; position: relative;
      transform: translateY(18px) scale(0.97); opacity: 0; transition: all .28s ease;
      box-shadow: 0 30px 60px rgba(0,0,0,0.25);
    }
    .modal-overlay.show .modal-box { transform: translateY(0) scale(1); opacity: 1; }

    .modal-close {
      position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%;
      background: #f4f6f9; border: none; color: #888; font-size: 14px; cursor: pointer;
      display: flex; align-items: center; justify-content: center; transition: all .2s;
    }
    .modal-close:hover { background: #ffe3e3; color: #e64545; }

    .modal-head { text-align: center; margin-bottom: 22px; }
    .modal-logo { font-size: 24px; font-weight: 800; color: #0b2d6e; margin-bottom: 6px; text-align: -webkit-center;}
    .modal-logo span { color: #00b4d8; }
    .modal-subtitle { font-size: 12.5px; color: #999; }

    .auth-tabs {
      display: flex; background: #f4f6f9; border-radius: 10px; padding: 4px; margin-bottom: 26px;
    }
    .auth-tab {
      flex: 1; border: none; background: transparent; padding: 10px; border-radius: 8px;
      font-size: 13px; font-weight: 600; color: #888; cursor: pointer; transition: all .2s;
    }
    .auth-tab.active { background: #0b2d6e; color: #fff; box-shadow: 0 4px 10px rgba(11,45,110,0.25); }

    .auth-panel { display: none; flex-direction: column; gap: 16px; }
    .auth-panel.active { display: flex; }

    .auth-field { display: flex; flex-direction: column; gap: 6px; }
    .auth-field label { font-size: 11.5px; font-weight: 600; color: #666; }
    .auth-input-wrap {
      display: flex; align-items: center; gap: 10px; background: #f4f6f9; border-radius: 8px;
      padding: 12px 14px; border: 1.5px solid transparent; transition: border-color .2s;
    }
    .auth-input-wrap:focus-within { border-color: #29aee4; background: #fff; }
    .auth-input-wrap i { color: #ffb400; font-size: 13.5px; width: 16px; text-align: center; }
    .auth-input-wrap input {
      border: none; background: transparent; outline: none; font-size: 13.5px; color: #333;
      width: 100%; font-family: inherit;
    }
    .auth-toggle-pass { background: none; border: none; color: #aaa; cursor: pointer; font-size: 13px; }

    .auth-row-split { display: flex; align-items: center; justify-content: space-between; font-size: 12px; }
    .auth-remember { display: flex; align-items: center; gap: 7px; color: #777; }
    .auth-remember input { accent-color: #0b2d6e; }
    .auth-forgot { color: #00b4d8; font-weight: 600; }
    .auth-forgot:hover { text-decoration: underline; }

    .auth-terms { display: flex; align-items: flex-start; gap: 8px; font-size: 11.5px; color: #888; line-height: 1.5; }
    .auth-terms input { margin-top: 2px; accent-color: #0b2d6e; }
    .auth-terms a { color: #00b4d8; font-weight: 600; }

    .btn-auth-submit {
      background: #0b2d6e; color: #fff; border: none; border-radius: 8px; padding: 13px;
      font-size: 13.5px; font-weight: 700; cursor: pointer; display: flex; align-items: center;
      justify-content: center; gap: 8px; transition: background .2s; margin-top: 4px;
    }
    .btn-auth-submit:hover { background: #082157; }

    .auth-divider { display: flex; align-items: center; gap: 12px; margin: 20px 0 16px; color: #bbb; font-size: 11.5px; }
    .auth-divider::before, .auth-divider::after { content: ''; flex: 1; height: 1px; background: #eee; }

    .btn-google {
      display: flex; align-items: center; justify-content: center; gap: 10px; width: 100%;
      background: #fff; border: 1.5px solid #e6e9ee; border-radius: 8px; padding: 11px;
      font-size: 13px; font-weight: 600; color: #444; cursor: pointer; transition: all .2s;
    }
    .btn-google:hover { border-color: #ccc; background: #fafafa; }
    .btn-google img { width: 17px; height: 17px; }

    .auth-switch { text-align: center; font-size: 12.5px; color: #888; margin-top: 20px; }
    .auth-switch a { color: #0b2d6e; font-weight: 700; cursor: pointer; }
    .auth-switch a:hover { color: #00b4d8; }


.ts-control{
    border:none !important;
    box-shadow:none !important;
    padding:0 !important;
    min-width: 220px !important;
}
    .search-bar-wrap {
      position: relative; z-index: 10; margin: -52px 40px 0;
      background: #fff; border-radius: 12px;
      box-shadow: 0 8px 32px rgba(0,0,0,0.14);
      padding: 24px 28px; display: flex; align-items: center; gap: 0;
    }
    .search-field { flex: 1; padding: 0 24px; border-right: 1px solid #e0e0e0; }
    .search-field:last-of-type { border-right: none; }
    .search-field label { display: block; font-size: 11px; color: #888; font-weight: 600; margin-bottom: 4px; }
    .search-field input, .search-field select {
      border: none; outline: none; font-size: 14px; font-weight: 500;
      color: #444; background: transparent; font-family: inherit; width: 100%;
    }
    .search-field i { color: #00b4d8; margin-right: 8px; font-size: 13px; }
    .search-field .field-inner { display: flex; align-items: center; }
    .btn-search {
      background: #ff6600; color: #fff; border: none; border-radius: 8px;
      padding: 14px 28px; font-size: 14px; font-weight: 700; cursor: pointer;
      white-space: nowrap; margin-left: 20px; display: flex; align-items: center; gap: 8px;
      transition: background .2s;
    }
    .btn-search:hover { background: #e55a00; }

    /* ===== SECTION COMMONS ===== */
    .section { padding: 60px 40px; }
    .section-eyebrow { font-size: 11.5px; font-weight: 700; color: #00b4d8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px; }
    .section-title { font-size: 30px; font-weight: 800; color: #0b2d6e; line-height: 1.25; }
    .section-title span { color: #00b4d8; }

    /* ===== DESTINATIONS ===== */
    .destinations-header { display: flex; align-items: flex-start; justify-content: space-between; margin-bottom: 28px; }
    .tab-group { display: flex; align-items: center; gap: 10px; }
    .tab-btn {
      padding: 8px 22px; border-radius: 24px; border: 1.5px solid #00b4d8;
      font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
    }
    .tab-btn.active { background: #00b4d8; color: #fff; }
    .tab-btn:not(.active) { background: #fff; color: #333; border-color: #ddd; }
    .arrow-btns { display: flex; gap: 8px; align-items: center; }
    .arrow-btn {
      width: 32px; height: 32px; border: 1.5px solid #ddd; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 13px; color: #555; transition: all .2s; background: #fff;
    }
    .arrow-btn:hover { border-color: #00b4d8; color: #00b4d8; }
    .dest-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; margin-bottom: 16px; }
    .dest-card {
      border-radius: 12px; overflow: hidden; position: relative; cursor: pointer;
      height: 160px; transition: transform .25s;
    }
    .dest-card:hover { transform: translateY(-4px); }
    .dest-card img { width: 100%; height: 100%; object-fit: cover; }
    .dest-overlay {
      position: absolute; bottom: 0; left: 0; right: 0;
      background: linear-gradient(transparent, rgba(0,0,0,0.72));
      padding: 30px 12px 12px;
    }
    .dest-name { font-size: 14px; font-weight: 700; color: #fff; }
    .dest-tag { font-size: 10.5px; color: rgba(255,255,255,0.8); }

    /* ===== WHY CHOOSE ===== */
    .why-section {
      background: #f7fbfe; padding: 50px 40px;
      display: flex; align-items: flex-start; gap: 60px;
    }
    .why-left { min-width: 220px; }
    .why-left .section-eyebrow { margin-bottom: 10px; }
    .why-left .section-title { font-size: 26px; }
    .why-stats { display: flex; gap: 32px; flex: 1; flex-wrap: wrap; }
    .stat-card { text-align: center; flex: 1; min-width: 140px; }
    .stat-icon { width: 52px; height: 52px; border-radius: 50%; background: #e8f7fc; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 22px; color: #00b4d8; }
    .stat-number { font-size: 22px; font-weight: 800; color: #0b2d6e; }
    .stat-label { font-size: 13px; font-weight: 700; color: #222; margin-bottom: 4px; }
    .stat-desc { font-size: 11.5px; color: #888; }

    /* ===== FEATURED PACKAGES ===== */
    .pkg-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
    .btn-view-all {
      border: 1.5px solid #00b4d8; color: #00b4d8; background: transparent;
      border-radius: 6px; padding: 8px 20px; font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s;
    }
    .btn-view-all:hover { background: #00b4d8; color: #fff; }
    .pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .pkg-card { border-radius: 14px; overflow: hidden; border: 1px solid #eee; transition: box-shadow .25s; }
    .pkg-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,0.12); }
    .pkg-img { position: relative; height: 185px; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; }
    .pkg-badge {
      position: absolute; top: 12px; left: 12px;
      background: rgba(0,0,0,0.55); color: #fff;
      font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 20px;
    }
    .pkg-body { padding: 14px 16px; }
    .pkg-title { font-size: 15px; font-weight: 700; color: #0b2d6e; margin-bottom: 4px; }
    .pkg-loc { font-size: 11.5px; color: #888; margin-bottom: 6px; }
    .pkg-loc i { color: #ff6600; margin-right: 4px; }
    .pkg-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
    .stars { color: #ffc107; font-size: 12px; }
    .rating-count { font-size: 11px; color: #888; }
    .pkg-footer { display: flex; align-items: center; justify-content: space-between; }
    .pkg-price { }
    .pkg-price small { font-size: 10.5px; color: #888; display: block; }
    .pkg-price strong { font-size: 17px; font-weight: 800; color: #0b2d6e; }
    .btn-explore {
      background: #00b4d8; color: #fff; border: none; border-radius: 6px;
      padding: 8px 18px; font-size: 12.5px; font-weight: 600; cursor: pointer;
      display: flex; align-items: center; gap: 6px; transition: background .2s;
    }
    .btn-explore:hover { background: #0097b8; }

    /* ===== SERVICES ===== */
    .services-section {
      background: #0b2d6e; padding: 60px 40px;
      display: flex; gap: 60px; align-items: center;
    }
    .services-left { min-width: 260px; }
    .services-left .section-eyebrow { color: #00d4ff; }
    .services-left .section-title { color: #fff; font-size: 30px; }
    .services-left .plane-line { color: rgba(255,255,255,0.15); font-size: 60px; margin-top: 20px; }
    .services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; flex: 1; }
    .service-card {
      background: rgba(255,255,255,0.1); border: 1.5px solid rgba(255,255,255,0.2);
      border-radius: 12px; padding: 20px 16px; text-align: center; cursor: pointer;
      transition: background .2s;
    }
    .service-card:hover { background: rgba(255,255,255,0.18); }
    .service-icon { font-size: 26px; color: #00d4ff; margin-bottom: 10px; }
    .service-name { font-size: 13px; font-weight: 700; color: #fff; }

    /* ===== TESTIMONIALS ===== */
    .testimonials-section { padding: 60px 40px; background: #fff; }
    .testi-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 36px; }
    .testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; position: relative; }
    .testi-nav {
      position: absolute; top: 50%; transform: translateY(-50%);
      width: 36px; height: 36px; border: 1.5px solid #ddd; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 14px; color: #555; background: #fff; z-index: 2;
    }
    .testi-nav.left { left: -18px; }
    .testi-nav.right { right: -18px; }
    .testi-card { border: 1.5px solid #eee; border-radius: 14px; padding: 24px; }
    .testi-user { display: flex; align-items: center; gap: 14px; margin-bottom: 12px; }
    .testi-avatar {
      width: 48px; height: 48px; border-radius: 50%; object-fit: cover;
      background: #ddd; flex-shrink: 0;
    }
    .testi-name { font-size: 14px; font-weight: 700; color: #0b2d6e; }
    .testi-trip { font-size: 11.5px; color: #888; }
    .testi-stars { color: #ffc107; font-size: 13px; margin-bottom: 10px; }
    .testi-text { font-size: 13px; color: #555; line-height: 1.7; }

    .testi-wrapper{
    position:relative;
    overflow:hidden;
}

.testi-slider{
    display:flex;
    gap:24px;
    transition:transform .5s ease;
}

.testi-card{
    max-width:calc(33.333% - 16px);
    flex-shrink:0;
    border:1.5px solid #eee;
    border-radius:14px;
    padding:24px;
    background:#fff;
}

.testi-nav{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border:none;
    border-radius:50%;
    background:#fff;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
    z-index:100;
    cursor:pointer;
}

.testi-nav.left{
    left:-10px;
}

.testi-nav.right{
    right:-10px;
}
    /* ===== PAGE BANNER / BREADCRUMB ===== */
    .page-banner {
      position: relative; padding: 70px 40px;
      text-align: center;
    }
    .page-banner h1 { font-size: 34px; font-weight: 800; color: #fff; margin-bottom: 10px; }
    .breadcrumb { font-size: 13px; color: rgba(255,255,255,0.85); font-weight: 500; display: inline-block;}
    .breadcrumb a { color: #00d4ff; }
    .breadcrumb i { font-size: 10px; margin: 0 8px; }


    /* ===== FILTER BAR ===== */
    .filter-bar {
      /* display: flex;  */
      text-align: right;
      align-items: right; justify-content: space-between;
      flex-wrap: wrap; gap: 16px; margin-bottom: 32px;
      background: #f7fbfe; border: 1px solid #e6f3fa; border-radius: 12px; padding: 16px 24px;
    }
    .filter-tabs { display: flex; gap: 10px; }
    .filter-tab {
      padding: 9px 22px; border-radius: 24px; border: 1.5px solid #00b4d8;
      font-size: 13px; font-weight: 600; cursor: pointer; transition: all .2s; background: #fff; color: #333;
    }
    .filter-tab.active { background: #00b4d8; color: #fff; }
    .filter-search { display: flex; align-items: center; gap: 10px; background: #fff; border: 1.5px solid #ddd; border-radius: 24px; padding: 8px 18px; min-width: 240px; }
    .filter-search i { color: #00b4d8; font-size: 13px; }
    .filter-search input { border: none; outline: none; font-size: 13px; font-family: inherit; width: 100%; }
    .result-count { font-size: 13px; color: #777; font-weight: 500; }
    .result-count strong { color: #0b2d6e; }

     /* ===== PDESTINATION GRID (cards w/ package count) ===== */
    .pdest-grid {
      display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
    }
    .pdest-card {
      border-radius: 14px; overflow: hidden; border: 1px solid #eee; cursor: pointer;
      transition: transform .25s, box-shadow .25s; background: #fff;
    }
    .pdest-card:hover { transform: translateY(-6px); box-shadow: 0 12px 30px rgba(0,0,0,0.12); }
    .pdest-img-wrap { position: relative; height: 200px; overflow: hidden; }
    .pdest-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
    .pdest-card:hover .pdest-img-wrap img { transform: scale(1.08); }
    .pdest-pkg-badge {
      position: absolute; top: 12px; right: 12px;
      background: #ff6600; color: #fff; font-size: 11px; font-weight: 700;
      padding: 5px 12px; border-radius: 20px;
    }
    .pdest-tag-badge {
      position: absolute; top: 12px; left: 12px;
      background: rgba(255,255,255,0.92); color: #0b2d6e; font-size: 10.5px; font-weight: 700;
      padding: 5px 12px; border-radius: 20px; letter-spacing: 0.5px; text-transform: uppercase;
    }
    .pdest-body { padding: 16px 18px 20px; }
    .pdest-name { font-size: 17px; font-weight: 700; color: #0b2d6e; margin-bottom: 6px; }
    .pdest-meta { display: flex; align-items: center; justify-content: space-between; }
    .pdest-pkg-count { font-size: 12px; color: #888; }
    .pdest-pkg-count i { color: #00b4d8; margin-right: 5px; }
    .pdest-link { font-size: 12.5px; font-weight: 700; color: #00b4d8; display: flex; align-items: center; gap: 5px; }
    .pdest-link i { font-size: 10px; transition: transform .2s; }
    .pdest-card:hover .pdest-link i { transform: translateX(3px); }

    /* ===== PARTNERS ===== */
    .partners-section { background: #f7fbfe; padding: 50px 40px; text-align: center; }
    .partners-grid {
      display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
      gap: 36px; margin-top: 30px;
    }
    .partner-logo {
      width: 130px; height: 70px; background: #fff; border-radius: 10px;
      border: 1px solid #eee; display: flex; align-items: center; justify-content: center;
      padding: 12px; filter: grayscale(40%); transition: filter .2s, transform .2s;
    }
    .partner-logo:hover { filter: grayscale(0%); transform: translateY(-3px); }
    .partner-logo img { max-width: 100%; max-height: 100%; object-fit: contain; }

  /* ===== CTA STRIP ===== */
        .cta-strip {
            background: #0b2e6e;
            padding: 44px 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
        }


        .cta-text h3 {
            color: #fff;
            font-size: 22px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .cta-text p {
            color: rgba(255, 255, 255, 0.7);
            font-size: 13.5px;
        }

        .cta-btns {
            display: flex;
            gap: 14px;
        }

        .btn-cta-primary {
            background: #ff6600;
            color: #fff;
            border: none;
            border-radius: 8px;
            padding: 13px 26px;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            transition: background .2s;
        }

        .btn-cta-primary:hover {
            background: #ce5301;
        }

        .btn-cta-outline {
            background: transparent;
            color: #fff;
            border: 1.5px solid rgba(255, 255, 255, 0.5);
            border-radius: 8px;
            padding: 13px 26px;
            font-size: 13.5px;
            font-weight: 700;
            cursor: pointer;
            transition: all .2s;
        }

        .btn-cta-outline:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.1);
        }

    /* ===== WA FLOAT ===== */
    .wa-float {
      position: fixed; bottom: 24px; right: 24px; z-index: 999;
      background: #25d366; color: #fff; border-radius: 40px;
      padding: 12px 20px; display: flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      cursor: pointer; transition: transform .2s;
    }
    .wa-float:hover { transform: translateY(-2px); }
    .wa-float i { font-size: 20px; }
    .wa-float span { font-size: 11px; display: block; font-weight: 400; opacity: .85; }

    /* ===== INSTAGRAM ===== */
    .insta-section { padding: 50px 40px; background: #f9f9f9; }
    .insta-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
    .insta-title { font-size: 24px; font-weight: 800; color: #0b2d6e; }
    .btn-insta {
      display: flex; align-items: center; gap: 8px; border: 1.5px solid #e4405f;
      color: #e4405f; border-radius: 24px; padding: 8px 20px; font-size: 13px; font-weight: 600;
      cursor: pointer; background: #fff; transition: all .2s;
    }
    .btn-insta:hover { background: #e4405f; color: #fff; }
    .insta-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 12px; }
    .insta-img { border-radius: 10px; overflow: hidden; aspect-ratio: 1; }
    .insta-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
    .insta-img:hover img { transform: scale(1.06); }

    /* ===== FOOTER ===== */
    .footer { background: #0b1f4e; padding: 50px 40px 24px; }
    .footer-top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1.4fr; gap: 40px; margin-bottom: 40px; }
    .footer-logo { font-size: 28px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .footer-logo span { color: #00b4d8; }
    .footer-desc { font-size: 12.5px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 18px; }
    .social-links { display: flex; gap: 10px; }
    .social-links a {
      width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,0.1);
      display: flex; align-items: center; justify-content: center; color: #fff;
      font-size: 14px; transition: background .2s;
    }
    .social-links a:hover { background: #00b4d8; }
    .footer-col h4 { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 18px; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-col ul li a { font-size: 12.5px; color: rgba(255,255,255,0.6); transition: color .2s; }
    .footer-col ul li a:hover { color: #00b4d8; }
    .contact-item { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: 12.5px; color: rgba(255,255,255,0.6); }
    .contact-item i { color: #00b4d8; margin-top: 2px; font-size: 13px; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 20px; display: flex; align-items: center; justify-content: space-between; }
    .footer-copy { font-size: 12px; color: rgba(255,255,255,0.45); }
    .footer-links { display: flex; gap: 20px; }
    .footer-links a { font-size: 12px; color: rgba(255,255,255,0.45); transition: color .2s; }
    .footer-links a:hover { color: #00b4d8; }

    /* ===== WA FLOAT ===== */
    .wa-float {
      position: fixed; bottom: 60px; right: 24px; z-index: 999;
      background: #25d366; color: #fff; border-radius: 40px;
      padding: 12px 20px; display: flex; align-items: center; gap: 10px;
      font-size: 13px; font-weight: 700; box-shadow: 0 4px 18px rgba(37,211,102,0.45);
      cursor: pointer; transition: transform .2s;
    }
    .wa-float:hover { transform: translateY(-2px); }
    .wa-float i { font-size: 20px; }
    .wa-float span { font-size: 11px; display: block; font-weight: 400; opacity: .85; }

    /* ===== INSTA EYEBROW ===== */
    .insta-eye { font-size: 11.5px; font-weight: 700; color: #00b4d8; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
    .insta-hash { font-size: 24px; font-weight: 800; color: #0b2d6e; }

    /* placeholder images via picsum */
    /* Dropdown Menu */
/* .dropdown{
    position:relative;
}

.dropdown > a{
    display:flex;
    align-items:center;
    gap:6px;
}

.dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:240px;
    background:#fff;
    list-style:none;
    border-radius:10px;
    padding:10px 0;
    box-shadow:0 10px 30px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;
    transform:translateY(10px);
    transition:.3s;
    z-index:999;
}

.dropdown:hover .dropdown-menu{
    opacity:1;
    visibility:visible;
    transform:translateY(0);
}

.dropdown-menu li a{
    display:block;
    padding:12px 18px;
    font-size:13px;
    color:#333;
    transition:.2s;
}

.dropdown-menu li a:hover{
    background:#f5fbff;
    color:#00b4d8;
    padding-left:24px;
} */

/* Bootstrap Services Dropdown Fix */

.navbar .dropdown-menu{
    border: none;
    border-radius: 12px;
    /* min-width: 260px; */
    padding: 10px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.navbar .dropdown-item{
    padding: 12px 20px;
    font-size: 14px;
    transition: all .2s;
}

.navbar .dropdown-item:hover{
    background: #f5fbff;
    color: #00b4d8;
    padding-left: 26px;
}
.nav-link{
  font-size: 14px !important;
  font-weight: 500;
}
.dest-grid{
    animation: fadeIn .4s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(15px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

    /* ==========================================
   RESPONSIVE DESIGN
========================================== */
@media(max-width:992px){

    .testi-card{
        min-width:100%;
    }

}
/* Large Tablet */
@media (max-width: 1200px){

    .dest-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .pkg-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .insta-grid{
        grid-template-columns: repeat(3,1fr);
    }

    .footer-top{
        grid-template-columns: repeat(2,1fr);
    }
}

/* Tablet */
@media (max-width: 992px){

    .navbar{
        padding:15px 20px;
        flex-wrap:wrap;
        height:auto;
        gap:15px;
    }

    .nav-links{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
        gap:15px;
    }

    .hero{
        padding:50px 20px 120px;
        min-height:380px;
    }

    .hero h1{
        font-size:34px;
    }

    .search-bar-wrap{
        margin:-40px 20px 0;
        flex-wrap:wrap;
        gap:15px;
    }

    .search-field{
        flex:1 1 calc(50% - 10px);
        border-right:none;
        padding:0;
    }

    .btn-search{
        width:100%;
        justify-content:center;
        margin-left:0;
    }

    .destinations-header,
    .pkg-header,
    .insta-header,
    .why-section,
    .services-section{
        flex-direction:column;
        gap:25px;
    }

    .testi-grid{
        grid-template-columns:1fr;
    }

    .footer-bottom{
        flex-direction:column;
        gap:15px;
        text-align:center;
    }
    /* .dropdown-menu{
    position:static;
    opacity:1;
    visibility:visible;
    transform:none;
    box-shadow:none;
    display:none;
    background:#f8f9fa;
    min-width:100%;
} */


}

/* Mobile */
@media (max-width: 768px){

    .section,
    .services-section,
    .testimonials-section,
    .insta-section,
    .footer,
    .why-section{
        padding:40px 15px;
    }

    .hero{
        padding:40px 15px 100px;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero h1{
        font-size:28px;
        line-height:1.3;
    }

    .hero-sub{
        font-size:13px;
    }

    .section-title{
        font-size:24px;
    }

    .search-bar-wrap{
        margin:-35px 15px 0;
        padding:20px;
    }

    .search-field{
        width:100%;
        flex:100%;
    }

    .dest-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .pkg-grid{
        grid-template-columns:1fr;
    }

    .services-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .insta-grid{
        grid-template-columns: repeat(2,1fr);
    }

    .footer-top{
        grid-template-columns:1fr;
        gap:30px;
    }

    .why-stats{
        /* flex-direction:column; */
        gap:25px;
    }

    .tab-group{
        flex-wrap:wrap;
    }

    .testi-nav{
        /* display:none; */
        display: block;
        top: 65px;
    }

    .wa-float{
        right:15px;
        bottom:110px;
        padding:10px 15px;
    }
}

/* Small Mobile */
@media (max-width: 480px){

    .logo{
        font-size:22px;
    }

    .hero h1{
        font-size:24px;
    }

    .section-title{
        font-size:22px;
    }

    .dest-grid{
        grid-template-columns:1fr;
    }

    .insta-grid{
        grid-template-columns:1fr 1fr;
    }

    .nav-right{
        width:100%;
        justify-content:center;
        flex-wrap:wrap;
    }

    .btn-enquire{
        width:100%;
    }

    .btn-view-all{
        width:100%;
    }

    .pkg-footer{
        flex-direction:column;
        gap:10px;
        align-items:flex-start;
    }

    .btn-explore{
        width:100%;
        justify-content:center;
    }
}
 @media (max-width: 1100px) {
      .dest-grid { grid-template-columns: repeat(3, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 760px) {
      .section, .page-banner, .partners-section, .cta-strip, .footer { padding-left: 18px; padding-right: 18px; }
      .dest-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
      .footer-top { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .dest-grid { grid-template-columns: 1fr; }
      .filter-bar { flex-direction: column; align-items: stretch; }
    }