

/* ===============================
   MOBILE TOP BAR
================================ */

.mobile-top-bar {
  display: none;
}

@media (max-width: 768px) {

  .mobile-top-bar {
    display: block;
    background: #0b1c2d;
    color: #ffffff;
    font-size: 13px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    position: sticky;
    top: 0;
    z-index: 1001;
  }

  .mobile-top-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 14px;
  }

  /* Remove sticky from header on mobile */
  .header {
    position: relative !important;
    padding: 10px 0 8px 0 !important;
  }

  .header-flex {
    height: 56px !important;
  }

  .mobile-email {
    font-weight: 500;
    white-space: nowrap;
  }

  .mobile-top-bar select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: transparent url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") no-repeat right 8px center;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    padding: 6px 28px 6px 10px;
    font-size: 13px;
  }

  .mobile-top-bar option {
    color: #000;
  }
}





/* ===============================
   HEADER
================================ */
.header {
  padding: 20px 0 10px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.98);
  box-shadow: 0 6px 10px rgba(0,0,0,.06);
}

.header-flex {
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 80px;        /* desktop size */
  width: auto;
  
  image-rendering: auto;
}

/* Mobile logo size */
@media (max-width: 992px) {
  .logo-img {
    height: 64px;
  }
}

/* Very small phones */
@media (max-width: 380px) {
  .logo-img {
    height: 46px;
  }
}

/* ===============================
   DESKTOP NAV
================================ */
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.desktop-nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
}

/* Medium desktop screens (1200px - 1400px) */
@media (min-width: 993px) and (max-width: 1400px) {
  .desktop-nav {
    gap: 4px;
  }
  .desktop-nav a,
  .dropdown-toggle {
    font-size: 13px !important;
    padding: 8px 8px !important;
  }
  .nav-cta,
  .nav-contact {
    padding: 8px 12px !important;
    font-size: 13px !important;
  }
}

/* Smaller desktop screens (993px - 1200px) */
@media (min-width: 993px) and (max-width: 1200px) {
  .desktop-nav {
    gap: 2px;
  }
  .desktop-nav a,
  .dropdown-toggle {
    font-size: 12px !important;
    padding: 6px 6px !important;
    letter-spacing: 0 !important;
  }
  .nav-cta,
  .nav-contact {
    padding: 6px 10px !important;
    font-size: 12px !important;
  }
  .dropdown-toggle::before {
    font-size: 10px !important;
  }
}

/* Dropdown */
.dropdown {
  position: relative;
}

.dropdown-toggle {
  cursor: pointer;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;

  width: max-content;          /* ✅ auto width based on content */
  min-width: unset;            /* ❌ remove forced width */
  max-width: 320px;            /* safety limit */

  background: #ffffff;
  border-radius: 12px;
  padding: 6px 0;

  border: 1px solid #eef1f5;

  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.08),
    0 2px 6px rgba(0, 0, 0, 0.04);

  opacity: 0;
  visibility: hidden;

  transform: translateY(6px);
  transition:
    opacity 0.2s ease,
    transform 0.2s ease;
}

.dropdown-menu a {
  display: block;
  padding: 10px 18px;        /* compact height */
  font-size: 15px;
  font-weight: 500;
  color: #1f2937;
  white-space: nowrap;       /* 🔑 prevents ugly wrapping */

  transition:
    background 0.15s ease,
    padding-left 0.15s ease;
}

.dropdown-menu a:first-child {
  font-weight: 600;
}

.dropdown-menu a:hover {
  background: #f6fbf4;
  padding-left: 22px;
}

/* Primary CTA */
.nav-cta {
  padding: 9px 10px;     /* ↓ reduced height */
  border-radius: 999px;

  font-size: 14.5px;
  font-weight: 600;

  background: #6cc24a;
  color: #0b2545;

  box-shadow: none;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: #5bb53e;
}

