/* =============================================
   MIDTOWN TRAVEL STUDIO — Global Stylesheet
   Brand: Navy #1B3671 | Gold #F5A623
   ============================================= */

/* ---------- RESET & ROOT ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:       #1B3671;
  --navy-dark:  #122354;
  --navy-light: #2547A0;
  --gold:       #F5A623;
  --gold-dark:  #D4880A;
  --gold-light: #FFC85A;
  --white:      #FFFFFF;
  --off-white:  #F8F9FB;
  --light:      #EEF1F7;
  --gray:       #6B7280;
  --dark-gray:  #374151;
  --dark:       #111827;
  --border:     #D1D5DB;

  --shadow-xs:  0 1px 4px rgba(0,0,0,.07);
  --shadow-sm:  0 2px 10px rgba(0,0,0,.09);
  --shadow-md:  0 4px 24px rgba(0,0,0,.13);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.18);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: .3s ease;
  --nav-h:      76px;

  --max-w:      1200px;
}

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

/* Offset anchor scroll targets so fixed nav doesn't cover them */
[id] { scroll-margin-top: calc(var(--nav-h) + 16px); }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- TYPOGRAPHY ---------- */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; line-height: 1.15; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
p  { color: var(--dark-gray); line-height: 1.75; }

/* ---------- UTILITIES ---------- */
.container { width: 100%; max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.section    { padding: 90px 0; }
.section-sm { padding: 60px 0; }

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--navy);
  background: rgba(245,166,35,.18);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 14px;
}

.section-title { color: var(--navy); margin-bottom: 16px; }
.section-subtitle { color: var(--gray); font-size: 1.05rem; max-width: 620px; }
.section-header { margin-bottom: 56px; }
.section-header.center { text-align: center; }
.section-header.center .section-subtitle { margin: 0 auto; }

.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.bg-navy     { background: var(--navy); }
.bg-gold     { background: var(--gold); }
.bg-off-white{ background: var(--off-white); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-md);
  font-size: .95rem;
  font-weight: 600;
  transition: var(--transition);
  white-space: nowrap;
  max-width: 100%;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(245,166,35,.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
}
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover {
  background: var(--navy-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(27,54,113,.35);
}
.btn-wa {
  background: #25D366;
  color: var(--white);
}
.btn-wa:hover {
  background: #1ebe5a;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,211,102,.4);
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-sm { padding: 9px 20px; font-size: .85rem; }

/* ---------- NAVBAR ---------- */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.95);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: var(--transition);
}
#navbar.scrolled {
  border-bottom-color: var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-logo img {
  height: 48px;
  width: auto;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  background: var(--light);
}
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px;
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 13px 0;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  transition: var(--transition);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--navy); padding-left: 8px; }
.mobile-nav .btn { margin-top: 18px; width: 100%; justify-content: center; }

/* Page content push */
.page-top { padding-top: var(--nav-h); }

/* ---------- HERO ---------- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--navy-dark);
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .38;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,22,54,.82) 0%, rgba(15,30,70,.70) 50%, rgba(10,22,54,.88) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto;
  padding: 100px 0 80px;
  text-align: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(245,166,35,.18);
  border: 1px solid rgba(245,166,35,.4);
  color: var(--gold-light);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--gold); }
.hero p {
  color: rgba(255,255,255,.82);
  font-size: 1.1rem;
  margin: 0 auto 36px;
  max-width: 600px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 56px; }
.hero-stats {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.15);
  justify-content: center;
}
.hero-stat-item {
  flex: 0 0 25%;
  padding: 0 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,.12);
}
.hero-stat-item:last-child { border-right: none; }
.hero-stat-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.65);
  text-transform: uppercase;
  letter-spacing: .08em;
}

/* ---------- PAGE HERO (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(245,166,35,.08);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); }
.page-hero p  { color: rgba(255,255,255,.75); margin-top: 12px; max-width: 560px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: .85rem;
}
.breadcrumb a  { color: rgba(255,255,255,.6); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,.4); }
.breadcrumb .current { color: var(--gold); font-weight: 500; }

/* ---------- TRUST BAR ---------- */
.trust-bar {
  background: var(--navy);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.85);
  font-size: .85rem;
  font-weight: 500;
}
.trust-item svg { color: var(--gold); flex-shrink: 0; }
.trust-divider {
  width: 1px;
  height: 28px;
  background: rgba(255,255,255,.2);
}

