/* ------------------------------
   GLOBAL THEME
------------------------------ */
:root {
  --primary: #1848b8;
  --primary-600: #143d9e;
  --primary-700: #0e2f7d;
  --accent: #19b9a9;
  --bg: #f6f9ff;
  --card: #ffffff;
  --text: #0f172a;
  --muted: #6b7280;
  --radius: 22px;
  --shadow: 0 18px 40px rgba(18, 72, 184, 0.18);
  --fast: 220ms;
}

/* Reset & base */
* { box-sizing: border-box; }
html, body { margin: 0; scroll-behavior: smooth; }
body {
  font-family: "Poppins", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Utilities */
.container { max-width: 1200px; margin: auto; padding: 0 20px; }
.card { background: var(--card); border-radius: var(--radius); box-shadow: var(--shadow); transition: transform var(--fast), box-shadow var(--fast); }
.card:hover { transform: translateY(-6px); box-shadow: 0 22px 50px rgba(18, 72, 184, 0.25); }
a { color: inherit; text-decoration: none; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 0.95rem 1.2rem; border-radius: 999px; border: none;
  background: linear-gradient(135deg, var(--accent), #2dd4c7); color: #fff; font-weight: 700;
  cursor: pointer; transition: all var(--fast) ease; box-shadow: 0 10px 25px rgba(25, 185, 169, 0.35);
}
.btn:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(25, 185, 169, 0.5); }
.btn.ghost { background: transparent; border: 2px solid rgba(255, 255, 255, 0.8); color: #fff; box-shadow: none; }
.chip { display:inline-block; background: rgba(25,185,169,0.12); color: var(--primary-700); padding: 0.45rem 0.8rem; border-radius: 999px; font-weight:800; }
/* =====================================
   NAVBAR (Glass Blur + Gradient Effect)
===================================== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: saturate(180%) blur(10px);
  background: rgba(18, 58, 140, 0.85); /* semi-transparent glass look */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
/* Inner layout */
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  max-width: 1200px;
  margin: auto;
}

/* Logo styling */
.logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
}

.logo img {
  height: 42px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

/* Navigation links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color 0.3s ease, transform 0.3s ease;
}

.nav-links a:hover {
  color: #19b9a9;
  transform: translateY(-2px);
}

/* Hamburger icon */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.menu-toggle:hover {
  transform: scale(1.1);
}

/* =====================================
   MOBILE NAVBAR FIXES (Main Issue Fixed)
===================================== */
@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
  }

  .logo img {
    height: 34px;
  }

  .logo span {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0.3px;
  }

  /* Hide normal nav links */
  .nav-links {
    display: none;
  }

  /* Show hamburger icon */
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    font-size: 1.6rem;
  }
}

/* =====================================
   TABLET OPTIMIZATION (Medium screens)
===================================== */
@media (min-width: 769px) and (max-width: 1024px) {
  .nav-inner {
    padding: 12px 28px;
  }

  .nav-links a {
    font-size: 0.9rem;
  }

  .logo img {
    height: 40px;
  }
}

/* =====================================
   DRAWER NAVIGATION
===================================== */
.nav-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 280px;
  height: 100%;
  background: #123a8c;
  box-shadow: -6px 0 20px rgba(0, 0, 0, 0.3);
  padding: 20px;
  border-radius: 0 0 0 20px;
  transition: right 0.35s ease;
  z-index: 200;
}

.nav-drawer.active {
  right: 0;
}

.nav-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 150;
}

.nav-backdrop.active {
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 700;
}

.drawer-brand img {
  height: 38px;
  width: auto;
  border-radius: 8px;
}

