/* ==========================================================================
   BRIGHT LINKS L.L.C — UNIFIED LUXURY ROYAL NAVY & CYAN GLASS THEME
   100% RESPONSIVE FOR ALL GADGETS: MOBILE, TABLET, LAPTOP & DESKTOP
   ========================================================================== */

:root {
  --bg: #03152f;
  --bg2: #06264e;
  --panel: rgba(14, 48, 86, 0.65);
  --panel2: rgba(8, 31, 61, 0.85);
  --panel-light: #ffffff;
  
  --text: #ffffff;
  --text-dark: #062142;
  --muted: #b0c7de;
  --muted-dark: #4a637d;
  
  --cyan: #00d4ff;
  --cyan2: #4de8f4;
  --gold: #d8a53d;
  --gold-light: #ffc857;
  --gold-gradient: linear-gradient(135deg, #d8a53d 0%, #ffd700 50%, #ff9f1c 100%);
  
  --line: rgba(180, 214, 240, 0.18);
  --shadow: 0 28px 90px rgba(0, 0, 0, 0.35);
  --shadow-glow: 0 0 35px rgba(0, 212, 255, 0.25);
  --radius: 28px;
  --radius-sm: 14px;
}

/* Reset & Base Setup */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #03152f 0%, #062a55 25%, #031835 50%, #06264e 75%, #03152f 100%);
  color: #ffffff;
  font-family: "DM Sans", -apple-system, BlinkMacSystemFont, sans-serif;
  overflow-x: hidden;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button, input, select, textarea {
  font: inherit;
}

/* Scroll Margins & Offsets for All Sections (Prevents Fixed Header Overlap) */
.section, #home, #about, #services, #destinations, #finder, #offices, #reviews, #appointment, #contact {
  scroll-margin-top: 75px;
}

/* Utility Layout Classes — SINGLE-SCREEN COMPACT VIEWPORT FITTING */
.section {
  position: relative;
  padding: 28px max(20px, calc((100% - 1240px) / 2));
}

.page-glow {
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  filter: blur(120px);
  pointer-events: none;
  z-index: -1;
  opacity: 0.2;
}

.glow-a { background: var(--cyan); top: 15%; left: -250px; }
.glow-b { background: #236dff; right: -250px; top: 35%; }
.glow-c { background: var(--gold); bottom: 20%; left: 30%; }

/* NAVBAR & BRANDING — SLEEK SLIM COMPACT HEADER */
.navbar {
  position: fixed;
  z-index: 100;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1400px, calc(100% - 24px));
  height: 62px;
  padding: 6px 14px 6px 16px;
  border: 1px solid rgba(180, 220, 255, 0.25);
  border-radius: 20px;
  background: rgba(3, 21, 47, 0.94);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: auto;
}

.logo-wrap {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  background: transparent;
  transition: transform 0.3s ease;
}

.brand:hover .logo-wrap {
  transform: scale(1.06);
}

.shining-logo-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 10px;
  filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.85)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.4));
  animation: logoGlow 2.5s ease-in-out infinite alternate;
}

@keyframes logoGlow {
  0% {
    filter: drop-shadow(0 0 8px rgba(0, 212, 255, 0.7)) drop-shadow(0 0 16px rgba(0, 212, 255, 0.3));
    transform: scale(1);
  }
  100% {
    filter: drop-shadow(0 0 18px rgba(0, 212, 255, 1)) drop-shadow(0 0 32px rgba(0, 212, 255, 0.75)) drop-shadow(0 0 45px rgba(216, 165, 61, 0.5));
    transform: scale(1.05);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text b {
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: #ffffff;
}

.brand-text small {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 1.8px;
  color: var(--cyan);
  text-transform: uppercase;
}

/* Desktop Nav & Mega Menu with Hover Bridge */
.desktop-nav {
  display: flex;
  gap: 18px;
  align-items: center;
}

.desktop-nav a {
  font-weight: 700;
  font-size: 0.84rem;
  color: #e0eeff;
  transition: color 0.25s ease;
}

.desktop-nav a:hover {
  color: var(--cyan);
}

.nav-dropdown {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 10px 0;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 0;
}

.mega-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  width: 520px;
  max-height: calc(100vh - 80px);
  overflow-y: auto;
  padding: 10px 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border: 1px solid rgba(180, 220, 255, 0.25);
  border-radius: 18px;
  background: rgba(3, 20, 43, 0.98);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.55);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
}

.mega-menu::-webkit-scrollbar {
  width: 4px;
}

.mega-menu::-webkit-scrollbar-thumb {
  background: var(--cyan);
  border-radius: 4px;
}

.mega-menu.mega-menu-wide {
  width: min(840px, 95vw);
  grid-template-columns: repeat(3, 1fr);
  gap: 6px 10px;
}

/* Transparent Hover Bridge element to prevent dropdown from closing when cursor moves down */
.mega-menu::before {
  content: "";
  position: absolute;
  top: -24px;
  left: 0;
  right: 0;
  height: 24px;
  background: transparent;
}

.nav-dropdown:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-trust-card {
  text-decoration: none;
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease !important;
}

.hero-trust-card:hover {
  transform: translateY(-6px) scale(1.03) !important;
  border-color: var(--cyan) !important;
  box-shadow: 0 14px 40px rgba(0, 212, 255, 0.45) !important;
}

