/* MedBridge Overseas Custom Stylesheet */
:root {
  /* Premium 4-color palette + neutral background */
  --navy: #0B2545;       /* Primary dark blue: Headers, footer, body text */
  --ocean: #134074;      /* Brand primary blue: accents, card borders */
  --sky: #8DA9C4;        /* Accent light blue: soft highlights, paths */
  --gold: #EE9B00;       /* Gold/Amber Accent: High-contrast CTAs and tags */
  
  --ivory: #EEF4F8;      /* Clean neutral body background */
  --white: #ffffff;
  --line: rgba(11, 37, 69, 0.1);
  --shadow-sm: 0 2px 8px rgba(11, 37, 69, 0.04);
  --shadow-md: 0 8px 30px rgba(11, 37, 69, 0.08);
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--navy);
  background: var(--ivory);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, .display {
  font-family: 'Fraunces', serif;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--navy);
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  display: block;
}

.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ocean);
  margin-bottom: 8px;
  display: inline-block;
}

:focus-visible {
  outline: 2px solid var(--ocean);
  outline-offset: 3px;
}

/* --- NAVIGATION HEADER --- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(238, 244, 248, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: var(--transition);
}

nav.wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
}

.logo {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 22px;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-logo-img {
  height: 64px;
  width: auto;
  object-fit: contain;
  transition: var(--transition);
}

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

.footer-logo-img {
  height: 68px;
}

.nav-links {
  display: flex;
  gap: 32px;
  font-size: 14px;
  font-weight: 600;
}

.nav-links a {
  opacity: 0.8;
  padding: 4px 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ocean);
  transition: var(--transition);
}

.nav-links a:hover {
  opacity: 1;
  color: var(--ocean);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--navy);
  transition: var(--transition);
  cursor: pointer;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-primary:hover {
  background: var(--ocean);
  border-color: var(--ocean);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(19, 64, 116, 0.2);
}

.btn-accent {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.btn-accent:hover {
  background: var(--white);
  border-color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(238, 155, 0, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
}

.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 30px;
  height: 24px;
  position: relative;
  z-index: 110;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2.5px;
  background-color: var(--navy);
  border-radius: 2px;
  position: absolute;
  transition: var(--transition);
}

.menu-toggle span:nth-child(1) { top: 0; }
.menu-toggle span:nth-child(2) { top: 10px; }
.menu-toggle span:nth-child(3) { top: 20px; }

.menu-toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

/* --- HERO SECTION --- */
.hero {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero .wrap {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(36px, 4.5vw, 54px);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero h1 em {
  font-style: italic;
  color: var(--ocean);
}

.hero p.lead {
  font-size: 18px;
  color: var(--ocean);
  opacity: 0.9;
  max-width: 500px;
  margin-bottom: 32px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}

.trust-row {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-num {
  font-family: 'Fraunces', serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.2;
}

.trust-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--sky);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.route-panel {
  background: var(--navy);
  border-radius: 24px;
  padding: 36px 32px;
  position: relative;
  min-height: 440px;
  overflow: hidden;
  color: var(--white);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.route-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(141, 169, 196, 0.2), transparent 45%),
    radial-gradient(circle at 85% 75%, rgba(19, 64, 116, 0.3), transparent 50%);
  pointer-events: none;
}

.route-title {
  position: relative;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sky);
}

svg.route {
  position: relative;
  width: 100%;
  height: 280px;
}

.route-node circle {
  fill: var(--white);
  stroke: var(--sky);
  stroke-width: 1.5;
  transition: var(--transition);
}

.route-node:hover circle {
  fill: var(--gold);
  transform: scale(1.3);
  transform-origin: center;
}

.route-node text {
  fill: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 700;
}

.route-node .sub {
  fill: var(--sky);
  font-size: 10px;
  font-weight: 400;
}

path.flight {
  fill: none;
  stroke: var(--sky);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-dasharray: 6 6;
  animation: flightDash 30s linear infinite;
}

@keyframes flightDash {
  to {
    stroke-dashoffset: -400;
  }
}

.origin circle {
  fill: var(--gold);
  stroke: var(--gold);
}

/* --- SECTIONS SHARED --- */
section {
  padding: 100px 0;
}