/* ---------- CARDS ---------- */
.card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  padding: 32px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.card-icon {
  width: 56px;
  height: 56px;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: 1.5rem;
  transition: var(--transition);
}
.card:hover .card-icon {
  background: var(--navy);
  color: var(--gold);
}
.card h3 { color: var(--navy); margin-bottom: 10px; }
.card p  { font-size: .92rem; }

/* ---------- GRID LAYOUTS ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ---------- STATS COUNTER SECTION ---------- */
.stats-section {
  background: var(--navy);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 24px 16px; }
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  display: block;
  margin-bottom: 8px;
}
.stat-label {
  color: rgba(255,255,255,.75);
  font-size: .9rem;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  background: rgba(255,255,255,.15);
  margin: 0 auto;
}

/* ---------- WHY CHOOSE US ---------- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.why-item {
  display: flex;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.why-item:hover {
  border-color: var(--gold);
  box-shadow: var(--shadow-sm);
}
.why-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  background: var(--light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-size: 1.3rem;
}
.why-item:hover .why-icon {
  background: var(--navy);
  color: var(--gold);
}
.why-item h4 { color: var(--navy); margin-bottom: 6px; font-size: .95rem; }
.why-item p  { font-size: .85rem; color: var(--gray); }

/* ---------- REVIEWS SLIDER ---------- */
.reviews-section { background: var(--off-white); }
.reviews-slider-wrap {
  position: relative;
  overflow: hidden;
}
.reviews-track {
  display: flex;
  gap: 24px;
  transition: transform .5s ease;
}
.review-card {
  flex: 0 0 calc(33.333% - 16px);
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 28px;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--border);
}
.review-stars { color: #FBBF24; font-size: 1.1rem; margin-bottom: 14px; }
.review-text  { font-size: .92rem; color: var(--dark-gray); margin-bottom: 20px; font-style: italic; line-height: 1.7; }
.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name  { font-weight: 600; font-size: .9rem; color: var(--dark); }
.reviewer-label { font-size: .78rem; color: var(--gray); }
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
}
.slider-btn:hover {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  transition: var(--transition);
  cursor: pointer;
}
.slider-dot.active {
  background: var(--navy);
  width: 24px;
  border-radius: 4px;
}

/* ---------- CTA BANNER ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: rgba(245,166,35,.07);
  pointer-events: none;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,.75); max-width: 540px; margin: 0 auto 32px; }
.cta-actions   { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---------- RATE CARDS GRID ---------- */
.rate-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.rate-cards-grid--4 {
  grid-template-columns: repeat(4, 1fr);
}
.rate-card-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}
.rate-card-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.rate-card-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ---------- PACKAGES ---------- */
.package-card {
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
  background: var(--white);
}
.package-card:hover {
  border-color: var(--navy);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.package-header {
  background: var(--navy);
  padding: 28px 24px;
  color: var(--white);
  text-align: center;
}
.package-header.gold-bg { background: var(--gold); }
.package-header.gold-bg h3,
.package-header.gold-bg .pkg-icon { color: var(--navy-dark); }
.pkg-icon { font-size: 2.2rem; margin-bottom: 10px; display: block; color: var(--gold); }
.package-header h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 4px; }
.pkg-tagline { font-size: .82rem; color: rgba(255,255,255,.7); }
.package-body { padding: 24px; }
.pkg-feature {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--light);
  font-size: .9rem;
  color: var(--dark-gray);
}
.pkg-feature:last-child { border-bottom: none; }
.pkg-check { color: #10B981; font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pkg-cta { padding: 0 24px 24px; }

/* Responsive content image (replaces inline height) */
.content-img-h {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

/* ---------- DRIVER SERVICES ---------- */
.driver-feature {
  display: flex;
  gap: 24px;
  padding: 28px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--border);
  margin-bottom: 20px;
  transition: var(--transition);
}
.driver-feature:hover { border-color: var(--gold); box-shadow: var(--shadow-sm); }
.driver-feature-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background: var(--light);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--navy);
  transition: var(--transition);
}
.driver-feature:hover .driver-feature-icon {
  background: var(--navy);
  color: var(--gold);
}
.driver-feature h3 { color: var(--navy); margin-bottom: 8px; }
.driver-feature p  { font-size: .92rem; }