.mega-intro {
  grid-column: 1 / -1;
  padding: 8px 12px 6px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  margin-bottom: 2px;
}

.mega-intro strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.98rem;
  font-weight: 800;
  color: #fff;
}

.mega-intro p {
  font-size: 0.76rem;
  color: #7691a9;
  margin: 2px 0 0;
}

.mega-menu > a {
  display: flex;
  gap: 8px;
  align-items: center;
  padding: 6px 8px;
  border-radius: 10px;
  color: #d9e8f5;
  transition: background 0.2s ease;
}

.mega-menu > a:hover {
  background: rgba(0, 212, 255, 0.15);
}

.mega-menu > a > b {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.12);
  color: var(--cyan);
  font-size: 0.92rem;
  flex-shrink: 0;
}

.mega-menu > a > span {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.mega-menu > a > span > strong {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.82rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.15;
}

.mega-menu > a > span > small {
  display: block;
  font-size: 0.7rem;
  color: #8daac6;
  line-height: 1.2;
}
  display: block;
  font-size: 0.76rem;
  color: #8daac6;
  line-height: 1.3;
}

/* Nav Actions & Theme Switcher */
.nav-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

.menu-btn {
  display: none !important;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 0.82rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: #02162e;
  background: linear-gradient(110deg, var(--cyan), var(--cyan2));
  box-shadow: 0 14px 35px rgba(0, 212, 255, 0.3);
}

.btn-primary:hover {
  box-shadow: 0 18px 45px rgba(0, 212, 255, 0.45);
}

.btn-gold {
  color: #02162e;
  background: var(--gold-gradient);
  box-shadow: 0 14px 35px rgba(216, 165, 61, 0.35);
}

.btn-gold:hover {
  box-shadow: 0 18px 45px rgba(216, 165, 61, 0.55);
}

.btn-large {
  padding: 16px 26px;
  font-size: 0.98rem;
}

/* HERO SECTION — CINEMATIC GOLDEN SUNSET AIRPLANE BACKGROUND (CENTERED LUXURY SHELL) */
.hero {
  min-height: 620px;
  padding-top: 105px;
  padding-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(180deg, rgba(3, 21, 47, 0.65) 0%, rgba(6, 38, 76, 0.82) 65%, rgba(3, 21, 47, 0.98) 100%), url('assets/airplane_clouds_hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-centered-content {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero .eyebrow {
  color: #00d4ff !important;
  font-weight: 800;
  letter-spacing: 2px;
  font-size: 0.82rem;
}

.hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(34px, 4.5vw, 68px);
  line-height: 0.96;
  letter-spacing: -0.03em;
  margin: 12px 0;
  font-weight: 900;
  color: #ffffff !important;
  text-shadow: 0 4px 25px rgba(0, 0, 0, 0.7);
}

.script-accent {
  font-family: "Playfair Display", Georgia, serif;
  font-style: italic;
  color: #ffd700 !important;
  font-weight: 700;
}

.hero p {
  color: #d1e4f5 !important;
  font-size: 1rem;
  line-height: 1.6;
  max-width: 680px;
  margin: 0 auto;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.7);
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.hero-country-chip:hover {
  background: rgba(0, 212, 255, 0.28) !important;
  border-color: #00d4ff !important;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.glass-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(190, 226, 249, 0.2);
  background: rgba(13, 48, 82, 0.75);
  backdrop-filter: blur(20px);
  border-radius: 18px;
  padding: 12px 20px;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 16px;
  padding-top: 0;
}

.kicker {
  display: inline-block;
  color: #00d4ff !important;
  font-size: 0.72rem;
  letter-spacing: 1.5px;
  font-weight: 900;
  text-transform: uppercase;
}

/* SERVICES SECTION V8 — ROYAL NAVY GLASS CARDS & HIGH CONTRAST TEXT */
.services-v8 {
  background: transparent;
  padding-top: 10px !important;
  padding-bottom: 15px !important;
  scroll-margin-top: 75px !important;
}

.services-v8 .section-head {
  margin-bottom: 10px !important;
}

.services-v8 h2 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.05rem, 2.2vw, 1.35rem) !important;
  font-weight: 800;
  line-height: 1.15 !important;
}

.services-v8 p {
  color: #b0c7de !important;
  font-size: 0.78rem !important;
  line-height: 1.3 !important;
}

.services-v8-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
}

.service-card-v8 {
  padding: 12px 10px;
  border: 1px solid rgba(180, 220, 255, 0.2);
  border-radius: 14px;
  background: rgba(6, 28, 56, 0.82);
  backdrop-filter: blur(16px);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  color: #ffffff;
  transition: all 0.3s ease;
}

.service-card-v8:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

.service-card-v8.active {
  background: linear-gradient(135deg, rgba(6, 40, 75, 0.95), rgba(3, 21, 47, 0.98));
  color: #ffffff;
  border-color: #00d4ff;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.service-card-v8-icon {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  font-size: 1.1rem;
  margin-top: 4px;
}
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.service-card-v8-title {
  font-family: "Manrope", sans-serif;
  font-size: 1.1rem;
  font-weight: 800;
  margin-top: 16px;
  color: #ffffff !important;
}

.service-card-v8-text {
  font-size: 0.82rem;
  color: #b0c7de !important;
  margin-top: 8px;
  line-height: 1.45;
}

.service-card-v8.active .service-card-v8-text {
  color: #d1e4f5 !important;
}