.section-head {
  max-width: 680px;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-top: 12px;
  line-height: 1.2;
}

.section-head p {
  color: var(--ocean);
  opacity: 0.85;
  margin-top: 16px;
  font-size: 16px;
}

/* --- SERVICES --- */
.services {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.service-card {
  background: var(--white);
  padding: 36px 32px;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--ivory);
  transform: translateY(-2px);
  box-shadow: inset 0 0 0 1px var(--sky);
}

.service-card .num {
  font-family: 'Fraunces', serif;
  font-size: 14px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: block;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14.5px;
  color: var(--navy);
  opacity: 0.8;
}

/* --- PROCESS --- */
.process-list {
  position: relative;
  max-width: 800px;
  margin-top: 20px;
}

.process-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 28px;
  padding-bottom: 40px;
  position: relative;
}

.process-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 32px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 22px;
  font-weight: 600;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.process-item:hover .step-num {
  background: var(--ocean);
  transform: scale(1.08);
}

.process-item h3 {
  font-size: 20px;
  margin-bottom: 8px;
  margin-top: 14px;
}

.process-item p {
  color: var(--navy);
  opacity: 0.8;
  font-size: 15.5px;
  max-width: 580px;
}

/* --- DESTINATIONS --- */
.destinations {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card {
  background: var(--ivory);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 28px 24px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.dest-card:hover {
  border-color: var(--ocean);
  background: var(--white);
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.dest-card h3 {
  font-size: 20px;
  margin-bottom: 10px;
}

.dest-card p {
  font-size: 14px;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 16px;
  flex-grow: 1;
}

.dest-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--ocean);
  background: rgba(19, 64, 116, 0.08);
  padding: 6px 12px;
  border-radius: 100px;
  margin-bottom: 16px;
  width: fit-content;
}

.dest-highlight {
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-top: auto;
  border-top: 1px dashed var(--line);
  padding-top: 12px;
}

/* --- TESTIMONIALS --- */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.testi-quote {
  font-family: 'Fraunces', serif;
  font-size: 16.5px;
  font-style: italic;
  margin-bottom: 24px;
  color: var(--navy);
  line-height: 1.5;
}

.testi-meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--navy);
  font-size: 14px;
}

.testi-name {
  font-size: 14px;
  font-weight: 700;
}

.testi-role {
  font-size: 12px;
  color: var(--sky);
  font-weight: 600;
}

/* --- FAQ --- */
.faq {
  background: var(--white);
  border-top: 1px solid var(--line);
}

.faq-list {
  max-width: 800px;
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: 'Fraunces', serif;
  font-size: 18px;
  color: var(--navy);
  gap: 24px;
}

.faq-q:hover {
  color: var(--ocean);
}

.faq-q .icon {
  font-size: 24px;
  color: var(--ocean);
  transition: var(--transition);
  flex-shrink: 0;
}

.faq-item.open .faq-q .icon {
  transform: rotate(45deg);
  color: var(--gold);
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: var(--transition);
}

.faq-a p {
  padding-bottom: 24px;
  color: var(--navy);
  opacity: 0.8;
  font-size: 15.5px;
  max-width: 680px;
}

