/* ============================================
   Nile Care Medical Center — "Split Hero, Clean Medical"
   Unique layout: split hero, trust bar, 2-tier services,
   spotlight testimonials, centered contact
   ============================================ */

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

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

:root {
  --navy:    #0d2d4e;
  --navy2:   #071e35;
  --blue:    #1464a5;
  --gold:    #c8a84b;
  --gold2:   #a8892e;
  --white:   #ffffff;
  --offwhite:#f8fafc;
  --grey:    #f1f5f9;
  --text:    #1e293b;
  --muted:   #64748b;
  --light:   #94a3b8;
  --border:  #e2e8f0;
  --green:   #25d366;
  --radius:  14px;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow:    0 8px 32px rgba(0,0,0,0.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ─── NAVBAR ─────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 0 6%;
  height: 72px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(7,30,53,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo .cross {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 8px;
  display: grid; place-items: center;
}
.nav-logo .cross img { width: 100%; height: 100%; display: block; border-radius: inherit; }
.nav-logo .name { font-size: 1.05rem; font-weight: 700; color: var(--white); letter-spacing: -0.3px; }
.nav-logo .name span { color: var(--gold); }

.nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.82); font-size: 0.88rem; font-weight: 500; letter-spacing: 0.2px; transition: color 0.2s; }
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold);
  color: var(--navy2) !important;
  padding: 9px 22px;
  border-radius: 8px;
  font-weight: 700 !important;
  font-size: 0.85rem !important;
  transition: all 0.2s !important;
  white-space: nowrap;
}
.btn-nav:hover { background: var(--gold2) !important; transform: translateY(-1px); }

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

/* ─── HERO — SPLIT LAYOUT ────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  background: linear-gradient(135deg, var(--navy2) 0%, var(--navy) 60%, #163d63 100%);
  overflow: hidden;
  padding: 0 6%;
}

.hero-left {
  position: relative; z-index: 1;
  padding: 140px 0 100px;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(200,168,75,0.18);
  border: 1px solid rgba(200,168,75,0.4);
  color: var(--gold);
  padding: 7px 18px; border-radius: 100px;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 1.2px;
  text-transform: uppercase; margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--gold);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 22px;
  letter-spacing: -1.5px;
}
.hero h1 em { color: var(--gold); font-style: normal; }

.hero p {
  font-size: 1.12rem;
  color: rgba(255,255,255,0.72);
  margin-bottom: 40px;
  max-width: 520px;
  line-height: 1.75;
  font-weight: 400;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--gold);
  color: var(--navy2);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700; font-size: 0.95rem;
  box-shadow: 0 8px 24px rgba(200,168,75,0.4);
  transition: all 0.25s;
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-3px); box-shadow: 0 16px 36px rgba(200,168,75,0.45); }
.btn-primary svg { width: 18px; height: 18px; fill: currentColor; }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 600; font-size: 0.95rem;
  border: 1.5px solid rgba(255,255,255,0.25);
  transition: all 0.25s; backdrop-filter: blur(4px);
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); transform: translateY(-3px); }
.btn-ghost svg { width: 18px; height: 18px; fill: currentColor; }

/* Hero right — image in rounded frame */
.hero-right {
  display: flex; justify-content: center; align-items: center;
  padding: 100px 0;
  position: relative; z-index: 1;
}

.hero-image-frame {
  position: relative;
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  border: 3px solid rgba(200,168,75,0.35);
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,0.35);
}

.hero-image-frame img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
  transition: transform 0.1s linear;
}

.hero-float-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--navy2);
  border: 2px solid var(--gold);
  padding: 16px 22px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 12px 36px rgba(0,0,0,0.4);
  z-index: 2;
}
.hfb-num { font-size: 1.8rem; font-weight: 800; color: var(--gold); display: block; line-height: 1; }
.hfb-txt { font-size: 0.68rem; color: rgba(255,255,255,0.55); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ─── TRUST BAR ──────────────────────────── */
.trust-bar {
  background: var(--offwhite);
  border-bottom: 1px solid var(--border);
  padding: 0 6%;
}
.trust-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center;
  padding: 28px 0;
  gap: 0;
}
.trust-badge {
  display: flex; align-items: center; gap: 12px;
  padding: 0 36px;
  white-space: nowrap;
}
.trust-icon {
  width: 40px; height: 40px; min-width: 40px;
  background: rgba(13,45,78,0.08);
  border-radius: 10px;
  display: grid; place-items: center;
}
.trust-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.trust-badge span { font-size: 0.88rem; font-weight: 700; color: var(--navy2); }
.trust-divider {
  width: 1px; height: 36px;
  background: var(--border);
  flex-shrink: 0;
}