.service-detail-v8 {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  align-items: center;
  gap: 25px;
  padding: 28px 32px;
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 24px;
  background: rgba(6, 30, 58, 0.92);
  backdrop-filter: blur(20px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
}

.service-detail-v8 h3 {
  color: #ffffff !important;
}

.service-detail-v8 p {
  color: #b0c7de !important;
}

#serviceV8Tags span {
  background: rgba(0, 212, 255, 0.15) !important;
  color: #00d4ff !important;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 800;
  border: 1px solid rgba(0, 212, 255, 0.4) !important;
  display: inline-block;
}

/* WORLDWIDE DESTINATIONS — HIGH CONTRAST HEADER & LUXURY PHOTO CARDS */
#destinations {
  scroll-margin-top: 75px !important;
  padding-top: 10px !important;
  padding-bottom: 15px !important;
}

#destinations .section-header {
  margin-bottom: 12px !important;
}

#destinations h2 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.1rem, 2.3vw, 1.45rem) !important;
  font-weight: 800;
  line-height: 1.15 !important;
  margin: 2px 0 3px !important;
}

#destinations p {
  color: #b0c7de !important;
  font-size: 0.8rem !important;
  line-height: 1.3 !important;
}

.world-destinations-v12 {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid rgba(180, 220, 255, 0.25);
  border-radius: 28px;
  overflow: hidden;
  background: rgba(3, 21, 47, 0.95);
  backdrop-filter: blur(20px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
}

.region-panel-v12 {
  border-right: 1px solid rgba(255, 255, 255, 0.1);
  padding: 34px 26px;
  background: linear-gradient(180deg, rgba(6, 38, 78, 0.9), rgba(3, 21, 47, 0.95));
  display: flex;
  flex-direction: column;
}

.region-panel-v12 h3 {
  color: #ffffff !important;
}

.region-panel-v12 p {
  color: #94b0c4 !important;
}

.popular-grid-v12 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.popular-country-v12 {
  position: relative;
  min-height: 165px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: left;
  cursor: pointer;
  transition: all 0.3s ease;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.popular-country-v12::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3, 21, 47, 0.15) 0%, rgba(3, 21, 47, 0.88) 100%);
  transition: background 0.3s ease;
  z-index: 1;
}

.popular-country-v12:hover {
  transform: translateY(-6px);
  border-color: #00d4ff;
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.3);
}

.popular-country-v12:hover::before {
  background: linear-gradient(180deg, rgba(3, 21, 47, 0.05) 0%, rgba(3, 21, 47, 0.75) 100%);
}

.country-icon {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 4px 10px;
  border-radius: 10px;
  background: rgba(3, 21, 47, 0.85);
  backdrop-filter: blur(10px);
  color: var(--cyan) !important;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  border: 1px solid rgba(0, 212, 255, 0.4);
}

.popular-country-v12 strong {
  position: relative;
  z-index: 2;
  display: block;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  color: #ffffff !important;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.popular-country-v12 small {
  position: relative;
  z-index: 2;
  display: block;
  font-size: 0.78rem;
  line-height: 1.45;
  color: #d1e4f5 !important;
  margin-top: 4px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.8);
}

.card-inquire-btn {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 13px;
  border-radius: 12px;
  background: var(--gold-gradient);
  color: #03152f !important;
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: 0 4px 15px rgba(216, 165, 61, 0.4);
  transition: all 0.25s ease;
  border: 0;
  cursor: pointer;
}

.popular-country-v12:hover .card-inquire-btn {
  transform: scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.6);
  background: #00d4ff;
  color: #03152f !important;
}

/* SMART PATHWAY FINDER — ROYAL NAVY GLASS SYSTEM */
#finder h2 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
}

#finder p {
  color: #b0c7de !important;
}