/* --- CONTACT & LEAD FORM --- */
.contact-section {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info {
  max-width: 480px;
}

.contact-info h2 {
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 20px;
}

.contact-info p {
  font-size: 16px;
  color: var(--navy);
  opacity: 0.8;
  margin-bottom: 32px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(19, 64, 116, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: var(--ocean);
}

.contact-item a {
  font-weight: 700;
  font-size: 16px;
}

.contact-item a:hover {
  color: var(--ocean);
}

.form-panel {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}

.form-panel h3 {
  font-size: 22px;
  margin-bottom: 8px;
}

.form-panel p {
  font-size: 14px;
  color: var(--sky);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select {
  padding: 12px 16px;
  border-radius: 8px;
  border: 1.5px solid var(--line);
  font-family: inherit;
  font-size: 15px;
  color: var(--navy);
  background: var(--ivory);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--ocean);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* --- FOOTER --- */
footer {
  background: var(--navy);
  color: var(--sky);
  padding: 80px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
}

footer h4 {
  color: var(--white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

footer .logo {
  color: var(--white);
  margin-bottom: 16px;
}

footer p {
  font-size: 14.5px;
  color: var(--sky);
  max-width: 280px;
  line-height: 1.6;
}

footer ul {
  list-style: none;
}

footer li {
  margin-bottom: 12px;
  font-size: 14.5px;
}

footer a {
  color: var(--sky);
}

footer a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--sky);
  flex-wrap: wrap;
  gap: 16px;
}

/* --- CHATBOT TOGGLE BUTTON --- */
.chatbot-toggle {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 900;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 28px rgba(11, 37, 69, 0.25);
  transition: var(--transition);
}

.chatbot-toggle:hover {
  background: var(--ocean);
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 32px rgba(11, 37, 69, 0.3);
}

.chatbot-toggle.hidden {
  transform: scale(0);
  opacity: 0;
  pointer-events: none;
}

/* --- CHATBOT WINDOW --- */
.chatbot-window {
  position: fixed;
  bottom: 104px;
  right: 32px;
  z-index: 910;
  width: 400px;
  max-height: 560px;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 20px 60px rgba(11, 37, 69, 0.18), 0 0 0 1px var(--line);
  display: flex;
  flex-direction: column;
  overflow: hidden;

  /* Hidden by default */
  transform: translateY(24px) scale(0.95);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
              opacity 0.25s ease,
              visibility 0.25s ease;
}

.chatbot-window.open {
  transform: translateY(0) scale(1);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Header */
.chatbot-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}

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

.chatbot-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ocean);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}

.chatbot-header-title {
  font-family: 'Fraunces', serif;
  font-weight: 700;
  font-size: 16px;
}

.chatbot-header-status {
  font-size: 11px;
  color: var(--sky);
  margin-top: 2px;
}

.chatbot-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 28px;
  cursor: pointer;
  line-height: 1;
  padding: 0 4px;
  opacity: 0.7;
  transition: var(--transition);
}

.chatbot-close:hover {
  opacity: 1;
  transform: scale(1.1);
}

/* Body / Messages */
.chatbot-body {
  flex: 1;
  overflow-y: auto;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 280px;
  max-height: 360px;
  background: var(--ivory);
}

.chat-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  word-wrap: break-word;
  animation: bubbleIn 0.25s ease-out;
}

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

.chat-bot {
  background: var(--white);
  color: var(--navy);
  align-self: flex-start;
  border-bottom-left-radius: 6px;
  box-shadow: 0 1px 4px rgba(11, 37, 69, 0.06);
}

.chat-user {
  background: var(--navy);
  color: var(--white);
  align-self: flex-end;
  border-bottom-right-radius: 6px;
}

/* Typing indicator */
.typing-indicator {
  display: flex;
  gap: 5px;
  padding: 14px 18px;
}

.typing-indicator span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sky);
  animation: typingBounce 1.2s infinite ease-in-out;
}

.typing-indicator span:nth-child(2) {
  animation-delay: 0.15s;
}

.typing-indicator span:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes typingBounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Quick Reply Buttons */
.chat-quick-replies {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-self: flex-start;
  animation: bubbleIn 0.25s ease-out;
}

.chat-quick-btn {
  padding: 8px 16px;
  border-radius: 100px;
  border: 1.5px solid var(--ocean);
  background: var(--white);
  color: var(--ocean);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}

.chat-quick-btn:hover {
  background: var(--ocean);
  color: var(--white);
  transform: translateY(-1px);
}

/* Footer / Input */
.chatbot-footer {
  display: flex;
  align-items: center;
  padding: 12px 16px;
  border-top: 1px solid var(--line);
  background: var(--white);
  gap: 8px;
  flex-shrink: 0;
}

.chatbot-input {
  flex: 1;
  border: 1.5px solid var(--line);
  border-radius: 100px;
  padding: 10px 18px;
  font-family: inherit;
  font-size: 14px;
  color: var(--navy);
  background: var(--ivory);
  transition: var(--transition);
}

.chatbot-input:focus {
  border-color: var(--ocean);
  outline: none;
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(19, 64, 116, 0.1);
}