/* ─── SECTIONS COMMON ─────────────────────── */
.section { padding: 100px 6%; }
.container { max-width: 1160px; margin: 0 auto; }

.section-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  color: var(--blue); font-size: 0.75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 28px; height: 2px; background: var(--gold);
}

.section-title {
  font-size: clamp(1.9rem, 3.5vw, 2.7rem);
  font-weight: 800; color: var(--navy2);
  line-height: 1.15; letter-spacing: -0.8px;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 1.05rem; color: var(--muted); max-width: 540px;
  line-height: 1.75;
}
.header-center { text-align: center; margin-bottom: 64px; }
.header-center .section-eyebrow { margin: 0 auto 16px; display: flex; justify-content: center; }
.header-center .section-desc { margin: 0 auto; }

/* ─── ABOUT — Image Left, Text Right ────── */
.about { background: var(--offwhite); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-wrap img {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
}

/* Stat pills */
.stat-pills {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-top: 20px; margin-bottom: 8px;
}
.stat-pill {
  display: inline-block;
  background: rgba(13,45,78,0.07);
  border: 1px solid rgba(13,45,78,0.12);
  color: var(--navy);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.3px;
}

.about-text .section-desc { max-width: 100%; }

.about-list { margin-top: 28px; display: flex; flex-direction: column; gap: 18px; }
.about-item { display: flex; gap: 16px; align-items: flex-start; }
.about-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(13,45,78,0.07); border-radius: 10px;
  display: grid; place-items: center;
}
.about-icon svg { width: 20px; height: 20px; fill: var(--navy); }
.about-item h4 { font-size: 0.94rem; font-weight: 700; color: var(--navy2); margin-bottom: 3px; }
.about-item p { font-size: 0.85rem; color: var(--muted); line-height: 1.6; }

/* ─── SERVICES — 2-TIER ──────────────────── */
.services { background: var(--white); }

/* Featured row — 2 large cards */
.services-featured {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-bottom: 28px;
}

.service-card-lg {
  display: flex;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
}
.service-card-lg:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.service-accent {
  width: 6px; flex-shrink: 0;
  background: linear-gradient(180deg, var(--navy), var(--blue));
}
.service-accent.accent-gold {
  background: linear-gradient(180deg, var(--gold), var(--gold2));
}

.service-lg-body {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 36px 32px;
}

.service-icon {
  width: 54px; height: 54px; min-width: 54px;
  background: linear-gradient(135deg, var(--navy2), var(--blue));
  border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: 0 8px 20px rgba(13,45,78,0.25);
}
.service-icon svg { width: 26px; height: 26px; fill: var(--gold); }

.service-card-lg h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy2); margin-bottom: 10px; }
.service-card-lg p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }

.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: 16px; font-size: 0.82rem; font-weight: 700;
  color: var(--blue); transition: gap 0.2s;
}
.service-link:hover { gap: 10px; }
.service-link svg { width: 14px; height: 14px; fill: currentColor; }

/* Compact row — 4 small cards */
.services-compact {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}

.service-card-sm {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}
.service-card-sm:hover {
  background: var(--white);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.service-icon-sm {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy2), var(--blue));
  border-radius: 12px;
  display: grid; place-items: center;
  margin: 0 auto 16px;
}
.service-icon-sm svg { width: 22px; height: 22px; fill: var(--gold); }

.service-card-sm h3 { font-size: 0.95rem; font-weight: 700; color: var(--navy2); margin-bottom: 6px; }
.service-card-sm p { font-size: 0.8rem; color: var(--muted); line-height: 1.6; }

/* ─── TESTIMONIALS — SINGLE SPOTLIGHT ────── */
.testimonials { background: var(--offwhite); }
.testimonials .section-title { color: var(--navy2); }
.testimonials .section-eyebrow { color: var(--blue); }

