 :root {
      --primary: #0f80c1;
      --primary-dark: #0a5f91;
      --primary-light: #e8f4fc;
      --dark: #333333;
      --dark-soft: #555555;
      --light: #f8fafd;
      --white: #ffffff;
      --gold: #f0a500;
      --gradient: linear-gradient(135deg, #0f80c1 0%, #0a5f91 100%);
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: 'DM Sans', sans-serif;
      color: var(--dark);
      overflow-x: hidden;
      background: var(--white);
    }

    h1 { font-family: 'Playfair Display', serif; }

    /* ── NAVBAR ─────────────────────────────────────── */
    .navbar {
      background: #fff !important;
      box-shadow: 0 2px 20px rgba(0,0,0,.08);
      padding: 0;
      position: sticky;
      top: 0;
      z-index: 1050;
    }

    .navbar-brand { padding: 14px 0; }

    .brand-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }
    .brand-icon {
      width: 44px; height: 44px;
      background: var(--gradient);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      color: #fff; font-size: 1.3rem;
    }
    .brand-text { line-height: 1.1; }
    .brand-text span:first-child {
      display: block;
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--primary);
    }
    .brand-text span:last-child {
      font-size: .7rem;
      font-weight: 500;
      color: var(--dark-soft);
      letter-spacing: 2px;
      text-transform: uppercase;
    }

    .navbar-nav .nav-link {
      font-weight: 500;
      font-size: .92rem;
      color: var(--dark) !important;
      padding: 22px 14px !important;
      position: relative;
      letter-spacing: .3px;
      transition: color .25s;
    }
    .navbar-nav .nav-link:hover,
    .navbar-nav .nav-link.active { color: var(--primary) !important; }
    .navbar-nav .nav-link::after {
      content: '';
      position: absolute;
      bottom: 0; left: 14px; right: 14px;
      height: 3px;
      background: var(--primary);
      border-radius: 2px 2px 0 0;
      transform: scaleX(0);
      transition: transform .25s;
    }
    .navbar-nav .nav-link:hover::after,
    .navbar-nav .nav-link.active::after { transform: scaleX(1); }

    /* Dropdown */
    .dropdown-menu {
      border: none;
      box-shadow: 0 10px 40px rgba(0,0,0,.12);
      border-radius: 12px;
      padding: 8px;
      min-width: 210px;
      animation: dropIn .2s ease;
    }
    @keyframes dropIn {
      from { opacity: 0; transform: translateY(-8px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .dropdown-item {
      border-radius: 8px;
      padding: 9px 14px;
      font-size: .88rem;
      font-weight: 500;
      color: var(--dark);
      display: flex; align-items: center; gap: 8px;
      transition: background .2s, color .2s;
    }
    .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }
    .dropdown-item i { font-size: 1rem; color: var(--primary); }

    /* 3rd-level dropdown */
    .dropdown-submenu { position: relative; }
    .dropdown-submenu .dropdown-menu {
      top: 0; left: 100%;
      margin-top: -8px;
      display: none;
    }
    .dropdown-submenu:hover > .dropdown-menu { display: block; }
    .dropdown-submenu > .dropdown-item::after {
      content: '\F285';
      font-family: 'bootstrap-icons';
      margin-left: auto;
      font-size: .8rem;
    }

    .navbar-toggler { border: none; padding: 6px 10px; }
    .navbar-toggler:focus { box-shadow: none; }

    .btn-nav {
      background: var(--gradient);
      color: #fff !important;
      border-radius: 50px;
      padding: 9px 22px !important;
      font-weight: 600 !important;
      font-size: .88rem !important;
      transition: box-shadow .25s, transform .2s;
    }
    .btn-nav::after { display: none !important; }
    .btn-nav:hover { box-shadow: 0 6px 20px rgba(15,128,193,.4); transform: translateY(-1px); }

    /* ── HERO ────────────────────────────────────────── */
    .hero {
      min-height: 92vh;
      background:
        linear-gradient(135deg, rgba(10,45,70,.72) 0%, rgba(15,128,193,.55) 100%),
        url('../images/banner.jpg') center/cover no-repeat;
      display: flex; align-items: center;
      position: relative;
      overflow: hidden;
    }
    .hero::before {
      content: '';
      position: absolute;
      bottom: -2px; left: 0; right: 0;
      height: 122px;
      background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 90'%3E%3Cpath fill='%23ffffff' d='M0,60 C360,120 1080,0 1440,60 L1440,90 L0,90 Z'/%3E%3C/svg%3E") no-repeat bottom/cover;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 7px;
      background: rgba(255,255,255,.15);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.3);
      border-radius: 50px;
      padding: 7px 18px;
      color: #fff;
      font-size: .82rem;
      font-weight: 600;
      letter-spacing: 1px;
      text-transform: uppercase;
      margin-bottom: 22px;
    }
    .hero h1 {
      font-size: clamp(2.6rem, 6vw, 4.4rem);
      color: #fff;
      line-height: 1.12;
      margin-bottom: 20px;
      text-shadow: 0 2px 20px rgba(0,0,0,.3);
    }
    .hero h1 span { color: #7dd9ff; }
    .hero p {
      color: rgba(255,255,255,.88);
      font-size: 1.1rem;
      max-width: 560px;
      line-height: 1.7;
      margin-bottom: 34px;
    }
    .btn-hero-primary {
      background: #fff;
      color: var(--primary);
      font-weight: 700;
      border-radius: 50px;
      padding: 14px 34px;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s;
      box-shadow: 0 8px 30px rgba(0,0,0,.2);
    }
    .btn-hero-primary:hover {
      background: var(--primary); color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 35px rgba(15,128,193,.5);
    }
    .btn-hero-outline {
      border: 2px solid rgba(255,255,255,.7);
      color: #fff;
      font-weight: 600;
      border-radius: 50px;
      padding: 13px 30px;
      font-size: 1rem;
      text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s;
    }
    .btn-hero-outline:hover {
      background: rgba(255,255,255,.15);
      border-color: #fff;
      color: #fff;
    }

    /* Search Box */
    .search-box {
      background: #fff;
      border-radius: 18px;
      padding: 28px 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,.15);
      margin-top: 40px;
    }
    .search-box .form-label { font-weight: 600; font-size: .8rem; color: var(--dark-soft); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
    .search-box .form-control, .search-box .form-select {
      border: 1.5px solid #e5eef5;
      border-radius: 10px;
      padding: 11px 14px;
      font-size: .92rem;
      transition: border-color .2s;
    }
    .search-box .form-control:focus, .search-box .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(15,128,193,.1);
    }
    .btn-search {
      background: var(--gradient);
      color: #fff;
      border: none;
      border-radius: 10px;
      padding: 12px 28px;
      font-weight: 600;
      width: 100%;
      font-size: 1rem;
      transition: all .25s;
    }
    .btn-search:hover { box-shadow: 0 6px 20px rgba(15,128,193,.4); transform: translateY(-1px); }

    /* ── STATS ───────────────────────────────────────── */
    .stats-band {
      background: var(--gradient);
      padding: 50px 0;
    }
    .stat-item { text-align: center; }
    .stat-number {
      font-family: 'Playfair Display', serif;
      font-size: 2.8rem;
      font-weight: 900;
      color: #fff;
      line-height: 1;
    }
    .stat-label { color: rgba(255,255,255,.8); font-size: .88rem; font-weight: 500; margin-top: 4px; }

    /* ── SECTION COMMONS ─────────────────────────────── */
    section { padding: 90px 0; }
    .section-tag {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: .78rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      padding: 6px 16px;
      border-radius: 50px;
      margin-bottom: 14px;
    }
    .section-title { font-size: clamp(1.9rem, 4vw, 2.7rem); color: var(--dark); margin-bottom: 16px; }
    .section-sub { color: var(--dark-soft); font-size: 1rem; line-height: 1.7; max-width: 560px; }

    /* ── SERVICES ────────────────────────────────────── */
    #services { background: linear-gradient(2deg,rgb(248, 250, 253) 0%, rgb(255, 255, 255) 100%); }
    .service-card {
      background: #fff;
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 4px 24px rgba(0,0,0,.06);
      transition: transform .3s, box-shadow .3s;
      height: 100%;
    }
    .service-card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(15,128,193,.15); }
    .service-img { height: 220px; overflow: hidden; position: relative; }
    .service-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .service-card:hover .service-img img { transform: scale(1.07); }
    .service-badge {
      position: absolute; top: 14px; left: 14px;
      background: var(--primary);
      color: #fff; border-radius: 8px;
      padding: 5px 12px; font-size: .75rem; font-weight: 700;
    }
    .service-body { padding: 22px; }
    .service-icon {
      width: 52px; height: 52px;
      background: var(--primary-light);
      border-radius: 14px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--primary);
      margin-bottom: 14px;
    }
    .service-body h5 { font-size: 1.15rem; margin-bottom: 8px; }
    .service-body p { font-size: .88rem; color: var(--dark-soft); line-height: 1.6; margin-bottom: 16px; }
    .btn-service {
      font-size: .84rem; font-weight: 600; color: var(--primary);
      text-decoration: none; display: inline-flex; align-items: center; gap: 5px;
      transition: gap .2s;
    }
    .btn-service:hover { gap: 10px; color: var(--primary-dark); }

    /* ── TAXI ────────────────────────────────────────── */
    #taxi {
      background: linear-gradient(160deg, #001d30 0%, #0a3d5c 50%, #0f80c1 100%);
      position: relative; overflow: hidden;
    }
    #taxi::before {
      content: '';
      position: absolute; inset: 0;
      background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Ccircle cx='30' cy='30' r='4'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    }
    .taxi-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,.1);
      border: 1px solid rgba(255,255,255,.2);
      border-radius: 50px; padding: 6px 16px;
      color: #7dd9ff; font-size: .78rem; font-weight: 700;
      letter-spacing: 2px; text-transform: uppercase; margin-bottom: 14px;
    }
    .taxi-feature {
      display: flex; align-items: flex-start; gap: 14px;
      background: rgba(255,255,255,.06);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(255,255,255,.1);
      border-radius: 16px;
      padding: 20px;
      transition: background .3s;
    }
    .taxi-feature:hover { background: rgba(255,255,255,.1); }
    .taxi-feature-icon {
      width: 48px; height: 48px; flex-shrink: 0;
      background: rgba(15,128,193,.4);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: #7dd9ff;
    }
    .taxi-feature h6 { color: #fff; font-size: 1rem; margin-bottom: 4px; }
    .taxi-feature p { color: rgba(255,255,255,.65); font-size: .84rem; margin: 0; line-height: 1.5; }
    .taxi-img-wrap {
      position: relative;
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0,0,0,.5);
    }
    .taxi-img-wrap img { width: 100%; border-radius: 24px; display: block; }
    .taxi-price-tag {
      position: absolute; bottom: 20px; left: 20px;
      background: #fff;
      border-radius: 14px;
      padding: 14px 20px;
      box-shadow: 0 8px 30px rgba(0,0,0,.2);
    }
    .taxi-price-tag .price { font-size: 1.8rem; color: var(--primary); font-weight: 900; }
    .taxi-price-tag .price-label { font-size: .78rem; color: var(--dark-soft); }
    .btn-taxi {
      background: #fff; color: var(--primary);
      border: none; border-radius: 50px;
      padding: 14px 34px; font-weight: 700;
      font-size: 1rem; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s;
    }
    .btn-taxi:hover { background: var(--gold); color: #fff; box-shadow: 0 8px 28px rgba(240,165,0,.4); }

    /* ── PACKAGES ────────────────────────────────────── */
    .pkg-card {
      border-radius: 0px;
      overflow: hidden;
      box-shadow: 0 4px 28px rgba(0,0,0,.08);
      transition: transform .3s, box-shadow .3s;
      background: #fff;
      height: 100%;
    }
    .pkg-card:hover { transform: translateY(0px); box-shadow: 0 24px 60px rgba(15,128,193,.18); }
    .pkg-img { height: 240px; overflow: hidden; position: relative; }
    .pkg-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
    .pkg-card:hover .pkg-img img { /*transform: scale(1.07);*/ }
    .pkg-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%);
    }
    .pkg-tags {
      position: absolute; top: 14px; left: 14px;
      display: flex; gap: 6px;
    }
    .pkg-tag {
      background: rgba(255,255,255,.9);
      border-radius: 6px; padding: 4px 10px;
      font-size: .72rem; font-weight: 700; color: var(--primary);
    }
    .pkg-tag.hot { background: #e63946; color: #fff; }
    .pkg-bottom {
      position: absolute; bottom: 14px; left: 14px; right: 14px;
      display: flex; align-items: flex-end; justify-content: space-between;
    }
    .pkg-location { color: rgba(255,255,255,.9); font-size: .82rem; display: flex; align-items: center; gap: 4px; }
    .pkg-rating { background: rgba(255,255,255,.15); backdrop-filter: blur(6px); border-radius: 8px; padding: 4px 10px; color: #fff; font-size: .8rem; display: flex; align-items: center; gap: 4px; }
    .pkg-body { padding: 22px; }
    .pkg-body h5 { font-size: 1.15rem; margin-bottom: 8px; }
    .pkg-meta { display: flex; gap: 18px; margin-bottom: 14px; }
    .pkg-meta span { font-size: .82rem; color: var(--dark-soft); display: flex; align-items: center; gap: 5px; }
    .pkg-footer { display: flex; align-items: center; justify-content: space-between; padding-top: 16px; border-top: 1px solid #eee; }
    .pkg-price .from { font-size: .75rem; color: var(--dark-soft); }
    .pkg-price .amount { font-size: 1.5rem; color: var(--primary); font-weight: 900; }
    .btn-pkg {
      background: var(--gradient);
      color: #fff; border: none; border-radius: 10px;
      padding: 9px 20px; font-weight: 600; font-size: .84rem;
      text-decoration: none;
      transition: all .25s;
    }
    .btn-pkg:hover { box-shadow: 0 6px 20px rgba(15,128,193,.4); transform: translateY(-1px); color: #fff; }

    /* ── ABOUT ───────────────────────────────────────── */
    #about { background: var(--light); }
    .about-img-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 14px;
    }
    .about-img-grid img {
      border-radius: 16px;
      width: 100%; height: 200px; object-fit: cover;
      transition: transform .3s;
    }
    .about-img-grid img:first-child {
      grid-row: span 2;
      height: 100%;
    }
    .about-img-grid img:hover { transform: scale(1.02); }
    .about-feature { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
    .about-feature-icon {
      width: 46px; height: 46px; flex-shrink: 0;
      background: var(--primary-light); border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--primary);
    }
    .about-feature h6 { font-size: 1rem; margin-bottom: 3px; }
    .about-feature p { font-size: .86rem; color: var(--dark-soft); margin: 0; }

    /* ── TESTIMONIALS ────────────────────────────────── */
    .testimonial-card {
      background: #fff;
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 4px 24px rgba(0,0,0,.06);
      height: 100%;
      position: relative;
    }
    .testimonial-card::before {
      content: '\201C';
      position: absolute; top: 20px; right: 24px;
      font-family: 'Playfair Display', serif;
      font-size: 5rem; line-height: 1;
      color: var(--primary-light);
      font-weight: 900;
    }
    .stars { color: var(--gold); font-size: .9rem; margin-bottom: 14px; }
    .testimonial-card p { font-size: .92rem; color: var(--dark-soft); line-height: 1.7; margin-bottom: 20px; }
    .testimonial-author { display: flex; align-items: center; gap: 12px; }
    .testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
    .author-name { font-weight: 700; font-size: .9rem; }
    .author-place { font-size: .78rem; color: var(--dark-soft); }

    /* ── CTA BANNER ──────────────────────────────────── */
    .cta-banner {
      background:
        linear-gradient(135deg, rgba(15,128,193,.92) 0%, rgba(10,60,92,.95) 100%),
        url('https://images.unsplash.com/photo-1452421822248-d4c2b47f0c81?w=1400&q=80') center/cover;
      padding: 90px 0;
      text-align: center;
    }
    .cta-banner h2 { color: #fff; font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 16px; }
    .cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; max-width: 560px; margin: 0 auto 32px; }
    .btn-cta-white {
      background: #fff; color: var(--primary); border: none;
      border-radius: 50px; padding: 14px 36px;
      font-weight: 700; font-size: 1rem; text-decoration: none;
      display: inline-flex; align-items: center; gap: 8px;
      transition: all .25s;
    }
    .btn-cta-white:hover { background: var(--gold); color: #fff; box-shadow: 0 8px 28px rgba(240,165,0,.4); }

    /* ── WORLD MAP ───────────────────────────────────── */
    .world-map-section {
      background: var(--light);
      padding: 80px 0 60px;
      text-align: center;
      position: relative;
    }
    .world-map-wrap {
      position: relative;
      max-width: 900px;
      margin: 40px auto 0;
    }
    .world-map-wrap img {
      width: 100%;
      filter: drop-shadow(0 10px 40px rgba(15,128,193,.18));
      opacity: .85;
    }
    .map-pin {
      position: absolute;
      width: 14px; height: 14px;
      background: var(--primary);
      border-radius: 50%;
      border: 3px solid #fff;
      box-shadow: 0 0 0 4px rgba(15,128,193,.3);
      cursor: pointer;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%   { box-shadow: 0 0 0 0 rgba(15,128,193,.5); }
      70%  { box-shadow: 0 0 0 10px rgba(15,128,193,0); }
      100% { box-shadow: 0 0 0 0 rgba(15,128,193,0); }
    }
    .map-pin[data-city="London"]  { top: 34%; left: 44%; }
    .map-pin[data-city="Paris"]   { top: 35%; left: 47%; }
    .map-pin[data-city="Dubai"]   { top: 51%; left: 62%; }
    .map-pin[data-city="Mumbai"]  { top: 55%; left: 68%; }
    .map-pin[data-city="Bangkok"] { top: 57%; left: 77%; }
    .map-pin[data-city="Tokyo"]   { top: 40%; left: 87%; }
    .map-pin[data-city="NYC"]     { top: 46%; left: 21%; }
    .map-pin[data-city="Sydney"]  { top: 86%; left: 91%; }

    /* ── CONTACT ─────────────────────────────────────── */
    #contact { background: #fff; }
    .contact-card {
      background: var(--gradient);
      border-radius: 24px;
      padding: 40px;
      color: #fff;
      height: 100%;
    }
    .contact-card h3 { font-size: 2.6rem; margin-bottom: 10px; }
    .contact-card p { color: rgba(255,255,255,.82); font-size: 17px; margin-bottom: 28px; }
    .contact-info-item {
      display: flex; align-items: flex-start; gap: 14px;
      margin-bottom: 20px;
    }
	.contact-card p a { color:#fff; }
    .contact-info-icon {
      width: 44px; height: 44px; flex-shrink: 0;
      background: rgba(255,255,255,.15);
      border-radius: 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.2rem;
    }
    .contact-info-item h6 { color: rgba(255,255,255,.7); font-size: 18px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 2px; font-family: 'DM Sans', sans-serif; }
    .contact-info-item p { color: #fff; font-size: 16px; margin: 0; }

    .contact-form-card {
      background: var(--light);
      border-radius: 24px;
      padding: 40px;
      height: 100%;
    }
    .contact-form-card .form-control, .contact-form-card .form-select {
      border: 1.5px solid #dde6ef;
      border-radius: 12px;
      padding: 12px 16px;
      font-size: .92rem;
    }
    .contact-form-card .form-control:focus, .contact-form-card .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(15,128,193,.1);
    }
    .btn-submit {
      background: var(--gradient);
      color: #fff; border: none;
      border-radius: 12px; padding: 13px 32px;
      font-weight: 600; font-size: 1rem; width: 100%;
      transition: all .25s;
    }
    .btn-submit:hover { box-shadow: 0 8px 24px rgba(15,128,193,.4); transform: translateY(-1px); }

    /* ── FOOTER ──────────────────────────────────────── */
    footer {
      background: #0d1e2c;
      padding: 70px 0 0;
      color: rgba(255,255,255,.7);
    }
    .footer-brand-text span:first-child { color: #7dd9ff; }
    .footer-brand-text span:last-child { color: rgba(255,255,255,.5); }
    footer p { font-size: .88rem; line-height: 1.7; color: rgba(255,255,255,.6); margin-top: 14px; }
    .footer-heading { color: #fff; font-size: 1rem; font-weight: 700; margin-bottom: 18px; letter-spacing: .5px; font-family: 'DM Sans', sans-serif; }
    .footer-links { list-style: none; padding: 0; }
    .footer-links li { margin-bottom: 10px; }
    .footer-links a { color: rgba(255,255,255,.6); text-decoration: none; font-size: .88rem; transition: color .2s, padding-left .2s; display: inline-flex; align-items: center; gap: 6px; }
    .footer-links a::before { content: '›'; color: var(--primary); }
    .footer-links a:hover { color: #fff; padding-left: 4px; }
    .social-links { display: flex; gap: 10px; margin-top: 20px; }
    .social-link {
      width: 38px; height: 38px;
      background: rgba(255,255,255,.08);
      border-radius: 10px;
      display: flex; align-items: center; justify-content: center;
      color: rgba(255,255,255,.7); font-size: 1rem;
      text-decoration: none;
      transition: background .25s, color .25s;
    }
    .social-link:hover { background: var(--primary); color: #fff; }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.08);
      margin-top: 50px;
      padding: 20px 0;
      display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
      font-size: .82rem; color: rgba(255,255,255,.4);
    }
    .footer-bottom a { color: rgba(255,255,255,.5); text-decoration: none; }
    .footer-bottom a:hover { color: var(--primary); }

    /* ── MISC ────────────────────────────────────────── */
    .divider { width: 60px; height: 4px; background: var(--gradient); border-radius: 2px; margin: 14px 0 24px; }
    .back-top {
      position: fixed; bottom: 26px; right: 26px;
      width: 46px; height: 46px;
      background: var(--gradient);
      border-radius: 12px; border: none;
      color: #fff; font-size: 1.2rem;
      display: flex; align-items: center; justify-content: center;
      box-shadow: 0 6px 20px rgba(15,128,193,.4);
      cursor: pointer;
      transition: transform .2s;
      z-index: 999;
    }
    .back-top:hover { transform: translateY(-3px); }

    @media (max-width: 991px) {
      .navbar-nav .nav-link { padding: 10px 16px !important; }
      .navbar-nav .nav-link::after { display: none; }
      .dropdown-submenu .dropdown-menu { position: static; box-shadow: none; padding-left: 14px; }
      section { padding: 60px 0; }
    }
	
	
	
.bg-navy { background: linear-gradient(160deg, #001d30 0%, #0a3d5c 50%, #0f80c1 100%); }
.text-gold { color: #C69E66; }
.text-navy { color: #001040; }


.tracking-widest { letter-spacing: 0.3em; }

.editorial-title { font-size: 3.5rem; }
.editorial-title-sm { font-size: 2rem; }

.lead-text {
    font-size: 1.25rem;
    font-weight: 300;
    color: #555;
    border-left: 2px solid #C69E66;
    padding-left: 40px;
}

/* Hero & Slider Overlap */
.hero-wrap {
    padding: 61px 0;
}

.lead-text-hero { font-weight: 300; opacity: 0.8; max-width: 500px; }

.slider-section {
    margin-top: 0px;
    z-index: 10;
    position: relative;
}

.slider-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    filter: grayscale(40%);
    transition: 0.8s ease;
}

.slider-img:hover { filter: grayscale(0%); transform: scale(1.02); }

/* Editorial Accordion */
.editorial-acc-item {
    border: none;
    background: none;
    border-bottom: 1px solid #c0c0c0;
}

.editorial-acc-btn {
    background: none !important;
    color: #001040 !important;
    font-size: 1.5rem;
    font-weight: 700;
    padding: 25px 0;
    box-shadow: none !important;
}

.day-num {
    color: #C69E66;
    font-style: italic;
    margin-right: 25px;
    font-size: 1.2rem;
}

.editorial-acc-body {
    padding: 0 0 25px 55px;
    color: #666;
    font-size: 1rem;
    line-height: 1.8;
}

/* Form Styles */
.enquiry-panel {
background: #eee;border-radius: 16px;
  padding: 24px 25px;
    border-top: 5px solid #001040;
}

.editorial-input {
    border-radius: 0;
    border: none;
    border-bottom: 1px solid #ddd;
    background: transparent;
    padding: 15px 0;
    box-shadow: none !important;
}

.editorial-input:focus {
    border-bottom-color: #C69E66;
}

.btn-navy {
    background: #001040;
    color: #fff;
    border-radius: 0;
    padding: 18px;
    transition: 0.4s;
}

.btn-navy:hover { background: #C69E66; }

/* Editorial Lists */
.editorial-list { list-style: none; padding: 0; }
.editorial-list li {
    font-size: 0.95rem;
    margin-bottom: 12px;
    display: flex;
}
.editorial-list li::before {
    content: "—";
    color: #C69E66;
    margin-right: 15px;
}

.dest-tag {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid #C69E66;
    padding-bottom: 4px;
}


/*floating-buttons*/

#floating-buttons_bttns .floating-buttons{position:fixed;right:25px;bottom:228px;z-index:9999;display:flex;flex-direction:column;gap:10px}
#floating-buttons_bttns .call-wrapper{position:relative}
#floating-buttons_bttns .call-numbers{ position: absolute; right: 51px; bottom: -7px; background: #dcdcdc; color: #000; border-radius: 8px; padding: 8px 10px; display: none; flex-direction: column; gap: 5px; min-width: 170px; }
#floating-buttons_bttns .call-numbers a{color:#000;text-decoration:none;font-size:14px}
#floating-buttons_bttns .call-numbers a:hover{text-decoration:underline}
#floating-buttons_bttns .call-wrapper:hover .call-numbers{display:flex}
#floating-buttons_bttns .floating-buttons a.btn{width:50px;height:50px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-size:20px;text-decoration:none;box-shadow:0 4px 10px #0003;transition:.3s}
#floating-buttons_bttns .call-btn{background:#0f80c1}
#floating-buttons_bttns .whatsapp-btn{background:#25D366}
#floating-buttons_bttns .btn:hover{transform:scale(1.1);background:#286d97}

/*floating-buttons*/


/*package page banner slider*/

.slider{position:relative;max-width:100%;height:400px;overflow:hidden}
.slides{display:flex;transition:transform .5s ease-in-out}
.slide{min-width:100%;border-radius: 16px;
  overflow: hidden;}
.slide img{width:100%;height:400px;object-fit:cover}
.prev,.next{position:absolute;top:50%;transform:translateY(-50%);background: none; color: #000;border:none;padding:10px 15px;cursor:pointer;font-size:29px}
.prev{left:10px}
.next{right:10px}
.prev:hover,.next:hover{ background: none; color: #0f7cbc; }
.dots{text-align:center;position:absolute;bottom:15px;width:100%}
.dot{height:12px;width:12px;margin:0 5px;display:inline-block;background:#bbb;border-radius:50%;cursor:pointer}
.dot.active{background:#333}

/*package page banner slider*/

.brand-logo img { width: 180px; }

@media screen and (min-width:280px) and (max-width:388px) {
    .brand-logo img { width: 113px; }
	.section-title { font-size: 23px; }
	.navbar { padding: 15px 20px; background: #fff;}

}
@media screen and (min-width:389px) and (max-width:476px) {
     .brand-logo img { width: 113px; }
	.section-title { font-size: 23px; }
.navbar { padding: 15px 20px; background: #fff;}

}
@media screen and (min-width:477px) and (max-width:575px) {
     .brand-logo img { width: 113px; }
	.section-title { font-size: 23px; }
.hero-section {
  transform: translateY(-80px);
}
}
@media screen and (min-width:576px) and (max-width:767px) {
   .brand-logo img { width: 113px; }
	.section-title { font-size: 23px; }
	.navbar {
  padding: 10px 15px;
}
.brand-logo img {
  width: 79px;
}
.navbar-brand {
  padding: 0px 0;
}
}
@media screen and (min-width:768px) and (max-width:991px) {
       .pkg-meta span { white-space: nowrap; }
	   .brand-logo img {
  width: 79px;
}
.navbar-brand {
  padding: 0px 0;
}
}
@media screen and (min-width:992px) and (max-width:1150px) {
    .pkg-meta span { white-space: nowrap; }
}
@media screen and (min-width:1150px) and (max-width:1240px) {
    .pkg-meta span { white-space: nowrap; }
} 
@media screen and (min-width:1241px) and (max-width:1340px) {
   .pkg-meta span { white-space: nowrap; }
}
@media screen and (min-width:1341px) and (max-width:1399px) {
      
}.pkg-meta span { white-space: nowrap; }
@media screen and (min-width:1400px) and (max-width:1499px) {
  
}
@media screen and (min-width:1500px) and (max-width:1599px) {
    
}
@media screen and (min-width:1600px) and (max-width:1699px) {

}
@media screen and (min-width:1700px) and (max-width:1799px) {

}
@media screen and (min-width:1800px) and (max-width:1899px) {
  
}
@media screen and (min-width:1900px) and (max-width:1999px) {
	
}
@media screen and (min-width:2000px) and (max-width:2999px) {

}
@media screen and (min-width:3000px) and (max-width:3999px) {

}
@media screen and (min-width:4000px) and (max-width:4999px) {

}
@media screen and (min-width:5000px) and (max-width:5999px) {

}