.finder-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 330px;
  border-radius: 18px;
  overflow: hidden;
  background: rgba(6, 28, 56, 0.95);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(180, 220, 255, 0.25);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.finder-side {
  padding: 20px 18px;
  background: linear-gradient(160deg, #062348 0%, #073e67 100%);
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.finder-main {
  padding: 20px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: rgba(3, 21, 47, 0.95);
}

.finder-step {
  display: none;
  animation: slideFadeStep 0.35s ease forwards;
}

.finder-step.active {
  display: block;
}

@keyframes slideFadeStep {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.choice-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 10px;
}

.choice-grid-4col {
  grid-template-columns: repeat(4, 1fr) !important;
}

@media (max-width: 991px) {
  .choice-grid-4col {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

.finder-choice {
  border: 1.5px solid rgba(180, 220, 255, 0.2);
  background: rgba(12, 45, 80, 0.65);
  border-radius: 12px;
  padding: 8px 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
  transition: all 0.2s ease;
  color: #ffffff;
}

.finder-choice:hover, .finder-choice.selected {
  border-color: #00d4ff;
  background: rgba(0, 212, 255, 0.12);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.finder-choice-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
  display: grid;
  place-items: center;
  font-size: 1.05rem;
  flex: 0 0 auto;
  border: 1px solid rgba(0, 212, 255, 0.3);
}

.finder-choice b {
  display: block;
  font-family: "Manrope", sans-serif;
  font-size: 0.88rem;
  font-weight: 800;
  color: #ffffff !important;
  line-height: 1.2;
}

.finder-choice small {
  display: block;
  font-size: 0.74rem;
  color: #b0c7de !important;
  margin-top: 1px;
  line-height: 1.25;
}

.progress-step {
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #b0c7de;
  font-weight: 800;
  font-size: 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.progress-step.active {
  background: #00d4ff;
  color: #03152f;
}

/* OFFICES SECTION — ROYAL NAVY GLASS CARDS & HIGH CONTRAST TEXT */
#offices h2 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
}

#offices p {
  color: #b0c7de !important;
}

.office-grid-v12 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.office-card-v12 {
  padding: 14px 16px;
  border: 1px solid rgba(180, 220, 255, 0.2);
  border-radius: 16px;
  background: rgba(6, 28, 56, 0.85);
  backdrop-filter: blur(16px);
  min-height: 140px;
  color: #ffffff;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.office-card-v12:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.2);
  border-color: #00d4ff;
}

.office-card-v12.featured {
  background: linear-gradient(135deg, rgba(6, 40, 75, 0.95), rgba(3, 21, 47, 0.98));
  border-color: rgba(0, 212, 255, 0.4);
}

.office-card-v12.featured h3 {
  color: #ffffff !important;
}

.office-card-v12.featured p {
  color: #d1e4f5 !important;
}

.office-card-v12 h3 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: 1.25rem;
  margin: 8px 0;
}

.office-card-v12 p {
  color: #b0c7de !important;
  font-size: 0.88rem;
  line-height: 1.5;
}

.office-card-v12 a {
  color: #00d4ff !important;
  font-weight: 800;
}

/* CONTACT CARD — ROYAL NAVY GLASS FINISH */
.contact-card {
  display: flex;
  justify-content: space-between;
  gap: 50px;
  align-items: center;
  padding: 50px;
  border-radius: 28px;
  background: rgba(6, 28, 56, 0.92) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.3) !important;
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.4);
}

.contact-card h2 {
  color: #ffffff !important;
  font-family: 'Manrope', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.2rem);
  margin: 8px 0;
}

.contact-card .script-accent {
  color: #ffd700 !important;
}

.contact-details a {
  color: #00d4ff !important;
  font-weight: 800;
  display: block;
  margin-bottom: 6px;
}

.contact-details span {
  color: #b0c7de !important;
}

/* PHONE INPUT GROUP WITH COUNTRY CODE SELECTOR */
.phone-input-group {
  display: flex;
  gap: 8px;
  width: 100%;
}

.phone-code-select {
  flex: 0 0 140px;
  border: 1px solid rgba(190, 222, 243, 0.25) !important;
  border-radius: 14px !important;
  background: #062348 !important;
  color: #ffffff !important;
  padding: 14px 10px !important;
  outline: none;
  font-size: 0.88rem !important;
  font-weight: 700;
  cursor: pointer;
}

.phone-code-select option {
  background: #062348 !important;
  color: #ffffff !important;
}

/* HIGH-CONTRAST FORM SELECT DROPDOWN FIX */
.appointment-form select {
  width: 100%;
  border: 1px solid rgba(190, 222, 243, 0.3) !important;
  border-radius: 14px !important;
  background: #062348 !important;
  color: #ffffff !important;
  padding: 14px 16px !important;
  outline: none;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.appointment-form select option {
  background: #062348 !important;
  color: #ffffff !important;
  padding: 10px !important;
}

/* REAL-TIME AUTOCOMPLETE DROPDOWN STYLING */
.autocomplete-wrapper {
  position: relative;
}

.autocomplete-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: #062348;
  border: 1px solid #00d4ff;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
  z-index: 150;
  display: none;
}

.autocomplete-dropdown.show {
  display: block;
}

.autocomplete-item {
  padding: 12px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  font-size: 0.92rem;
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.15s ease;
}

.autocomplete-item:last-child {
  border-bottom: 0;
}

.autocomplete-item:hover, .autocomplete-item.active {
  background: rgba(0, 212, 255, 0.15);
  color: #00d4ff;
}

.appointment-shell {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  padding: 22px 28px;
  background: linear-gradient(135deg, rgba(3, 21, 47, 0.98), rgba(6, 40, 75, 0.95));
  border: 1px solid rgba(0, 212, 255, 0.35);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.45);
}

.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
}

.appointment-form .form-row {
  display: contents;
}

.appointment-form label {
  font-size: 0.76rem;
  font-weight: 800;
  color: #d1e4f5;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.appointment-form input, .appointment-form select, .appointment-form textarea {
  width: 100%;
  border: 1px solid rgba(190, 222, 243, 0.25) !important;
  border-radius: 8px !important;
  background: #062348 !important;
  color: #ffffff !important;
  padding: 6px 10px !important;
  outline: none;
  font-size: 0.82rem !important;
  font-weight: 700;
}

.appointment-form textarea {
  height: 44px;
  resize: none;
}

.phone-code-select {
  flex: 0 0 100px !important;
  padding: 6px 4px !important;
  font-size: 0.76rem !important;
}

.appointment-form label[style*="grid-column: 1 / -1"],
.appointment-form .full-width,
.appointment-form button[type="submit"],
.appointment-form .form-note {
  grid-column: 1 / -1;
}

.appointment-form button[type="submit"] {
  padding: 10px 16px;
  font-size: 0.86rem;
  margin-top: 4px;
  border-radius: 12px;
}

