/* ================================================
   MILLER SENIOR CARE CLINIC — style.css
   ================================================ */

/* ── 1. CSS Variables ── */
:root {
  --blue:         #1565C0;
  --blue-light:   #1976D2;
  --blue-dark:    #0D47A1;
  --teal:         #00897B;
  --teal-light:   #26A69A;
  --gold:         #F9A825;
  --gold-dark:    #F57F17;
  --dark:         #1A1A2E;
  --gray:         #555770;
  --light-gray:   #F4F7FB;
  --white:        #FFFFFF;
  --shadow:       0 4px 24px rgba(0,0,0,0.09);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.13);
  --radius:       14px;
  --transition:   all 0.3s ease;
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Open Sans', sans-serif;
}

/* ── 2. Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--dark);
  background: var(--white);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── 3. Typography ── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
p  { color: var(--gray); }

.section-tag {
  display: inline-block;
  background: rgba(249,168,37,0.15);
  color: var(--gold-dark);
  border: 1px solid var(--gold);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.74rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-title { color: var(--dark); margin-bottom: 14px; }
.section-sub { max-width: 600px; margin: 0 auto 50px; text-align: center; font-size: 1.02rem; }
.text-center { text-align: center; }

/* ── 4. Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--gold);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(249,168,37,0.40);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.75);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--blue-dark);
  transform: translateY(-2px);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(21,101,192,0.35);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: #00695C;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,137,123,0.35);
}

/* ── 5. Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 6%;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--blue-dark);
  padding: 12px 6%;
  box-shadow: var(--shadow-md);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo .logo-icon {
  width: 46px; height: 46px;
  background: var(--gold);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  color: var(--dark);
}
.nav-logo .logo-text {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--white);
  line-height: 1.2;
}
.nav-logo .logo-text span { color: var(--gold); display: block; font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 0.93rem;
  position: relative;
  transition: var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 10px; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 26px; height: 3px;
  background: var(--white);
  border-radius: 3px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── 6. Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: url('https://images.unsplash.com/photo-1576765608866-5b51046452be?w=1600&q=80') center/cover no-repeat;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,71,161,0.92) 0%, rgba(0,0,0,0.60) 100%);
}
.hero-content {
  position: relative;
  padding: 130px 6% 90px;
  max-width: 720px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(249,168,37,0.15);
  border: 1px solid rgba(249,168,37,0.60);
  color: var(--gold);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.80rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero-content h1 { color: var(--white); margin-bottom: 18px; font-weight: 800; }
.hero-content h1 span { color: var(--gold); }
.hero-content p { color: rgba(255,255,255,0.85); font-size: 1.08rem; max-width: 580px; margin-bottom: 36px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 44px;
  margin-top: 56px;
  flex-wrap: wrap;
}
.stat { color: var(--white); }
.stat strong { display: block; font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--gold); }
.stat span { font-size: 0.85rem; opacity: 0.80; }

/* ── 7. Trust Bar ── */
.trust-bar { background: var(--blue-dark); padding: 18px 6%; }
.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.88);
  font-family: var(--font-head);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 10px;
}
.trust-item i { color: var(--gold); font-size: 1rem; }
.trust-divider { width: 1px; height: 24px; background: rgba(255,255,255,0.20); }

/* ── 8. Sections ── */
section { padding: 90px 6%; }

/* ── 9. Services Snapshot ── */
.services-snapshot { background: var(--light-gray); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
  margin-top: 20px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-top: 4px solid transparent;
}
.service-card:hover {
  transform: translateY(-8px);
  border-top-color: var(--blue);
  box-shadow: var(--shadow-md);
}
.service-card .icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; color: var(--white);
  margin: 0 auto 22px;
}
.service-card h3 { margin-bottom: 10px; }

/* ── 10. Why Us ── */
.why-us { background: var(--white); }
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); position: relative; }
.why-img img { width: 100%; height: 460px; object-fit: cover; }
.why-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--gold);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
}
.why-badge strong { display: block; font-family: var(--font-head); font-size: 1.8rem; color: var(--dark); font-weight: 800; }
.why-badge span   { font-size: 0.78rem; font-weight: 600; color: var(--dark); }
.why-list { display: flex; flex-direction: column; gap: 22px; margin-top: 28px; }
.why-item { display: flex; gap: 18px; align-items: flex-start; }
.why-item .wi-icon {
  min-width: 48px; height: 48px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); font-size: 1.2rem;
  transition: var(--transition);
}
.why-item:hover .wi-icon { background: var(--blue); color: var(--white); }
.why-item h4 { margin-bottom: 4px; font-size: 1rem; }
.why-item p  { font-size: 0.90rem; }