/* Desktop Contact Button */
.nav-contact {
  padding: 9px 10px;     /* ↓ match primary */
  border-radius: 999px;

  font-size: 14.5px;
  font-weight: 500;

  border: 1.5px solid #d1d5db;
  color: #0b2545;

  background: transparent;
  transition: all 0.2s ease;
}

.nav-contact:hover {
  border-color: #6cc24a;
  color: #6cc24a;
}

/* ===============================
   HAMBURGER
================================ */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-toggle span {
  width: 26px;
  height: 3px;
  background: var(--dark-blue);
  border-radius: 2px;
}

/* ===============================
   MOBILE NAV
================================ */
.mobile-nav {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 9999;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.mobile-nav.active {
  transform: translateX(0);
}

/* Panels */
.mobile-panel {
  position: absolute;
  inset: 0;
  background: #fff;
  transform: translateX(100%);
  transition: transform .35s ease;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

.mobile-panel.active {
  transform: translateX(0);
}

/* ===============================
   MOBILE HEADER
================================ */
.mobile-nav-header {
  padding: 14px 16px;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.close-btn,
.back-btn {
  background: none;
  border: none;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  color: var(--dark-blue);
}

/* ===============================
   MOBILE BODY
================================ */
.mobile-nav-body {
  padding: 16px;
  overflow-y: auto;
  overflow-x: hidden;
  max-height: calc(100vh - 72px);
  width: 100%;
  box-sizing: border-box;
}

/* Prevent body scroll when mobile menu is open */
body.mobile-menu-open {
  overflow: hidden;
}

/* Reset buttons */
.mobile-nav button {
  all: unset;
  box-sizing: border-box;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
}

/* Menu cards */
.mobile-link,
.mobile-next {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 500;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eef1f5;
  box-shadow: 0 4px 14px rgba(0,0,0,.035);
  transition: all .2s ease;
}

.mobile-link:active,
.mobile-next:active {
  transform: scale(.98);
  background: #f9fafb;
}

/* Arrow */
.mobile-next::after {
  content: "›";
  font-size: 20px;
  color: #9ca3af;
}

/* CTA */
.mobile-cta {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  margin: 20px 0 26px;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--green), #57b93a);
  color: #fff;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(108,194,74,.45);
}

/* ===============================
   CONTACT
================================ */
.mobile-contact {
  background: #f9fafb;
  border-radius: 16px;
  padding: 16px;
}

.mobile-contact p {
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mobile-contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 15px;
  font-weight: 500;
  color: var(--dark-blue);
}

/* Icons */
.mobile-contact a[href^="mailto"]::before {
  content: "✉";
  color: var(--green);
}

.mobile-contact a[href^="tel"]::before {
  content: "☎";
  color: var(--green);
}

.availability {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  color: var(--text-muted);
}

/* ===============================
   WHATSAPP FLOAT
================================ */
.whatsapp-float {
  display: none;
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: var(--green);
  color: #fff;
  padding: 14px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 10px 25px rgba(108,194,74,.45);
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 992px) {
  .desktop-nav { display: none; }
  .menu-toggle { display: flex; }
  .nav-contact { display: none; }
  .whatsapp-float { display: block; }
}

/* =========================================
   FINAL MOBILE MENU FIX (DO NOT REMOVE)
========================================= */

/* Make mobile menu scrollable on small screens */
.mobile-nav {
  overflow-y: auto;
}

/* Ensure body scroll does not break */
.mobile-panel {
  overflow-y: auto;
}

/* FORCE all menu items into card style */
.mobile-link,
.mobile-nav button.mobile-next {
  display: flex;
  align-items: center;
  justify-content: space-between;

  background: #ffffff;
  border-radius: 14px;
  padding: 14px 16px;
  margin-bottom: 10px;

  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);

  border: 1px solid #eef1f5;
  box-shadow: 0 4px 14px rgba(0,0,0,0.04);
}

/* Arrow alignment */
.mobile-nav button.mobile-next::after {
  content: "›";
  font-size: 20px;
  color: #9ca3af;
  margin-left: auto;
}

/* Tap feedback */
.mobile-link:active,
.mobile-nav button.mobile-next:active {
  transform: scale(0.98);
  background: #f9fafb;
}

/* Reduce vertical density for small screens */
@media (max-height: 700px) {
  .mobile-link,
  .mobile-nav button.mobile-next {
    padding: 12px 14px;
    font-size: 15px;
  }

  .mobile-cta {
    height: 48px;
    font-size: 16px;
  }
}

.mobile-nav button.mobile-next[data-target="packageMenu"] {
  border-color: rgba(108,194,74,0.4);
}

/* ===============================
   PREMIUM COMPACT SCALE
================================ */

.mobile-nav {
  font-size: 15px;
}

.mobile-nav-body {
  padding: 12px 14px;
}

/* Navigation cards */
.mobile-link,
.mobile-nav button.mobile-next {
  padding: 12px 14px;
  margin-bottom: 8px;

  border-radius: 10px;

  border: 1px solid #e3e7ed;
  background: #ffffff;

  font-size: 15px;
  font-weight: 500;

  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}


/* Improve borders visibility */
.mobile-link,
.mobile-nav button.mobile-next {
  border-color: #dbe1ea;
}

.mobile-link:hover,
.mobile-nav button.mobile-next:hover {
  border-color: var(--green);
}

/* ===============================
   CLOSE BUTTON – PREMIUM
================================ */

.close-btn {
  width: 34px;
  height: 34px;

  border-radius: 50%;
  border: 1px solid #e5e7eb;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 20px;
  font-weight: 400;

  background: #ffffff;
  color: #111827;

  cursor: pointer;
  transition: all 0.2s ease;
}

.close-btn:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

/* Compact mobile header */
.mobile-nav-header {
  padding: 12px 14px;
}

.mobile-nav-header .logo {
  font-size: 20px;
}

.mobile-cta {
  height: 48px;
  font-size: 16px;
  margin: 16px 0 20px;
  box-shadow: 0 8px 20px rgba(108,194,74,0.35);
}

.mobile-contact {
  padding: 14px;
  border-radius: 12px;
}

.mobile-contact p {
  font-size: 11px;
  margin-bottom: 6px;
}

.mobile-contact a {
  font-size: 14px;
  padding: 6px 0;
}

/* =========================================
   MOBILE MENU CLOSE BUTTON – FIX & POLISH
========================================= */

.mobile-nav-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  position: sticky;
  top: 0;
  background: #ffffff;
  z-index: 10;
}

