/* ============================================
   AMERICAN DRIVING ACADEMY — styles.css
   Color: Navy #1B2A4A | White #FFFFFF
   Font: Poppins (Google Fonts)
============================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

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

:root {
  --navy: #1B2A4A;
  --navy-light: #243860;
  --gold: #ffffff;
  --gold-dark: #e0e0e0;
  --white: #ffffff;
  --gray: #f4f6f9;
  --text: #1a1a1a;
  --text-light: #666666;
  --shadow: 0 4px 20px rgba(27,42,74,0.12);
  --shadow-hover: 0 8px 30px rgba(27,42,74,0.22);
  --radius: 12px;
  --transition: all 0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: 'Poppins', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--navy);
  color: var(--white);
}
.btn-gold:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(27,42,74,0.4); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--navy); transform: translateY(-2px); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
}
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow-hover); }

/* ---- HEADER / NAV ---- */
header {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-main {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.5px;
}
.logo-sub {
  font-size: 0.65rem;
  color: #4A9FFF;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 8px 18px;
  border-radius: 8px;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.2px;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); background: rgba(255,255,255,0.1); }
.nav-phone {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.nav-cta {
  background: var(--navy-light);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 22px !important;
  border-radius: 50px !important;
}
.nav-cta:hover { background: var(--navy) !important; transform: translateY(-1px); }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 25px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }

/* ---- HERO ---- */
.hero {
  background: #000;
  min-height: 600px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('hero-web.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.08); opacity: 0.2; }
  to   { transform: scale(1.0);  opacity: 0.35; }
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,42,74,0.6) 0%, rgba(27,42,74,0.2) 60%, rgba(27,42,74,0.08) 100%);
  z-index: 0;
}
.hero-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
  position: relative;
  z-index: 1;
}
/* Hero animated text */
.hero-badge { animation: fadeUp 0.6s ease both; }
.hero h1    { animation: fadeUp 0.7s ease 0.15s both; }
.hero p     { animation: fadeUp 0.7s ease 0.3s both; }
.hero-btns  { animation: fadeUp 0.7s ease 0.45s both; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.4);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
  max-width: 700px;
}
.hero h1 span { color: #4A9FFF; }
.hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 560px;
  margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---- TRUST BAR ---- */
.trust-bar {
  background: var(--navy-light);
  padding: 16px 24px;
  animation: fadeIn 0.8s ease 0.6s both;
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.trust-bar-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  color: #ffffff;
  padding: 6px 24px;
}
.trust-item:not(:last-child) { border-right: 1px solid rgba(10,22,40,0.2); }
.trust-item svg { flex-shrink: 0; }

/* ---- SCROLL ANIMATIONS ---- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---- SECTION COMMONS ---- */
section { padding: 80px 24px; }
.section-inner { max-width: 1200px; margin: 0 auto; }
.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 16px;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.5px;
}
.section-subtitle {
  color: var(--text-light);
  font-size: 1rem;
  max-width: 560px;
  margin-bottom: 48px;
}
.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.card-icon {
  width: 56px;
  height: 56px;
  background: rgba(46,91,186,0.12);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.card h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card p { color: var(--text-light); font-size: 0.9rem; line-height: 1.7; }
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.85rem;
  margin-top: 16px;
  transition: var(--transition);
}
.card-link:hover { gap: 10px; }

/* ---- WHY US ---- */
.why-us { background: #111; }
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.6); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.stat-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(27,42,74,0.3);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
}
.stat-card:hover { background: rgba(27,42,74,0.08); transform: translateY(-4px); border-color: var(--navy-light); }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--gold); line-height: 1; margin-bottom: 8px; }
.stat-label { color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500; }