/* ── 11. Stats Strip ── */
.stats-strip { background: linear-gradient(135deg, var(--blue-dark), var(--blue)); padding: 70px 6%; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
}
.stat-box {
  text-align: center; color: var(--white);
  padding: 30px 20px; border-radius: var(--radius);
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  transition: var(--transition);
}
.stat-box:hover { background: rgba(255,255,255,0.15); transform: translateY(-4px); }
.stat-box i { font-size: 2rem; color: var(--gold); margin-bottom: 14px; display: block; }
.stat-box strong { display: block; font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--white); }
.stat-box span   { font-size: 0.86rem; color: rgba(255,255,255,0.72); margin-top: 4px; display: block; }

/* ── 12. Testimonials ── */
.testimonials { background: var(--dark); padding: 90px 6%; }
.testimonials .section-tag { background: rgba(249,168,37,0.15); border-color: var(--gold); color: var(--gold); }
.testimonials .section-title { color: var(--white); }
.testimonials .section-sub   { color: rgba(255,255,255,0.65); }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.t-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius); padding: 32px;
  transition: var(--transition);
}
.t-card:hover { background: rgba(255,255,255,0.10); transform: translateY(-4px); }
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; }
.t-card p  { color: rgba(255,255,255,0.78); font-style: italic; margin-bottom: 24px; font-size: 0.95rem; }
.t-author  { display: flex; align-items: center; gap: 14px; }
.t-avatar  {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1rem;
}
.t-name { font-family: var(--font-head); font-weight: 600; color: var(--white); font-size: 0.95rem; }
.t-loc  { font-size: 0.80rem; color: rgba(255,255,255,0.50); margin-top: 2px; }

/* ── 13. Process Section ── */
.process-section { background: var(--light-gray); }
.process-grid {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap; margin-top: 20px;
}
.process-card {
  background: var(--white); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; box-shadow: var(--shadow);
  flex: 1; min-width: 220px; max-width: 280px;
  position: relative; transition: var(--transition);
}
.process-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.process-num {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: var(--white);
  font-family: var(--font-head); font-weight: 800; font-size: 0.85rem;
  padding: 4px 14px; border-radius: 50px;
}
.process-icon {
  width: 66px; height: 66px;
  background: linear-gradient(135deg, var(--blue), var(--teal));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: var(--white);
  margin: 16px auto 18px;
}
.process-card h3 { margin-bottom: 10px; font-size: 1.05rem; }
.process-arrow { color: var(--blue); font-size: 1.6rem; opacity: 0.40; }

/* ── 14. CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--teal), var(--blue));
  padding: 88px 6%; text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p  { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 32px; font-size: 1.02rem; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── 15. About Page ── */
.about-story { background: var(--white); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.about-img img { width: 100%; height:100%; object-fit: cover; }
.about-text p { margin-bottom: 16px; }
.about-highlights { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 28px; }
.highlight-box { background: var(--light-gray); border-radius: 10px; padding: 18px; border-left: 4px solid var(--blue); }
.highlight-box strong { display: block; font-family: var(--font-head); font-size: 1.6rem; color: var(--blue); }
.highlight-box span   { font-size: 0.82rem; color: var(--gray); }

.values-section { background: var(--light-gray); }
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; margin-top: 20px; }
.value-card { background: var(--white); border-radius: var(--radius); padding: 32px 22px; text-align: center; box-shadow: var(--shadow); transition: var(--transition); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-icon { font-size: 2.2rem; color: var(--blue); margin-bottom: 14px; }
.value-card h3 { margin-bottom: 8px; font-size: 1.05rem; }

/* ── 16. Services Full Page ── */
.services-full { background: var(--white); }
.services-full-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; margin-top: 20px; }
.service-full-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: var(--transition); background: var(--white); }
.service-full-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.sf-img { position: relative; overflow: hidden; }
.sf-img img { width: 100%; height: 210px; object-fit: cover; transition: var(--transition); }
.service-full-card:hover .sf-img img { transform: scale(1.06); }
.sf-badge { position: absolute; top: 14px; right: 14px; background: var(--gold); color: var(--dark); font-size: 0.72rem; font-weight: 700; padding: 4px 12px; border-radius: 50px; }
.sf-body { padding: 26px; }
.sf-icon { width: 50px; height: 50px; background: linear-gradient(135deg, var(--blue), var(--teal)); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.3rem; margin-bottom: 14px; }
.sf-body h3 { margin-bottom: 8px; }
.sf-features { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.sf-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--gray); }
.sf-features li i { color: var(--teal); font-size: 0.82rem; }