.appointment-form input.highlight-field, .appointment-form select.highlight-field, .appointment-form textarea.highlight-field {
  border-color: var(--cyan) !important;
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.3);
  animation: pulseHighlight 1.5s ease 2;
}

@keyframes pulseHighlight {
  0%, 100% { box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(0, 212, 255, 0.6); }
}

footer {
  background: #020f24;
  color: #ffffff;
  padding: 40px max(24px, calc((100% - 1280px) / 2));
  padding-right: min(380px, 30vw) !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-links-wrap a {
  color: #d1e4f5;
  transition: color 0.2s ease;
}

.footer-links-wrap a:hover {
  color: var(--cyan);
}

.floating-chat {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(120deg, #25d366, #128c7e);
  color: #ffffff;
  border-radius: 999px;
  padding: 14px 22px;
  font-weight: 900;
  cursor: pointer;
}

.flight-transition {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: radial-gradient(circle at 50% 50%, #0b3f6b, #020e23 65%);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

.flight-transition.active {
  opacity: 1;
  visibility: visible;
}

.transition-logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.92);
  width: 140px;
  height: 140px;
  object-fit: cover;
  border-radius: 28px;
  z-index: 1;
  opacity: 0.92;
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.8)) drop-shadow(0 0 50px rgba(0, 212, 255, 0.4)) drop-shadow(0 0 75px rgba(216, 165, 61, 0.3));
}

.flight-transition.active .transition-logo {
  animation: transitionLogoPulse 0.85s ease-in-out infinite alternate;
}

@keyframes transitionLogoPulse {
  0% {
    transform: translate(-50%, -50%) scale(0.92);
    filter: drop-shadow(0 0 20px rgba(0, 212, 255, 0.7)) drop-shadow(0 0 40px rgba(0, 212, 255, 0.3));
  }
  100% {
    transform: translate(-50%, -50%) scale(1.08);
    filter: drop-shadow(0 0 35px rgba(0, 212, 255, 1)) drop-shadow(0 0 65px rgba(0, 212, 255, 0.6)) drop-shadow(0 0 90px rgba(255, 215, 0, 0.5));
  }
}

.transition-plane {
  position: absolute;
  left: -15%;
  top: 88%;
  font-size: 82px;
  color: var(--cyan);
  z-index: 2;
  filter: drop-shadow(0 0 25px rgba(0, 212, 255, 0.95)) drop-shadow(0 0 45px rgba(0, 212, 255, 0.6));
  transform: rotate(-36deg) scale(0.9);
}

.flight-transition.active .transition-plane {
  animation: flyAcross 0.85s cubic-bezier(0.25, 0.8, 0.25, 1) forwards;
}

/* SMOOTH DIAGONAL FLIGHT PATH (BOTTOM-LEFT TO TOP-RIGHT ACROSS LOGO) MATCHING USER SKETCH */
@keyframes flyAcross {
  0% {
    left: -15%;
    top: 88%;
    transform: rotate(-36deg) scale(0.85);
  }
  45% {
    left: 42%;
    top: 58%;
    transform: rotate(-33deg) scale(1.1);
  }
  100% {
    left: 115%;
    top: -15%;
    transform: rotate(-28deg) scale(1.35);
  }
}

@keyframes planeLoop {
  0%, 100% { transform: translate(0,0) rotate(-8deg); }
  50% { transform: translate(190px, -65px) rotate(-14deg); }
}

/* ==========================================================================
   COMPREHENSIVE MULTI-DEVICE RESPONSIVE BREAKPOINTS (ALL GADGETS)
   ========================================================================== */

/* 1. Laptops 100% Display Scaling & Standard Monitors (1200px - 1599px) */
@media (max-width: 1599px) {
  .section {
    padding: 28px max(20px, calc((100% - 1240px) / 2));
    scroll-margin-top: 75px;
  }
  .hero {
    min-height: 580px;
    padding-top: 100px;
  }
  .services-v8-grid { grid-template-columns: repeat(7, 1fr); gap: 8px; }
  .office-grid-v12 { grid-template-columns: repeat(4, 1fr); gap: 10px; }
  .popular-grid-v12 { grid-template-columns: repeat(3, 1fr); gap: 10px; }
}

/* 2. Compact Laptops (1366x768) & Tablets Landscape (992px - 1199px) */
@media (max-width: 1199px) {
  .section {
    padding: 24px 16px;
    scroll-margin-top: 70px;
  }
  .hero {
    min-height: auto;
    padding-top: 95px;
    padding-bottom: 30px;
  }
  .services-v8-grid { grid-template-columns: repeat(7, 1fr); }
  .office-grid-v12 { grid-template-columns: repeat(4, 1fr); }
  .service-detail-v8 { grid-template-columns: 1fr; gap: 14px; }
  .world-destinations-v12 { grid-template-columns: 240px 1fr; }
  .finder-shell { grid-template-columns: 240px 1fr; min-height: auto; }
}