/* ---------- ONBOARDING STEPS ---------- */
.steps-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.step-item { text-align: center; padding: 28px 20px; }
.step-num {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.step-item h4 { color: var(--navy); margin-bottom: 8px; }
.step-item p  { font-size: .85rem; color: var(--gray); }

/* ---------- ATTACHMENT FORM ---------- */
.form-wrap {
  max-width: 700px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}
.form-header {
  background: var(--navy);
  padding: 32px 40px;
  color: var(--white);
  text-align: center;
}
.form-header h2 { color: var(--white); margin-bottom: 8px; }
.form-header p  { color: rgba(255,255,255,.75); font-size: .95rem; }
.form-body { padding: 36px 40px; }
.form-group { margin-bottom: 22px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: .88rem;
  color: var(--dark);
  margin-bottom: 7px;
}
.form-group label span { color: var(--gold-dark); }
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: .95rem;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}
.form-control:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(27,54,113,.1); }
.form-control.error { border-color: #EF4444; }
.error-msg { font-size: .8rem; color: #EF4444; margin-top: 4px; display: none; }
.error-msg.visible { display: block; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-footer {
  background: var(--off-white);
  padding: 24px 40px;
  border-top: 1px solid var(--border);
  text-align: center;
}
.form-footer p { font-size: .85rem; color: var(--gray); }

/* ---------- CONTACT ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.contact-info-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  color: var(--white);
}
.contact-info-card h3 { color: var(--white); margin-bottom: 28px; }
.contact-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  min-width: 0;
}
.contact-item:last-child { margin-bottom: 0; }
.contact-item > div:last-child { min-width: 0; flex: 1; }
.ci-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  background: rgba(245,166,35,.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}
.ci-label { font-size: .78rem; color: rgba(255,255,255,.55); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 3px; }
.ci-value { font-size: .95rem; font-weight: 500; color: var(--white); line-height: 1.5; overflow-wrap: break-word; word-break: break-word; min-width: 0; }
.ci-value a { color: var(--white); transition: var(--transition); overflow-wrap: break-word; word-break: break-word; }
.ci-value a:hover { color: var(--gold); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.contact-form-card h3 { color: var(--navy); margin-bottom: 24px; }
.map-embed {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-top: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
}
.map-embed iframe { display: block; width: 100%; height: 340px; border: none; }

/* ---------- FLOATING WHATSAPP ---------- */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0;
  background: #25D366;
  color: var(--white);
  border-radius: 50px;
  padding: 14px 20px 14px 16px;
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  font-weight: 600;
  font-size: .9rem;
  transition: var(--transition);
  overflow: hidden;
  max-width: 220px;
}
.wa-float:hover {
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
  transform: translateY(-2px);
}
.wa-float svg { flex-shrink: 0; margin-right: 8px; width: 22px; height: 22px; }
.wa-float-text { white-space: nowrap; }
.wa-pulse {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 16px;
  height: 16px;
  background: #FF4B4B;
  border-radius: 50%;
  border: 2px solid var(--white);
  animation: wa-pulse 2s infinite;
}
@keyframes wa-pulse {
  0%,100% { transform: scale(1); }
  50%      { transform: scale(1.25); }
}

/* ---------- FOOTER ---------- */
footer {
  background: var(--dark);
  color: rgba(255,255,255,.7);
}
.footer-main { padding: 60px 0 40px; }
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.14);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.65);
  transition: var(--transition);
  flex-shrink: 0;
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); transform: translateY(-2px); }
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.footer-brand .footer-logo { height: 44px; margin-bottom: 16px; }
.footer-brand p { font-size: .88rem; max-width: 100%; line-height: 1.7; color: rgba(255,255,255,.9); }
.footer-col h5 {
  font-size: .85rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: .87rem;
  color: rgba(255,255,255,.6);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: .87rem;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item > span,
.footer-contact-item > div { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.footer-contact-item a { color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-emails { display: flex; flex-direction: column; gap: 4px; }
.footer-emails a { font-size: .78rem; word-break: break-all; overflow-wrap: break-word; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .82rem;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom-inner a { color: rgba(255,255,255,.5); transition: var(--transition); }
.footer-bottom-inner a:hover { color: var(--gold); }

/* ---------- SERVICES PAGE ---------- */
.service-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.service-block:last-child { margin-bottom: 0; }
.service-block.reverse { direction: rtl; }
.service-block.reverse > * { direction: ltr; }
.service-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.service-image img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-image:hover img { transform: scale(1.03); }
.service-content h2 { color: var(--navy); margin-bottom: 16px; }
.service-content p  { margin-bottom: 20px; }
.service-list { margin-bottom: 28px; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: .92rem;
  color: var(--dark-gray);
  border-bottom: 1px solid var(--light);
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  color: var(--navy);
  font-weight: 700;
  flex-shrink: 0;
}

/* ---------- ABOUT ---------- */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img-wrap img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}
.about-badge-float {
  position: absolute;
  bottom: 28px;
  left: 28px;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 14px;
}
.about-badge-num { font-size: 2rem; font-weight: 800; color: var(--navy); line-height: 1; }
.about-badge-label { font-size: .78rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }
.vision-mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.vm-card {
  border-radius: var(--radius-md);
  padding: 32px;
  border-left: 4px solid;
}
.vm-card.vision { background: var(--light); border-color: var(--navy); }
.vm-card.mission { background: rgba(245,166,35,.08); border-color: var(--gold); }
.vm-card h3 { color: var(--navy); margin-bottom: 12px; }

/* ---------- ANIMATIONS ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up-delay-1 { transition-delay: .1s; }
.fade-up-delay-2 { transition-delay: .2s; }
.fade-up-delay-3 { transition-delay: .3s; }
.fade-up-delay-4 { transition-delay: .4s; }

/* ---------- GOOGLE RATING SUMMARY ---------- */
.google-rating-wrap {
  display: flex;
  align-items: flex-start;
  gap: 48px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
  max-width: 780px;
  margin: 0 auto 8px;
}
.google-logo-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.google-reviews-label {
  font-size: 1rem;
  font-weight: 600;
  color: #5F6368;
}
.google-big-rating {
  font-size: 3.8rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 8px;
}
.google-stars-row {
  display: flex;
  gap: 2px;
  margin-bottom: 8px;
}
.gstar {
  font-size: 1.4rem;
  color: #FBBC04;
}
.gstar.half { opacity: .4; }
.google-review-count {
  font-size: .85rem;
  color: #5F6368;
  margin-bottom: 18px;
}
.btn-google-review {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: .85rem;
  font-weight: 600;
  color: #1A73E8;
  background: var(--white);
  transition: var(--transition);
  white-space: nowrap;
}
.btn-google-review:hover {
  background: #E8F0FE;
  border-color: #1A73E8;
}
.google-rating-bars {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.rating-bar-row {
  display: flex;
  align-items: center;
  gap: 10px;
}
.rbar-label {
  font-size: .82rem;
  color: #5F6368;
  width: 28px;
  flex-shrink: 0;
}
.rbar-track {
  flex: 1;
  height: 10px;
  background: #E8EAED;
  border-radius: 5px;
  overflow: hidden;
}
.rbar-fill {
  height: 100%;
  background: #FBBC04;
  border-radius: 5px;
}
.rbar-pct {
  font-size: .78rem;
  color: #5F6368;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}
.review-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

/* ---------- LIGHTBOX ---------- */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.9);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  border-radius: var(--radius-md);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: var(--white);
  font-size: 2rem;
  cursor: pointer;
  background: rgba(255,255,255,.15);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.lightbox-close:hover { background: rgba(255,255,255,.3); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid  { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .rate-cards-grid,
  .rate-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .service-block,
  .service-block.reverse { grid-template-columns: 1fr; direction: ltr; }
  .about-intro-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section    { padding: 64px 0; }
  .section-sm { padding: 44px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-stats { gap: 0; }
  .hero-stat-item { flex: 0 0 50%; padding: 16px 12px; border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
  .hero-stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.12); }
  .hero-stat-item:nth-child(3),
  .hero-stat-item:nth-child(4) { border-bottom: none; }
  .vision-mission-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-body, .form-header, .form-footer { padding-left: 24px; padding-right: 24px; }
  .review-card { flex: 0 0 calc(100% - 0px); }
  .cta-actions { flex-direction: column; align-items: center; }
  .hero-actions { flex-direction: column; align-items: center; }
  .trust-bar-inner { gap: 20px; }
  .trust-divider { display: none; }
  /* Image heights on mobile */
  .service-image img { height: 240px; }
  .about-img-wrap img { height: 280px; }
  .content-img-h { height: 260px; }
  /* Padding reductions */
  .page-hero { padding: 48px 0 36px; }
  .hero-content { padding: 60px 0 40px; }
  /* Contact card mobile padding */
  .contact-info-card { padding: 24px 20px; }
  .contact-form-card { padding: 24px 20px; }
  /* Mobile nav CTA button */
  .mobile-nav .btn-primary {
    border-radius: 50px;
    width: calc(100% - 24px);
    margin: 20px auto 0;
    display: flex;
    justify-content: center;
    padding: 15px 28px;
    font-size: 1rem;
  }
}
@media (max-width: 600px) {
  .grid-4 { grid-template-columns: 1fr; }
  .trust-bar-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  .rate-cards-grid,
  .rate-cards-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-stat-item { flex: 0 0 50%; }
  .hero-stat-num { font-size: 1.4rem; }
  .wa-float-text { display: none; }
  .wa-float { padding: 14px; border-radius: 50%; max-width: none; }
  .wa-float svg { margin-right: 0; }
  /* Hero: minimal single-screen view on phones */
  .hero-content { padding: 20px 0 16px; }
  .hero-badge { margin-bottom: 10px; padding: 5px 12px; font-size: .72rem; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 12px; line-height: 1.2; }
  .hero-content > p { display: none; }
  .hero-actions { margin-bottom: 16px; gap: 10px; }
  .hero-actions .btn-lg { padding: 13px 24px; font-size: .95rem; }
  .hero-stats { display: none; }
  /* Prevent long button text from overflowing on small phones */
  .btn { white-space: normal; text-align: center; }
  /* Remove forced full-viewport height; add nav offset so badge isn't hidden under fixed nav */
  .hero { min-height: 0; padding-top: var(--nav-h); }
}

/* ---------- ACCESSIBILITY ---------- */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  z-index: 10000;
  background: var(--navy);
  color: var(--white);
  padding: 12px 24px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  border-radius: 0 0 8px 0;
  transition: top .15s ease;
}
.skip-link:focus { top: 0; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: 3px;
}
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--navy);
  outline-offset: 0;
}

.lightbox-close {
  cursor: pointer;
  background: transparent;
  border: none;
  color: inherit;
  font-size: inherit;
  padding: 0;
  line-height: 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
}