/* ── 17. Contact Page ── */
.contact-section { background: var(--white); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 50px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci-card { display: flex; gap: 16px; align-items: flex-start; background: var(--light-gray); border-radius: var(--radius); padding: 22px; transition: var(--transition); }
.ci-card:hover { background: var(--blue); }
.ci-card:hover .ci-icon, .ci-card:hover h4, .ci-card:hover p { color: var(--white); }
.ci-icon { min-width: 46px; height: 46px; background: var(--blue); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--white); font-size: 1.2rem; transition: var(--transition); }
.ci-card:hover .ci-icon { background: rgba(255,255,255,0.20); }
.ci-text h4 { margin-bottom: 4px; font-size: 0.95rem; transition: var(--transition); }
.ci-text p  { font-size: 0.88rem; margin: 0; transition: var(--transition); }
.contact-form-wrap { background: var(--white); border-radius: var(--radius); padding: 42px; box-shadow: var(--shadow-md); }
.contact-form-wrap h3 { margin-bottom: 6px; }
.contact-form-wrap > p { margin-bottom: 26px; font-size: 0.93rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-family: var(--font-head); font-size: 0.85rem; font-weight: 600; color: var(--dark); }
.form-group input,
.form-group select,
.form-group textarea { padding: 12px 16px; border: 2px solid #e0e6f0; border-radius: 8px; font-family: var(--font-body); font-size: 0.93rem; color: var(--dark); transition: var(--transition); outline: none; background: #f8fafc; }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: var(--white); box-shadow: 0 0 0 3px rgba(21,101,192,0.10); }
.form-group textarea { resize: vertical; min-height: 130px; }
.form-success { display: none; background: #e3f2fd; border: 1px solid var(--blue); border-radius: 8px; padding: 14px 18px; color: var(--blue-dark); font-weight: 600; margin-top: 14px; align-items: center; gap: 10px; font-size: 0.92rem; }
.map-section { background: var(--light-gray); padding: 0 6% 80px; }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; border: none; display: block; }

/* ── 18. Page Hero (inner pages) ── */
.page-hero { position: relative; padding: 160px 6% 85px; text-align: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,71,161,0.92), rgba(0,0,0,0.55)); z-index: 0; }
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.page-hero p  { color: rgba(255,255,255,0.80); font-size: 1.05rem; max-width: 540px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 16px; font-size: 0.86rem; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: var(--white); }
.about-hero-bg    { background: url('https://images.unsplash.com/photo-1559757148-5c350d0d3c56?w=1600&q=80') center/cover no-repeat; }
.services-hero-bg { background: url('https://images.unsplash.com/photo-1576765608866-5b51046452be?w=1600&q=80') center/cover no-repeat; }
.contact-hero-bg  { background: url('https://images.unsplash.com/photo-1516574187841-cb9cc2ca948b?w=1600&q=80') center/cover no-repeat; }

/* ── 19. Footer ── */
footer { background: var(--dark); padding: 70px 6% 30px; color: rgba(255,255,255,0.70); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.3fr; gap: 48px; margin-bottom: 48px; }
.footer-brand p { margin: 16px 0 22px; font-size: 0.90rem; line-height: 1.85; }
.social-links { display: flex; gap: 10px; }
.social-links a { width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.70); transition: var(--transition); }
.social-links a:hover { background: var(--gold); color: var(--dark); }
.footer-col h4 { font-family: var(--font-head); font-size: 0.98rem; color: var(--white); margin-bottom: 18px; position: relative; padding-bottom: 10px; }
.footer-col h4::after { content: ''; position: absolute; bottom: 0; left: 0; width: 28px; height: 2px; background: var(--gold); }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.62); font-size: 0.90rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a i { color: var(--gold); font-size: 0.72rem; }
.footer-col ul li a:hover { color: var(--gold); padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 13px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 0.88rem; color: rgba(255,255,255,0.62); }
.footer-contact-list li i { color: var(--gold); margin-top: 4px; min-width: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.10); padding-top: 26px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 0.85rem; }
.footer-bottom p { color: rgba(255,255,255,0.45); margin: 0; }

/* ── 20. Animations ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left  { opacity: 0; transform: translateX(-32px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-right { opacity: 0; transform: translateX(32px);  transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── 21. Back to Top ── */
#backToTop { position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px; background: var(--blue); color: var(--white); border: none; border-radius: 50%; font-size: 1.1rem; cursor: pointer; box-shadow: var(--shadow); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: var(--transition); z-index: 999; }
#backToTop.show { opacity: 1; pointer-events: all; }
#backToTop:hover { background: var(--blue-dark); transform: translateY(-3px); }

/* ── 22. Media Queries ── */
@media (max-width: 992px) {
  .why-grid, .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-img img, .about-img img { height: 340px; }
  .process-arrow { display: none; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; flex-direction: column; }
  .nav-links.open { display: flex; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: var(--blue-dark); justify-content: center; align-items: center; gap: 32px; z-index: 999; }
  .nav-links.open .nav-cta { display: flex; }
  .nav-links a { font-size: 1.25rem; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .trust-divider { display: none; }
  .hero-stats { gap: 22px; }
  .cta-btns { flex-direction: column; align-items: center; }
  .about-highlights { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  section { padding: 70px 5%; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; }
  .about-highlights { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 26px 18px; }
  .trust-bar-inner { justify-content: flex-start; }
}