.testi-spotlight {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.testi-quote-mark {
  margin: 0 auto 24px;
  width: 56px; height: 56px;
  background: rgba(200,168,75,0.12);
  border-radius: 50%;
  display: grid; place-items: center;
}
.testi-quote-mark svg { width: 28px; height: 28px; fill: var(--gold); }

/* Hide radio buttons */
.testi-radio { display: none; }

/* All cards hidden by default */
.testi-spotlight .testi-card {
  display: none;
  padding: 0 20px;
}

/* Show card based on checked radio */
#testi1:checked ~ #testiCard1,
#testi2:checked ~ #testiCard2,
#testi3:checked ~ #testiCard3 {
  display: block;
}

.testi-card blockquote {
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.85;
  font-style: italic;
  margin-bottom: 28px;
  font-weight: 400;
}

.testi-author {
  display: inline-flex; align-items: center; gap: 14px;
  margin-bottom: 16px;
}
.testi-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--gold));
  display: grid; place-items: center;
  font-size: 1.1rem; font-weight: 700; color: var(--white);
}
.testi-name { font-size: 0.95rem; font-weight: 700; color: var(--navy2); text-align: left; }
.testi-role { font-size: 0.78rem; color: var(--muted); margin-top: 2px; text-align: left; }

.stars { display: flex; gap: 4px; justify-content: center; margin-bottom: 8px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold); }

/* Navigation dots */
.testi-dots {
  display: flex; justify-content: center; gap: 10px;
  margin-top: 32px;
}
.testi-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: all 0.25s;
}
.testi-dot:hover { background: var(--light); }

/* Active dot */
#testi1:checked ~ .testi-dots .testi-dot:nth-child(1),
#testi2:checked ~ .testi-dots .testi-dot:nth-child(2),
#testi3:checked ~ .testi-dots .testi-dot:nth-child(3) {
  background: var(--gold);
  transform: scale(1.2);
}

/* ─── CTA BAND — Softer gradient ─────────── */
.cta-band {
  background: linear-gradient(135deg, #2a7bc7 0%, #1a6bb8 50%, var(--blue) 100%);
  padding: 72px 6%;
  position: relative; overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 300px; height: 300px; border-radius: 50%;
  background: rgba(200,168,75,0.08);
}
.cta-inner {
  max-width: 1160px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap;
  position: relative; z-index: 1;
}
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); font-weight: 800; color: var(--white); letter-spacing: -0.5px; }
.cta-inner p { font-size: 1rem; color: rgba(255,255,255,0.65); margin-top: 8px; }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--navy2);
  padding: 14px 28px; border-radius: 10px;
  font-weight: 700; font-size: 0.92rem; white-space: nowrap;
  transition: all 0.2s;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(0,0,0,0.25); }
.btn-white svg { width: 16px; height: 16px; fill: var(--green); }

/* ─── CONTACT — Full-width centered ──────── */
.contact { background: var(--offwhite); }

.contact-info-row {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
  margin-bottom: 48px;
}

.contact .info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.contact .info-card:hover { box-shadow: var(--shadow); }

.info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--navy2), var(--blue));
  border-radius: 12px;
  display: grid; place-items: center;
  margin: 0 auto 14px;
}
.info-icon svg { width: 20px; height: 20px; fill: var(--gold); }

.info-label {
  font-size: 0.72rem; font-weight: 700; color: var(--light);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px;
}
.info-val { font-size: 0.88rem; font-weight: 600; color: var(--text); }

/* Centered form */
.contact-form-wrap {
  display: flex; justify-content: center;
}