.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-links a {
  color: #fff;
  font-weight: 600;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.drawer-links a:hover {
  color: #19b9a9;
}

.drawer-close {
  background: none;
  border: none;
  color: #fff;
  font-size: 1.2rem;
  cursor: pointer;
}

/* Drawer trigger (mobile view) */
@media (max-width: 900px) {
  .nav-links {
    display: none;
  }
  .menu-toggle {
    display: block;
  }
}
/* HERO */
.hero { position: relative; min-height: 80vh; display: grid; place-items: center; color: #fff; overflow: hidden; }
.slides { position:absolute; inset:0; opacity:0.5; }
.slide { position:absolute; inset:0; background-size:cover; background-position:center; opacity:0; transform:scale(1.08); transition: opacity 600ms ease, transform 600ms ease; }
.slide.active { opacity:1; transform: scale(1.02); }
.hero-bg { position:absolute; inset:0; background: radial-gradient(1400px 600px at 80% -20%, rgba(25,185,169,0.25), transparent 60%), linear-gradient(180deg, rgba(18,72,184,0.55), rgba(14,47,125,0.95)); }
.hero-inner { position: relative; z-index: 2; text-align:center; opacity:0.95; padding: 36px 10px; }

/* HERO TYPOGRAPHY UPGRADE */
.hero-inner h1 {
  font-family: "Playfair Display", "Poppins", serif;
  font-size: clamp(2rem, 5vw, 3.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.2;
  color: #ffffff;
  text-shadow: 0 4px 25px rgba(0,0,0,0.35), 0 0 12px rgba(25,185,169,0.3);
  background: linear-gradient(90deg, #fff, #b9e0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fadeUp 1.2s ease both;
}
.hero-inner p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-weight: 500;
  color: rgba(255,255,255,0.92);
  text-shadow: 0 2px 14px rgba(0,0,0,0.3);
  max-width: 720px;
  margin: 16px auto 0;
  line-height: 1.6;
  animation: fadeUp 1.6s ease both;
}
.hero-inner h1::after {
  content: "";
  display:block;
  width:120px; height:4px; margin:14px auto 0; border-radius:4px;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  box-shadow: 0 0 14px rgba(25,185,169,0.5);
  animation: glowline 2s infinite alternate ease-in-out;
}
@keyframes glowline { from { opacity:0.6; transform:scaleX(0.9); } to { opacity:1; transform:scaleX(1.05); } }

/* SECTIONS */
section { padding: 70px 0; }
.section-title { font-size: clamp(1.4rem, 4vw, 2.1rem); margin: 0 0 18px; font-weight: 800; }
.muted { color: var(--muted); }

/* WHY BOOK US */
.grid-4 { display:grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap:20px; }
.iconbox { padding:22px; display:flex; gap:14px; align-items:flex-start; background:#fff; border-radius:18px; box-shadow:var(--shadow); }

/* MARQUEE */
.marquee { overflow:hidden; position:relative; border-radius:20px; border:1px solid #e5e7eb; background:#fff; padding:14px 0; box-shadow:0 8px 28px rgba(0,0,0,0.06); }
.marquee-track { display:flex; align-items:center; gap:60px; padding:0 40px; animation: scroll 28s linear infinite; will-change: transform; }
.brand-logo { height:60px; width:auto; object-fit:contain; transition: all 0.4s ease; user-select:none; pointer-events:auto; }
.brand-logo:hover { transform: scale(1.08); filter: brightness(1.1); box-shadow: 0 4px 18px rgba(24,72,184,0.25); border-radius:12px; }
@keyframes scroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* SERVICES */
.services-section { padding: 80px 0; background: linear-gradient(180deg, #f8f9fa, #fff); }
.section-head { text-align:center; max-width:760px; margin:0 auto 36px; }
.section-head .eyebrow { color: var(--primary); text-transform:uppercase; letter-spacing: 0.1em; font-size:0.8rem; }
.section-head .title { font-size: clamp(1.6rem, 2.6vw, 2.2rem); margin:10px 0; color: #101418; }
.section-head .subtitle { color: var(--muted); }

/* Services grid & card (final unified styles) */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 28px; align-items: stretch; }
.service-card {
  background: #fff; border-radius: 18px; overflow: hidden; box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  display: flex; flex-direction: column; transition: transform 0.3s ease, box-shadow 0.3s ease; border: 1px solid rgba(0,0,0,0.05); position: relative;
  min-height: 380px;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 38px rgba(24,72,184,0.18); }
.service-card::before {
  content: ""; position:absolute; inset:0; border-radius:18px; border:2px solid transparent;
  background: linear-gradient(135deg, #1848b8, #19b9a9);
  opacity: 0; transition: opacity 0.4s ease; pointer-events: none;
}
.service-card:hover::before { opacity: 0.6; }
.service-img { width:100%; height:220px; overflow:hidden; background:#f8faff; display:flex; align-items:center; justify-content:center; }
.service-img img { width:100%; height:100%; object-fit:contain; transition: transform 0.6s ease; padding:20px; }
.service-card:hover .service-img img { transform: scale(1.05); }
.service-content { padding:22px 20px 26px; flex-grow:1; display:flex; flex-direction:column; justify-content:space-between; }
.service-content h3 { color:#1848b8; font-weight:700; margin-bottom:8px; }
.service-content .lead { color: #5e6775; font-size:0.95rem; margin-bottom:10px; }
.benefits { margin:10px 0 16px; padding-left:18px; flex-grow:1; font-size:0.95rem; color:#333; }
.benefits li { margin:6px 0; line-height:1.5; }

/* Service actions: Book + Whatsapp */
.service-actions { display:flex; gap:10px; align-items:center; margin-top:12px; }
.btn-blue {
  display:inline-block; font-weight:700; border-radius:14px; padding:12px 20px; color:#fff;
  background: linear-gradient(90deg, #1848b8, #19b9a9); border:none; box-shadow:0 6px 18px rgba(24,72,184,0.25);
  transition: transform 0.25s ease, box-shadow 0.25s ease; align-self:flex-start;
}
.btn-blue::after { content:""; position:absolute; inset:0; background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.6) 50%, transparent 100%); transform: translateX(-100%); transition: transform 0.8s ease; }
.btn-blue:hover::after { transform: translateX(100%); }
.btn-blue:hover { transform: translateY(-3px); box-shadow:0 10px 28px rgba(25,185,169,0.35); }

.whatsapp-btn {
  display:inline-grid; place-items:center; width:48px; height:48px; border-radius:999px;
  background: linear-gradient(135deg, #25d366, #1ebe5f); color:#fff; font-size:1.2rem; text-decoration:none; border:none;
  box-shadow:0 8px 22px rgba(37,211,102,0.18); transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.whatsapp-btn:hover { transform: translateY(-3px) scale(1.04); box-shadow:0 12px 28px rgba(37,211,102,0.28); }

/* PRICING removed (Terms used instead) */

/* CALCULATOR */
.calc { display: grid; gap:14px; padding:22px; }
.field { display:flex; flex-direction:column; gap:6px; }
.field input, .field select, .field textarea { padding:12px 14px; border:1px solid #d1d5db; border-radius:14px; outline:none; transition: all var(--fast); }
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--primary-600); box-shadow: 0 0 0 4px rgba(18,72,184,0.1); transform: translateY(-1px); }
.est { display:flex; align-items:center; gap:10px; font-weight:900; }
.est .chip { font-size:1rem; }

/* TESTIMONIALS */
.carousel { position:relative; overflow:hidden; border-radius:20px; }
.track { display:flex; gap:16px; transition: transform 600ms ease; }
.t-card { min-width:280px; max-width:360px; padding:18px; background: linear-gradient(145deg,#fff,#f0f4ff); border-radius:20px; box-shadow:var(--shadow); transition: transform var(--fast); }
.t-card:hover { transform: translateY(-6px); }

/* CONTACT & FOOTER */
.contact-strip { padding:18px; display:flex; gap:12px; flex-wrap:wrap; align-items:center; justify-content:space-between; background: linear-gradient(135deg, var(--primary-700), var(--primary)); color:#fff; border-radius:18px; }
footer { width:100%; background: linear-gradient(135deg, var(--primary-700), var(--primary)); color:#fff; text-align:center; padding:40px 15px; margin-top:60px; border-top-left-radius:40px; border-top-right-radius:40px; box-shadow:0 -8px 20px rgba(0,0,0,0.15); }
.footer-inner { max-width:1100px; margin:auto; }
.footer-socials { display:flex; justify-content:center; gap:22px; margin:14px 0; }
.footer-socials a { color:#fff; font-size:1.5rem; transition: all 0.3s ease; }
.footer-copy { margin-top:18px; font-size:0.9rem; opacity:0.8; }

/* FLOATING ACTION BUTTONS */
.float-wrap { position: fixed; right: calc(16px + env(safe-area-inset-right, 0)); bottom: calc(16px + env(safe-area-inset-bottom, 0)); display:flex; flex-direction:column; gap:12px; z-index:999; }
.float-btn { display:flex; align-items:center; justify-content:center; width:54px; height:54px; border-radius:50%; background:var(--primary); color:#fff; font-size:1.5rem; box-shadow:0 10px 25px rgba(0,0,0,0.25); transition: all 0.3s ease; }
.float-btn:hover { transform: scale(1.08) translateY(-3px); box-shadow:0 14px 32px rgba(0,0,0,0.35); }
.float-btn.call { background: linear-gradient(135deg, #0a3d91, #1848b8); }
.float-btn.whatsapp { background: linear-gradient(135deg, #25d366, #1ebe5f); }

/* REVEAL & ANIMATIONS */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible, .in-view { opacity:1 !important; transform:none !important; }
@keyframes fadeUp { from { opacity:0; transform:translateY(40px); } to { opacity:1; transform:none; } }

/* FORM STATUS */
.status-message { margin-top:12px; font-weight:700; font-size:0.95rem; transition: all 0.4s ease; }
.status-message.sending { color: var(--primary); animation: pulse 1.2s infinite; }
.status-message.success { color: #16a34a; }
.status-message.error { color: #dc2626; }
@keyframes pulse { 0% { opacity:0.6; } 50% { opacity:1; } 100% { opacity:0.6; } }

/* TERMS & CONDITIONS */
.terms-content { display:grid; gap:28px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-top:30px; }
.term-block { background:#fff; border-radius:18px; box-shadow:0 10px 28px rgba(24,72,184,0.08); padding:26px 22px; transition: all 0.4s ease; border: 1px solid rgba(0,0,0,0.05); position:relative; }
.term-block:hover { transform: translateY(-6px); box-shadow: 0 16px 36px rgba(24,72,184,0.18); }
.term-block h3 { color: var(--primary); margin-bottom:12px; font-size:1.2rem; font-weight:700; }
.term-block p, .term-block li { color: var(--muted); font-size:0.95rem; line-height:1.6; }
.term-block ul { margin:0; padding-left:18px; }
.term-block::before { content:""; position:absolute; top:0; left:0; width:100%; height:4px; border-radius:18px 18px 0 0; background: linear-gradient(90deg, var(--primary), var(--accent)); opacity:0.9; }

/* CAREERS */
.career-grid { display:grid; gap:24px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); margin-bottom:40px; }
.career-card { background:#fff; border-radius:18px; box-shadow:0 10px 28px rgba(24,72,184,0.08); padding:26px 22px; border:1px solid rgba(0,0,0,0.05); transition: all 0.4s ease; position:relative; }
.career-card:hover { transform: translateY(-6px); box-shadow:0 18px 36px rgba(24,72,184,0.18); }
.career-card h3 { color: var(--primary); margin-bottom:10px; font-weight:700; }
.career-card p { color: var(--muted); font-size:0.95rem; margin-bottom:10px; }
.career-card ul { padding-left:18px; color:var(--text); font-size:0.95rem; line-height:1.6; }
/* APPLY FORM (Blue–Aqua Gradient – Enhanced Readability) */
.apply-form {
  background: linear-gradient(135deg, #1848b8, #19b9a9);
  color: #fff;
  border-radius: 20px;
  padding: 32px 24px;
  box-shadow: 0 12px 28px rgba(0,0,0,0.2);
  margin-top: 18px;
}

.apply-form h3 {
  text-align: center;
  font-weight: 800;
  margin-bottom: 10px;
}
.apply-form p {
  text-align: center;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.95); /* brighter and clearer */
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0,0,0,0.25); /* subtle clarity shadow */
}
.apply-form .field label {
  color: #fff;
  font-weight: 600;
}

.apply-form .field input,
.apply-form .field select,
.apply-form .field textarea {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 12px;
  transition: all 0.3s ease;
}

/* Placeholder – darker for readability */
.apply-form .field input::placeholder,
.apply-form .field textarea::placeholder {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  letter-spacing: 0.2px;
}

/* Focus effect – subtle blue glow */
.apply-form .field input:focus,
.apply-form .field select:focus,
.apply-form .field textarea:focus {
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 0 4px rgba(25, 185, 169, 0.35);
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-1px);
}

/* Submit button styling */
.apply-form .btn {
  background: linear-gradient(90deg, #19b9a9, #1848b8);
  box-shadow: 0 8px 22px rgba(25,185,169,0.35);
  font-weight: 700;
  transition: all 0.3s ease;
}

.apply-form .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(25,185,169,0.45);
}
/* MAP SECTION */
.map-section { padding: 80px 0; background: linear-gradient(180deg, #f6f9ff, #ffffff); }
.map-header { text-align:center; margin-bottom:30px; }
.map-header h2 { font-weight:800; font-size: clamp(1.6rem, 4vw, 2.2rem); color: var(--primary); margin-bottom:8px; }
.map-header p { color: var(--muted); max-width:700px; margin:0 auto; font-size:1rem; }
.map-card { position: relative; border-radius:22px; overflow:hidden; box-shadow: 0 14px 40px rgba(24,72,184,0.15); border:2px solid transparent; background: linear-gradient(#fff,#fff) padding-box, linear-gradient(135deg, var(--primary), var(--accent)) border-box; }
.map-card iframe { width:100%; height:450px; border:none; display:block; filter: brightness(0.95) contrast(1.05); transition: all 0.5s ease; }
.map-card:hover iframe { filter: brightness(1.05) contrast(1.1); transform: scale(1.01); }
.map-overlay { position:absolute; top:0; left:0; width:100%; height:100%; pointer-events:none; background: radial-gradient(circle at top right, rgba(25,185,169,0.15), transparent 70%), linear-gradient(180deg, rgba(24,72,184,0.1), transparent 60%); z-index:1; }

/* RESPONSIVE ADJUSTMENTS */
@media (max-width: 1024px) { .map-card iframe { height:400px; } .service-img { height:200px; } }
@media (max-width: 768px) {
  section { padding:50px 0; }
  .section-title { font-size:1.6rem; text-align:center; }
  .nav-inner { flex-direction:column; gap:10px; }
  .hero h1 { font-size:2rem; }
  .hero p { font-size:1rem; padding:0 10px; }
  .hero .actions { flex-direction:column; }
  .gallery-grid { gap:16px; }
  .ba-wrapper img { border-radius:14px; }
  .faq-question { font-size:0.95rem; padding:14px 16px; }
  .faq-answer { font-size:0.9rem; }
  .btn { font-size:0.95rem; padding:0.8rem 1.1rem; }
  footer { padding:30px 10px; border-top-left-radius:25px; border-top-right-radius:25px; }
  .apply-form { padding:24px 18px; }
  .career-card { padding:22px 18px; }
  .map-section { padding:60px 0; }
  .map-card iframe { height:340px; }
}
@media (max-width: 480px) { .map-card iframe { height:300px; } .float-btn { width:46px; height:46px; font-size:1.25rem; } .service-img { height:160px; } .service-card { min-height: 340px; } .whatsapp-btn { width:44px; height:44px; } }

/* SMALL HELPERS */
.hidden { display:none !important; }
/* =====================================
   APPLY FORM MOBILE CENTER FIX
   (Careers Section Alignment)
===================================== */
@media (max-width: 768px) {
  .apply-form {
    margin: 0 auto;           /* Centers form horizontally */
    width: 95%;               /* Keeps small margin on both sides */
    padding: 24px 18px;       /* Compact padding for mobile */
    border-radius: 18px;      /* Smooth rounded edges */
  }

  .apply-form form {
    width: 100%;
  }

  .apply-form .field input,
  .apply-form .field select,
  .apply-form .field textarea {
    width: 100%;
    border-radius: 12px;
  }
}

@media (max-width: 480px) {
  .apply-form {
    width: 94%;
    padding: 20px 14px;       /* Extra comfort for small phones */
  }
}
/* =====================================
   FINAL MOBILE NAVBAR LEFT ALIGN FIX
===================================== */
@media (max-width: 768px) {
  .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 16px;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    text-align: left;
    margin-right: auto;
    gap: 8px;
  }

  .logo img {
    height: 34px;
    width: auto;
    flex-shrink: 0;
  }

  .logo span {
    display: inline-block;
    font-size: 0.92rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .menu-toggle {
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
  }
}
/* =====================================
   FINAL VISUAL BALANCE FIX (NAVBAR MOBILE)
===================================== */
@media (max-width: 768px) {
  .nav-inner {
    padding: 12px 16px !important;
    height: 64px; /* keeps uniform navbar height */
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex: 1;
    gap: 8px;
  }

  .logo img {
    height: 34px;
    margin-top: 2px; /* balances vertical spacing */
  }

  .logo span {
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.3px;
    color: #fff;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    margin-left: auto;
    margin-top: 2px;
  }
}
/* =====================================
   FINAL NAVBAR BALANCE FIX (Mobile)
===================================== */
@media (max-width: 768px) {
  nav {
    backdrop-filter: saturate(180%) blur(12px);
    background: rgba(18, 58, 140, 0.88);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: 66px; /* ensures consistent height */
    display: flex;
    align-items: center;
  }

  .nav-inner {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    height: 100%;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: #fff;
  }

  .logo img {
    height: 34px;
    width: auto;
    border-radius: 8px;
  }

  .logo span {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.3px;
    white-space: nowrap;
  }

  .menu-toggle {
    font-size: 1.6rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
  }
}
/* =====================================
   FINAL HAMBURGER ALIGNMENT FIX
===================================== */
@media (max-width: 768px) {
  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: auto;
    margin-top: -38px; /* ✅ pushes it slightly upward */
    padding: 0;
    line-height: 1;
  }

  .menu-toggle i {
    display: inline-block;
    line-height: 1;
    vertical-align: middle;
  }
}
/* =====================================
   MOBILE NAV DRAWER CLEANUP
===================================== */
.nav-drawer {
  display: flex;
  flex-direction: column;
  background: linear-gradient(160deg, #123a8c 0%, #1848b8 100%);
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  padding: 22px 18px;
  width: 280px;
  height: 100%;
  right: -280px;
  top: 0;
  position: fixed;
  transition: right 0.4s ease;
  box-shadow: -8px 0 20px rgba(0, 0, 0, 0.3);
}

.nav-drawer.active {
  right: 0;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.drawer-brand img {
  height: 36px;
  border-radius: 8px;
}

.drawer-brand span {
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
}

.drawer-close {
  color: #fff;
  background: none;
  border: none;
  font-size: 1.4rem;
  cursor: pointer;
}

/* Navigation links inside drawer */
.drawer-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 10px;
}

.drawer-links a {
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  padding: 10px 12px;
  border-radius: 10px;
  transition: all 0.3s ease;
}

.drawer-links a:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateX(6px);
}

/* Drawer CTA buttons (Book & Estimate) */
.drawer-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.drawer-cta .btn {
  background: linear-gradient(90deg, #19b9a9, #1848b8);
  color: #fff;
  font-weight: 700;
  text-align: center;
  padding: 10px;
  border-radius: 12px;
  transition: all 0.3s ease;
}

.drawer-cta .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 18px rgba(25, 185, 169, 0.4);
}
/* ===========================
   FAQ SECTION – LUXURY THEME
=========================== */
#faq {
  padding: 80px 0;
}

#faq .section-title {
  text-align: center;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 10px;
}

#faq .muted {
  text-align: center;
  margin-bottom: 36px;
}

.faq {
  display: grid;
  gap: 16px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 28px rgba(24, 72, 184, 0.08);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s ease;
}

.faq-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 36px rgba(24, 72, 184, 0.15);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 700;
  font-size: 1.05rem;
  text-align: left;
  padding: 16px 20px;
  cursor: pointer;
  color: var(--primary-700);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: rgba(25, 185, 169, 0.08);
}

.faq-question span {
  font-size: 1.3rem;
  color: var(--primary);
  transition: transform 0.3s ease;
}

.faq-answer {
  display: none;
  padding: 0 20px 18px;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
  animation: fadeDown 0.4s ease;
}

.faq-item.active .faq-answer {
  display: block;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
  color: var(--accent);
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive adjustments */
@media (max-width: 768px) {
  #faq {
    padding: 60px 16px;
  }
  .faq-question {
    font-size: 1rem;
    padding: 14px 16px;
  }
  .faq-answer {
    font-size: 0.9rem;
  }
}