/* Logo spacing safety */
/* MOBILE LOGO */
.mobile-logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* Small phones */
@media (max-width: 380px) {
  .mobile-logo img {
    height: 50px;
  }
}


/* Close button */
.close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #e5e7eb;
  background: #ffffff;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;

  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
  transition: all 0.25s ease;
}

/* Tap feedback */
.close-btn:active {
  transform: scale(0.92);
  background: #f9fafb;
}

/* ==================================================
   FORCE FIX – MOBILE MENU CLOSE BUTTON (FINAL)
================================================== */

/* Header layout */
.mobile-nav-header {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 16px 20px !important;
  position: sticky !important;
  top: 0 !important;
  background: #ffffff !important;
  z-index: 9999 !important;
}

/* Logo safety */
.mobile-nav-header .logo {
  font-size: 22px !important;
  font-weight: 700 !important;
}

/* CLOSE BUTTON – OVERRIDE EVERYTHING */
.close-btn {
  all: unset !important;

  width: 42px !important;
  height: 42px !important;
  min-width: 42px !important;
  min-height: 42px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  font-size: 22px !important;
  font-weight: 600 !important;
  line-height: 1 !important;

  border-radius: 50% !important;
  border: 1px solid #e5e7eb !important;
  background: #ffffff !important;
  color: #111827 !important;

  cursor: pointer !important;

  box-shadow: 0 8px 20px rgba(0,0,0,0.12) !important;

  margin-left: 12px !important;
}

/* Touch feedback */
.close-btn:active {
  transform: scale(0.92) !important;
  background: #f9fafb !important;
}