.chatbot-send {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.chatbot-send:hover {
  background: var(--ocean);
  transform: scale(1.06);
}


/* --- RESPONSIVE MEDIA QUERIES --- */
.mobile-menu-cta {
  display: none;
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.4);
  padding: 12px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: var(--transition);
}

.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--white);
  color: var(--white);
}

@media (max-width: 1024px) {
  .hero .wrap {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
  }
  .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(247, 249, 252, 0.95);
    backdrop-filter: blur(12px);
  }
  
  .brand-logo-img {
    height: 48px;
  }

  .logo span {
    font-size: 18px;
  }

  /* Completely hide header nav-cta on mobile bar to prevent squishing & text wrapping */
  .nav-cta {
    display: none !important;
  }
  
  .menu-toggle {
    display: block;
    z-index: 1002;
    width: 32px;
    height: 24px;
  }

  /* When mobile drawer is open, turn X lines crisp white so it's clearly readable */
  .menu-toggle.open span {
    background-color: var(--white) !important;
  }
  
  /* Mobile Navigation Full Overlay Drawer */
  .nav-links {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--navy);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    font-size: 20px;
    padding: 80px 24px 40px;
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease, visibility 0.3s ease;
    overflow-y: auto;
  }
  
  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }
  
  .nav-links a {
    color: var(--white);
    font-family: 'Fraunces', serif;
    font-size: 24px;
    font-weight: 600;
    opacity: 0.9;
    padding: 8px 16px;
    border-radius: 8px;
    transition: var(--transition);
  }

  .nav-links a:hover,
  .nav-links a:active {
    opacity: 1;
    color: var(--gold);
    background: rgba(255, 255, 255, 0.08);
  }

  .mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
    width: 100%;
    max-width: 280px;
  }

  .mobile-menu-cta .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    padding: 14px 20px;
  }

  .hero .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero p.lead {
    margin-left: auto;
    margin-right: auto;
    max-width: 580px;
  }
  
  .hero-actions {
    justify-content: center;
  }
  
  .trust-row {
    justify-content: center;
    gap: 32px;
  }
  
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .testi-grid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .contact-info {
    text-align: center;
    max-width: 100%;
  }
  
  .contact-details {
    align-items: center;
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

@media (max-width: 600px) {
  section {
    padding: 60px 0;
  }
  
  .hero h1 {
    font-size: 34px;
    line-height: 1.25;
  }

  .hero p.lead {
    font-size: 15px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
    margin: 0 auto 36px;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    text-align: center;
    font-size: 15px;
    padding: 14px 20px;
  }

  .trust-row {
    flex-direction: column;
    gap: 20px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .dest-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .dest-card {
    padding: 24px 20px;
  }
  
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .form-panel {
    padding: 24px 18px;
    border-radius: 20px;
  }

  .form-group input,
  .form-group select {
    font-size: 15px;
    padding: 12px 14px;
    min-height: 48px;
  }

  .form-panel button.btn {
    width: 100%;
    min-height: 50px;
    font-size: 15px;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    align-items: center;
    gap: 8px;
  }

  /* Chatbot mobile optimized full view */
  .chatbot-window {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    height: 100dvh;
    max-height: 100dvh;
    border-radius: 0;
    z-index: 10000;
    display: flex;
    flex-direction: column;
  }

  .chatbot-header {
    flex-shrink: 0;
    padding: 14px 16px;
  }

  .chatbot-body {
    flex: 1;
    min-height: 0;
    max-height: none;
    overflow-y: auto;
    padding: 16px 14px;
    -webkit-overflow-scrolling: touch;
  }

  .chatbot-footer {
    flex-shrink: 0;
    padding: 12px 14px;
    background: var(--white);
    border-top: 1px solid var(--line);
    position: sticky;
    bottom: 0;
    z-index: 10;
  }

  .chatbot-input {
    font-size: 16px; /* Prevents mobile Safari auto-zooming and pushing input off-screen */
    padding: 12px 16px;
  }

  .chatbot-toggle {
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    z-index: 9999;
  }
}

/* Prefers-reduced-motion fallback */
@media (prefers-reduced-motion: reduce) {
  path.flight {
    animation: none;
  }
  html {
    scroll-behavior: auto;
  }
  * {
    transition: none !important;
    animation: none !important;
  }
}