/* ---- TESTIMONIALS ---- */
.testimonials { background: var(--gray); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.stars { color: #F5C518; font-size: 1.1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text { color: var(--text); font-size: 0.9rem; line-height: 1.75; margin-bottom: 20px; font-style: italic; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.reviewer-detail { font-size: 0.78rem; color: var(--text-light); }

/* ---- SERVICE AREAS ---- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.area-box {
  background: var(--navy);
  border-radius: var(--radius);
  padding: 32px;
  color: var(--white);
}
.area-box h3 { font-size: 1.1rem; font-weight: 700; color: var(--gold); margin-bottom: 16px; }
.area-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.area-tag {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 5px 14px;
  border-radius: 50px;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 72px 24px;
  text-align: center;
}
.cta-banner h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 32px; }

/* ---- FOOTER ---- */
footer {
  background: #0D0D0D;
  color: var(--white);
  padding: 60px 24px 24px;
  border-top: 3px solid var(--navy);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-col h4 { color: var(--white); font-weight: 700; margin-bottom: 16px; font-size: 0.95rem; }
.footer-col p { font-size: 0.85rem; line-height: 1.8; color: var(--white); }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a { font-size: 0.85rem; color: var(--white); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; margin-bottom: 10px; }
.footer-contact-item span:first-child { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-logo { color: var(--gold); font-weight: 700; }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  position: relative;
  background-image: url('hero-web.jpg');
  background-size: cover;
  background-position: center;
  padding: 80px 24px 60px;
  text-align: center;
  border-bottom: 3px solid var(--navy-light);
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(27, 42, 74, 0.78);
  z-index: 0;
}
.page-hero > * {
  position: relative;
  z-index: 1;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--white); margin-bottom: 12px; font-family: 'Poppins', sans-serif; letter-spacing: -0.5px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; justify-content: center; gap: 8px; font-size: 0.82rem; color: rgba(255,255,255,0.5); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ---- SERVICE DETAIL (services page) ---- */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 60px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.service-detail:last-child { border-bottom: none; }
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }
.service-detail-icon { font-size: 4rem; margin-bottom: 16px; }
.service-detail h2 { font-size: 1.8rem; font-weight: 800; color: var(--navy); margin-bottom: 14px; }
.service-detail p { color: var(--text-light); line-height: 1.8; margin-bottom: 16px; }
.service-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.feature-item { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text); }
.feature-item::before { content: '✓'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.service-visual {
  background: linear-gradient(135deg, var(--navy) 0%, #1a1a1a 100%);
  border-radius: 20px;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}

/* ---- CONTACT ---- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: rgba(46,91,186,0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-info-text strong { display: block; font-weight: 700; color: var(--navy); font-size: 0.9rem; margin-bottom: 4px; }
.contact-info-text span { color: var(--text-light); font-size: 0.85rem; line-height: 1.6; }
.contact-form {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0,0,0,0.05);
}
.contact-form h3 { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  transition: var(--transition);
  background: var(--white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy-light); box-shadow: 0 0 0 3px rgba(27,42,74,0.15); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success { display: none; background: #f0fdf4; border: 1px solid #86efac; border-radius: 8px; padding: 16px; color: #166534; font-size: 0.9rem; text-align: center; margin-top: 12px; }

/* ---- ABOUT ---- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-visual {
  background: linear-gradient(135deg, var(--navy), #1a3060);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: var(--white);
}
.about-visual-number { font-size: 5rem; font-weight: 800; color: var(--gold); line-height: 1; }
.about-visual-label { font-size: 1.1rem; color: rgba(255,255,255,0.8); margin-top: 8px; }
.about-visual-divider { width: 60px; height: 3px; background: var(--navy-light); margin: 24px auto; border-radius: 2px; }
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.value-item { background: var(--gray); border-radius: 10px; padding: 20px; }
.value-item h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.value-item p { font-size: 0.82rem; color: var(--text-light); }

/* ---- REVIEWS PAGE ---- */
.reviews-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-bottom: 56px;
}
.review-stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 20px;
  box-shadow: var(--shadow);
}
.review-stat-number { font-size: 2.4rem; font-weight: 800; color: var(--navy); line-height: 1; }
.review-stat-label { font-size: 0.82rem; color: var(--text-light); margin-top: 6px; }

/* ---- CHAT WIDGET ---- */
#chat-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 60px;
  height: 60px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(46,91,186,0.5);
  z-index: 9999;
  transition: var(--transition);
  border: none;
  font-size: 1.5rem;
  animation: pulse 2.5s infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(46,91,186,0.5); }
  50% { box-shadow: 0 4px 32px rgba(46,91,186,0.85); transform: scale(1.06); }
}
#chat-btn:hover { transform: scale(1.12); box-shadow: 0 6px 28px rgba(46,91,186,0.7); animation: none; }
#chat-panel {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 340px;
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.2);
  z-index: 9998;
  display: none;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}
#chat-panel.open { display: flex; }
.chat-header {
  background: var(--navy);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.chat-avatar {
  width: 38px;
  height: 38px;
  background: var(--navy-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.chat-header-info strong { color: var(--white); font-size: 0.9rem; display: block; }
.chat-header-info span { color: rgba(255,255,255,0.6); font-size: 0.75rem; }
.chat-close { margin-left: auto; background: none; border: none; color: rgba(255,255,255,0.6); cursor: pointer; font-size: 1.2rem; transition: var(--transition); }
.chat-close:hover { color: var(--white); }
.chat-messages {
  padding: 20px;
  min-height: 220px;
  max-height: 300px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-msg {
  max-width: 80%;
  padding: 10px 14px;
  border-radius: 14px;
  font-size: 0.85rem;
  line-height: 1.5;
}
.chat-msg.bot { background: var(--gray); color: var(--text); align-self: flex-start; border-bottom-left-radius: 4px; }
.chat-msg.user { background: var(--navy); color: var(--white); align-self: flex-end; border-bottom-right-radius: 4px; }
.chat-options { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.chat-option-btn {
  background: var(--white);
  border: 1.5px solid var(--navy-light);
  color: var(--navy);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  text-align: left;
  transition: var(--transition);
}
.chat-option-btn:hover { background: var(--navy-light); }
.chat-input-area {
  padding: 16px 20px;
  border-top: 1px solid rgba(0,0,0,0.07);
  display: flex;
  gap: 10px;
}
.chat-input-area input {
  flex: 1;
  border: 1.5px solid #e2e8f0;
  border-radius: 50px;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
  outline: none;
  transition: var(--transition);
}
.chat-input-area input:focus { border-color: var(--navy-light); }
.chat-send {
  width: 38px;
  height: 38px;
  background: var(--navy-light);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  transition: var(--transition);
  flex-shrink: 0;
}
.chat-send:hover { background: var(--gold-dark); }

/* ---- RESPONSIVE ---- */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .service-detail { grid-template-columns: 1fr; }
  .service-detail.reverse { direction: ltr; }
  .about-story { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 72px; left: 0; right: 0; background: var(--navy); flex-direction: column; padding: 20px; gap: 4px; border-top: 1px solid rgba(255,255,255,0.1); }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
  .trust-item:not(:last-child) { border-right: none; border-bottom: 1px solid rgba(10,22,40,0.15); }
  .trust-bar-inner { flex-direction: column; gap: 4px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  #chat-panel { width: calc(100vw - 40px); right: 20px; }
}