.contact-form-box {
  background: var(--white); border-radius: var(--radius);
  padding: 44px 40px; box-shadow: var(--shadow);
  border: 1px solid var(--border);
  width: 100%; max-width: 640px;
}
.contact-form-box h3 {
  font-size: 1.35rem; font-weight: 800; color: var(--navy2);
  margin-bottom: 28px; letter-spacing: -0.3px; text-align: center;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: 0.78rem; font-weight: 700;
  color: var(--text); text-transform: uppercase; letter-spacing: 0.8px; margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  display: block;
  width: 100%;
  min-height: 52px;
  padding: 13px 16px;
  border: 1.5px solid var(--border); border-radius: 9px;
  font-family: 'Inter', sans-serif; font-size: 0.92rem;
  line-height: 1.35;
  color: var(--text); background-color: var(--offwhite);
  transition: all 0.2s; outline: none;
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 46px;
  background-image: url("data:image/svg+xml,%3Csvg width='18' height='18' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 10l5 5 5-5' stroke='%230d2d4e' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 18px 18px;
  background-position: right 16px center;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  border-color: var(--blue); background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(20,100,165,0.08);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.btn-submit {
  width: 100%; background: linear-gradient(135deg, var(--navy2), var(--blue));
  color: var(--white); border: none; padding: 15px;
  border-radius: 10px; font-family: 'Inter', sans-serif;
  font-size: 0.95rem; font-weight: 700; cursor: pointer;
  transition: all 0.25s; margin-top: 8px; letter-spacing: 0.3px;
}
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(13,45,78,0.35); }
.form-msg { margin-top: 14px; padding: 13px 16px; border-radius: 9px; font-size: 0.87rem; font-weight: 500; display: none; }
.form-msg.success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; display: block; }
.form-msg.error { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; display: block; }

/* ─── FOOTER — 3 columns ────────────────── */
footer { background: var(--navy2); color: rgba(255,255,255,0.55); padding: 56px 6% 28px; }
.footer-top {
  max-width: 1160px; margin: 0 auto;
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand p { font-size: 0.85rem; color: rgba(255,255,255,0.45); margin-top: 14px; line-height: 1.7; max-width: 280px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; color: rgba(255,255,255,0.3); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.85rem; color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list a { font-size: 0.84rem; color: rgba(255,255,255,0.5); display: flex; gap: 8px; align-items: center; transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--gold); }
.footer-contact-list svg { width: 14px; height: 14px; fill: var(--gold); min-width: 14px; }
.footer-bottom { max-width: 1160px; margin: 28px auto 0; display: flex; justify-content: space-between; align-items: center; font-size: 0.78rem; color: rgba(255,255,255,0.28); flex-wrap: wrap; gap: 10px; }

/* ─── FLOATING WHATSAPP ───────────────────── */
.wa-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--green); border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
  z-index: 9999; transition: all 0.25s;
  animation: waFloat 3s ease infinite;
}
@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
.wa-float:hover { transform: scale(1.12) !important; animation: none; }
.wa-float svg { width: 30px; height: 30px; fill: var(--white); }

/* ─── MOBILE MENU ─────────────────────────── */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy2); padding: 16px 6% 24px;
  z-index: 999; border-top: 1px solid rgba(255,255,255,0.07);
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a { color: rgba(255,255,255,0.78); padding: 14px 0; font-size: 1rem; font-weight: 500; border-bottom: 1px solid rgba(255,255,255,0.05); }
.mobile-menu a:hover { color: var(--gold); }

/* ─── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .trust-badge { padding: 0 24px; }
  .services-compact { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }

  /* Hero stacks vertically */
  .hero { grid-template-columns: 1fr; padding: 0 5%; }
  .hero-left { padding: 120px 0 40px; max-width: 100%; }
  .hero-right { padding: 0 0 60px; }
  .hero-image-frame { max-width: 400px; }
  .hero-image-frame img { height: 380px; }
  .hero h1 { font-size: 2.6rem; }

  /* Trust bar wraps */
  .trust-inner { flex-wrap: wrap; gap: 16px; padding: 20px 0; }
  .trust-divider { display: none; }
  .trust-badge { padding: 8px 16px; }

  /* About stacks */
  .about-grid { grid-template-columns: 1fr; gap: 48px; }

  /* Services */
  .services-featured { grid-template-columns: 1fr; }

  /* Contact info */
  .contact-info-row { grid-template-columns: repeat(2, 1fr); }

  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}

@media (max-width: 640px) {
  .section { padding: 72px 5%; }
  .services-featured { grid-template-columns: 1fr; }
  .services-compact { grid-template-columns: 1fr 1fr; }
  .service-lg-body { flex-direction: column; }
  .contact-info-row { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .btn-primary, .btn-ghost { text-align: center; justify-content: center; }
  .contact-form-box { padding: 28px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-image-frame img { height: 300px; }
}

@media (max-width: 480px) {
  .services-compact { grid-template-columns: 1fr; }
  .trust-inner { flex-direction: column; align-items: flex-start; padding: 16px 0; }
}