/* ======================================
   DESKTOP NAV – PREMIUM TRAVEL BAR
====================================== */

/* =================================================
   DESKTOP NAV – REFINED TYPOGRAPHY & ANIMATION
================================================= */

@media (min-width: 993px) {

  /* ===== NAV TEXT – FIX SIZE & WEIGHT ===== */
      .desktop-nav > a, .dropdown-toggle {
        font-size: 14.8px;
        font-weight: 600;
        letter-spacing: 0.06em;
        color: #0b2545;
        padding: 10px 15px;
    }
}

  /* ===== DROPDOWN TRIGGER ARROW – ALIGNMENT ===== */
  .dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 8px;                       /* ⬆ breathing space */
  }

  .dropdown-toggle::before {
    content: "▾";
    font-size: 12px;
    color: #6cc24a;
    transform: translateY(-1px);
    transition: transform .25s ease;
  }

  /* Rotate arrow smoothly */
  .dropdown:hover .dropdown-toggle::before {
    transform: rotate(180deg);
  }

  /* ===== UNDERLINE POSITION FIX ===== */
  .desktop-nav > a::after,
  .dropdown-toggle::after {
    bottom: 8px;                    /* aligns underline better */
  }

  /* ===== DROPDOWN MENU – SMOOTH MOTION ===== */
  .dropdown-menu {
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px) scale(0.98);

    transition:
      opacity .25s ease,
      transform .35s cubic-bezier(.16,1,.3,1),
      visibility 0s linear .25s;
  }

  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    transition-delay: 0s;
  }

  /* ===== DROPDOWN ITEMS – MORE PRESENCE ===== */
  .dropdown-menu a {
    font-size: 15px;
    font-weight: 500;
    padding: 14px 26px;
  }

  .dropdown-menu a:first-child {
    font-weight: 600;
  }

  /* ===== CTA BUTTON TEXT – BALANCE ===== */
  .nav-cta,
  .nav-contact {
    font-size: 14.5px;
    letter-spacing: 0.04em;
  }



/* ================= Currency ================= */

/* ===============================
   TOP BAR – PREMIUM (DESKTOP ONLY)
================================ */

/* Hide on mobile */
@media (max-width: 768px) {
  .top-bar {
    display: none !important;
  }
}

/* BAR */
.top-bar {
  background: linear-gradient(180deg, #0b1c2d, #071525);
  color: #ffffff;
  font-size: 13.5px;
  line-height: 1;
}

/* INNER FLEX */
.top-bar-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 42px;                 /* ✅ better height */
  padding: 6px 0;
}

/* LEFT SIDE */
.top-left {
  display: flex;
  align-items: center;
  gap: 18px;
}

.top-left span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  white-space: nowrap;
  color: #e5e7eb;
}

/* RIGHT SIDE */
.top-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* SOCIAL ICONS */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #48bb78;
  transition: all 0.25s ease;
}

.social-icon:hover {
  background: #48bb78;
  color: #0b1c2d;
  transform: translateY(-2px);
}

.social-icon svg {
  width: 16px;
  height: 16px;
}

/* ===============================
   CURRENCY SELECT
================================ */

.currency-form select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: rgba(255,255,255,0.08);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 999px;

  padding: 6px 28px 6px 12px;
  font-size: 16px;
  font-weight: 600;

  cursor: pointer;
  outline: none;

  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 10px 6px;
}

.currency-form {
  position: relative;
}

.currency-form::after {
  content: '';
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 6px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%23ffffff' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  pointer-events: none;
}

.currency-form select:hover {
  background: rgba(255,255,255,0.14);
}

/* Dropdown items */
.currency-form option {
  color: #000;
  font-weight: 500;
}

/* ===============================
   SOCIAL ICONS
================================ */

.top-right a {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);

  color: #ffffff;
  font-size: 14px;
  text-decoration: none;

  transition: all 0.2s ease;
}

.top-right a:hover {
  background: #6cc24a;
  border-color: #6cc24a;
  color: #0b2545;
}