/* 3. Tablets Portrait & Large Mobile Phones (768px - 991px) */
@media (max-width: 991px) {
  .section { padding: 30px 16px; scroll-margin-top: 70px; }
  .hero {
    padding-top: 100px;
    min-height: auto;
  }
  .hero-trust-row { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
  .services-v8-grid { grid-template-columns: repeat(3, 1fr); }
  .popular-grid-v12 { grid-template-columns: repeat(2, 1fr); }
  .world-destinations-v12 { grid-template-columns: 1fr; }
  .region-panel-v12 { border-right: 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .office-grid-v12 { grid-template-columns: repeat(2, 1fr); }
  .finder-shell { grid-template-columns: 1fr; }
  .choice-grid { grid-template-columns: 1fr 1fr; }
  .appointment-shell { grid-template-columns: 1fr; padding: 24px 20px; gap: 24px; }
  .desktop-nav { display: none; }
  footer { grid-template-columns: 1fr; gap: 20px; text-align: center; justify-items: center; }
}

/* 4. Small Mobile Phones (320px - 767px) */
@media (max-width: 767px) {
  .section { padding: 40px 14px; scroll-margin-top: 100px; }
  .navbar { width: calc(100% - 20px); height: 70px; padding: 6px 12px; top: 10px; }
  .brand b { font-size: 0.95rem; }
  .nav-cta { display: none; }
  .hero { padding-top: 105px; }
  .hero h1 { font-size: clamp(30px, 8vw, 44px); }
  .hero p { font-size: 0.92rem; }
  .hero-trust-row { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .hero-quick-countries { padding: 12px 10px; }
  .hero-country-chip { font-size: 0.8rem !important; padding: 6px 10px !important; }
  .services-v8-grid { grid-template-columns: 1fr; }
  .service-card-v8 { padding: 16px 14px; }
  .popular-grid-v12 { grid-template-columns: 1fr; }
  .popular-country-v12 { min-height: 130px; }
  .office-grid-v12 { grid-template-columns: 1fr; }
  .office-card-v12 { min-height: auto; padding: 20px; }
  .choice-grid { grid-template-columns: 1fr; }
  .finder-main { padding: 22px 16px; }
  .finder-side { padding: 24px 18px; }
  .contact-card { display: block; padding: 26px 18px; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .phone-input-group { flex-direction: row; }
  .phone-code-select { flex: 0 0 100px; font-size: 0.8rem !important; }
}

/* FLOATING DOCK & KNOWLEDGE BASE CHATBOT WIDGET */
.floating-dock {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 250;
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}

.floating-dock .floating-chat,
.floating-dock .chatbot-launcher {
  position: static !important;
  inset: auto !important;
  margin: 0 !important;
  display: flex !important;
}

.floating-chat {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  cursor: pointer;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  text-decoration: none;
}

.floating-chat:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 16px 40px rgba(37, 211, 102, 0.6);
}

.chatbot-launcher {
  display: flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #00d4ff, #062a4d);
  border: 1px solid rgba(0, 212, 255, 0.6);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.9rem;
  box-shadow: 0 12px 35px rgba(0, 212, 255, 0.4);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-launcher:hover {
  transform: translateY(-4px) scale(1.04);
  box-shadow: 0 18px 45px rgba(0, 212, 255, 0.6);
}

.notification-badge {
  background: #ffd700;
  color: #03152f;
  font-size: 0.72rem;
  font-weight: 900;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

.chatbot-widget {
  position: fixed;
  bottom: 84px;
  right: 24px;
  z-index: 260;
  width: min(390px, calc(100vw - 32px));
  height: min(550px, calc(100vh - 120px));
  background: rgba(3, 21, 47, 0.96);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 212, 255, 0.4);
  border-radius: 24px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.7), 0 0 45px rgba(0, 212, 255, 0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px) scale(0.95);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.chatbot-widget.open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.chatbot-header {
  padding: 14px 18px;
  background: linear-gradient(135deg, #062a4d, #0b4a70);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chatbot-title {
  display: flex;
  align-items: center;
  gap: 12px;
}

.chatbot-avatar {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--cyan);
}

.chatbot-title strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  color: #ffffff;
}

.chatbot-title small {
  font-size: 0.72rem;
  color: var(--cyan);
  display: flex;
  align-items: center;
  gap: 6px;
}

.online-dot {
  width: 8px;
  height: 8px;
  background: #25d366;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 8px #25d366;
}

.chatbot-close-btn {
  background: transparent;
  border: none;
  color: #a0b8d0;
  font-size: 1.2rem;
  cursor: pointer;
  padding: 4px 8px;
}

.chatbot-close-btn:hover {
  color: #fff;
}

.chatbot-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.chat-msg {
  display: flex;
}

.bot-msg {
  justify-content: flex-start;
}

.user-msg {
  justify-content: flex-end;
}

.msg-bubble {
  max-width: 86%;
  padding: 12px 14px;
  border-radius: 16px;
  font-size: 0.85rem;
  line-height: 1.5;
  white-space: pre-line;
}

.bot-msg .msg-bubble {
  background: rgba(11, 60, 100, 0.85);
  border: 1px solid rgba(0, 212, 255, 0.25);
  color: #e0eeff;
  border-bottom-left-radius: 4px;
}

.user-msg .msg-bubble {
  background: linear-gradient(135deg, var(--gold), #ff9f1c);
  color: #03152f;
  font-weight: 700;
  border-bottom-right-radius: 4px;
}

.chatbot-chips {
  padding: 8px 14px;
  display: flex;
  gap: 6px;
  overflow-x: auto;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(4, 24, 50, 0.6);
}

.chatbot-chips::-webkit-scrollbar {
  display: none;
}

.chat-chip {
  background: rgba(0, 212, 255, 0.12);
  border: 1px solid rgba(0, 212, 255, 0.3);
  color: var(--cyan);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chat-chip:hover {
  background: var(--cyan);
  color: #03152f;
}

.chatbot-input-form {
  display: flex;
  padding: 10px 14px;
  background: rgba(3, 21, 47, 0.98);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  gap: 8px;
}

.chatbot-input-form input {
  flex: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 14px;
  color: #fff;
  font-size: 0.85rem;
}

.chatbot-input-form input:focus {
  outline: none;
  border-color: var(--cyan);
}

.chatbot-send-btn {
  background: var(--cyan);
  border: none;
  color: #03152f;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}

.chatbot-send-btn:hover {
  transform: scale(1.08);
}

.chatbot-footer {
  padding: 8px 14px;
  background: #020f24;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.72rem;
  color: #7691a9;
}

/* ABOUT SECTION METRIC CARDS BRIGHTENING HOVER EFFECT */
.about-metric-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.about-metric-card:hover {
  transform: translateY(-8px) scale(1.04);
  background: rgba(6, 35, 72, 0.95);
  border-color: var(--cyan) !important;
  box-shadow: 0 20px 45px rgba(0, 212, 255, 0.4), 0 0 30px rgba(0, 212, 255, 0.25);
  filter: brightness(1.25);
}

.chat-wa-link {
  color: #25d366;
  font-weight: 800;
}

@media (max-width: 767px) {
  .chatbot-launcher { padding: 10px 14px; }
  .floating-dock { bottom: 10px; right: 10px; }
  .chatbot-widget { bottom: 60px; right: 10px; left: 10px; width: auto; }
}

/* GLOBAL PREVENT HORIZONTAL OVERFLOW & MOBILITY FIXES */
html, body {
  overflow-x: hidden !important;
  width: 100% !important;
  max-width: 100vw !important;
}

.mobile-toggle-btn {
  display: none;
}

/* MOBILE NAVBAR RESPONSIVENESS (< 991px) */
@media (max-width: 991px) {
  .desktop-nav {
    display: none !important;
  }

  .navbar {
    width: calc(100% - 24px) !important;
    left: 12px !important;
    transform: none !important;
    top: 8px !important;
    padding: 6px 14px !important;
    height: 54px !important;
    justify-content: space-between !important;
  }

  .mobile-toggle-btn {
    display: flex !important;
    flex-direction: column;
    justify-content: space-around;
    width: 32px;
    height: 26px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--cyan);
    border-radius: 8px;
    cursor: pointer;
    padding: 4px;
    margin-left: 6px;
  }

  .mobile-toggle-btn span {
    display: block;
    width: 100%;
    height: 2.5px;
    background: var(--cyan);
    border-radius: 4px;
  }

  .nav-cta {
    padding: 6px 12px !important;
    font-size: 0.76rem !important;
  }
}

@media (max-width: 600px) {
  .brand-text {
    font-size: 0.85rem !important;
  }
  .nav-cta {
    font-size: 0.72rem !important;
    padding: 5px 10px !important;
  }
}

/* MOBILE DRAWER MENU OVERLAY */
.mobile-menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(2, 14, 33, 0.97);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  overflow-y: auto;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-content {
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.mobile-menu-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.mobile-close-btn {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--cyan);
  color: var(--cyan);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mobile-nav-links a {
  font-family: 'Manrope', sans-serif;
  font-size: 0.95rem;
  font-weight: 800;
  color: #ffffff;
  padding: 8px 12px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: all 0.2s ease;
}

.mobile-nav-links a:hover {
  background: rgba(0, 212, 255, 0.15);
  color: var(--cyan);
}

/* ABOUT SECTION LAYOUT FOR LAPTOP & DESKTOP (>= 992px) */
.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 28px;
  align-items: center;
}

.about-metrics-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* FLOATING DOCK & MOBILE HERO RESPONSIVENESS (< 767px) */
@media (max-width: 991px) {
  .about-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .founder-card {
    margin-bottom: 0 !important;
  }
  .about-metrics-grid {
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
    margin-top: 10px !important;
  }
}

@media (max-width: 767px) {
  .btn, .btn-large {
    white-space: normal !important;
    text-align: center !important;
    word-break: break-word !important;
    max-width: 100% !important;
  }

  .floating-dock {
    bottom: 10px !important;
    right: 10px !important;
    gap: 6px !important;
  }

  .chatbot-launcher {
    padding: 8px 12px !important;
    font-size: 0.76rem !important;
  }

  .chatbot-launcher .launcher-text {
    display: inline !important;
    font-size: 0.74rem !important;
  }

  .floating-chat {
    padding: 8px 12px !important;
    font-size: 0.76rem !important;
  }

  .chatbot-widget {
    bottom: 60px !important;
    right: 10px !important;
    left: 10px !important;
    width: auto !important;
  }

  /* HERO SECTION RESPONSIVENESS ON MOBILE */
  .hero {
    min-height: 520px !important;
    padding-top: 85px !important;
    padding-bottom: 30px !important;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px) !important;
  }

  .hero p {
    font-size: 0.86rem !important;
    padding: 0 10px !important;
  }

  .hero-actions {
    flex-direction: column !important;
    width: 100% !important;
    gap: 10px !important;
    padding: 0 16px !important;
  }

  .hero-actions .btn {
    width: 100% !important;
    padding: 12px 18px !important;
  }

  .hero-trust-row {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
    padding: 0 12px !important;
  }

  #appointment {
    scroll-margin-top: 75px !important;
  }

  /* TABLET SPECIFIC APPOINTMENT TUNING (768px to 1199px) */
  @media (min-width: 768px) and (max-width: 1199px) {
    .appointment-shell {
      grid-template-columns: 1fr !important;
      gap: 16px !important;
      padding: 22px 24px !important;
    }

    .appointment-info-head .kicker {
      font-size: 0.74rem !important;
      padding: 3px 10px !important;
    }

    .appointment-info-head h2 {
      font-size: 1.65rem !important;
      margin: 6px 0 8px !important;
      line-height: 1.25 !important;
    }

    .appointment-info-head p {
      font-size: 0.88rem !important;
      line-height: 1.4 !important;
    }

    .appointment-form {
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 14px !important;
    }
  }

  @media (max-width: 767px) {
    .appointment-shell {
      grid-template-columns: 1fr !important;
      gap: 12px !important;
      padding: 14px 16px !important;
    }

    .appointment-info-head .kicker {
      font-size: 0.65rem !important;
      padding: 2px 8px !important;
    }

    .appointment-info-head h2 {
      font-size: 1.15rem !important;
      margin: 2px 0 4px !important;
      line-height: 1.25 !important;
    }

    .appointment-info-head p {
      font-size: 0.78rem !important;
      line-height: 1.3 !important;
    }

    .appointment-desktop-footer {
      display: none !important;
    }

    .appointment-form {
      grid-template-columns: 1fr !important;
      gap: 10px !important;
    }
  }

  /* TABLET SPECIFIC GRID LAYOUTS (601px to 1199px) */
  @media (min-width: 601px) and (max-width: 1199px) {
    .services-v8-grid {
      grid-template-columns: repeat(3, 1fr) !important;
      gap: 10px !important;
    }

    .service-card-v8 {
      padding: 12px 10px !important;
    }

    .service-card-v8-title {
      font-size: 0.88rem !important;
    }

    .service-card-v8-text {
      font-size: 0.74rem !important;
    }
  }

  .world-destinations-v12 {
    grid-template-columns: 1fr !important;
  }

  .popular-grid-v12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
  }

  .popular-country-v12 {
    min-height: 140px !important;
  }

  .office-grid-v12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .service-detail-v8 {
    margin-top: 12px !important;
    padding: 14px 16px !important;
    gap: 10px !important;
    border-radius: 16px !important;
    grid-template-columns: 1fr !important;
  }

  .service-detail-v8 h3 {
    font-size: 1.15rem !important;
    margin: 2px 0 !important;
  }

  .service-detail-v8 p {
    font-size: 0.78rem !important;
    line-height: 1.3 !important;
  }

  #serviceV8Tags span {
    padding: 3px 8px !important;
    font-size: 0.72rem !important;
    border-radius: 8px !important;
  }

  #discussServiceV8Btn {
    width: 100% !important;
    padding: 8px 14px !important;
    font-size: 0.84rem !important;
    border-radius: 10px !important;
    text-align: center !important;
  }

  #finder {
    scroll-margin-top: 75px !important;
  }

  .finder-shell {
    grid-template-columns: 1fr !important;
    gap: 12px !important;
    padding: 12px 14px !important;
  }

  .finder-side {
    padding: 12px 14px !important;
  }

  .finder-side-icon {
    width: 32px !important;
    height: 32px !important;
    font-size: 1rem !important;
    margin-bottom: 4px !important;
  }

  .finder-side h3 {
    font-size: 1.1rem !important;
    margin: 2px 0 !important;
  }

  .finder-side p {
    font-size: 0.76rem !important;
    line-height: 1.25 !important;
  }

  .finder-side-footer {
    display: none !important;
  }

  #homepage-reviews-grid {
    grid-template-columns: 1fr !important;
  }

  #all-reviews-grid {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 600px) {
  .services-v8-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .service-card-v8 {
    padding: 10px 8px !important;
  }

  .service-card-v8-icon {
    width: 28px !important;
    height: 28px !important;
    font-size: 0.95rem !important;
  }

  .service-card-v8-title {
    font-size: 0.84rem !important;
    line-height: 1.25 !important;
  }

  .service-card-v8-text {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
  }

  .popular-grid-v12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .popular-country-v12 {
    min-height: 115px !important;
    padding: 10px 8px !important;
    border-radius: 14px !important;
  }

  .country-icon {
    font-size: 0.68rem !important;
    padding: 2px 6px !important;
    border-radius: 6px !important;
    top: 6px !important;
    left: 6px !important;
  }

  .popular-country-v12 strong {
    font-size: 0.85rem !important;
    line-height: 1.15 !important;
  }

  .popular-country-v12 small {
    font-size: 0.66rem !important;
    line-height: 1.15 !important;
  }

  .office-grid-v12 {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 8px !important;
  }

  .office-card-v12 {
    padding: 10px 8px !important;
    border-radius: 14px !important;
  }

  .office-card-v12 h3 {
    font-size: 0.88rem !important;
    margin: 2px 0 !important;
  }

  .office-card-v12 p {
    font-size: 0.72rem !important;
    line-height: 1.25 !important;
    margin: 4px 0 !important;
  }

  .office-card-v12 > div:last-child {
    font-size: 0.7rem !important;
    padding-top: 6px !important;
    margin-top: 6px !important;
  }
}
