/* ============================================================
   Fatuma Home Services – styles.css
   Mobile-first. Plain vanilla CSS. No framework.
   ============================================================ */

/* ---- CSS Custom Properties ---- */
:root {
  /* Brand colours */
  --color-primary:      #1B4B6E;   /* deep teal-navy – primary actions */
  --color-primary-dark: #133a56;   /* darker variant for hover */
  --color-primary-light:#E8F3FA;   /* light tint for backgrounds */
  --color-gold:         #C48B2A;   /* warm accent */
  --color-gold-light:   #FDF4E3;
  --color-wa-green:     #25D366;   /* WhatsApp green – ONLY for WhatsApp CTAs */
  --color-wa-dark:      #128C7E;   /* WA hover */

  /* Neutrals */
  --color-bg:           #FAF9F7;   /* warm off-white page background */
  --color-surface:      #FFFFFF;
  --color-surface-alt:  #F3F1EE;
  --color-border:       #E2DDD7;
  --color-text:         #1A2332;   /* near-black */
  --color-text-muted:   #5C6370;
  --color-text-light:   #8A9099;

  /* Typography */
  --font-base:  'Cairo', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --text-xs:    0.75rem;
  --text-sm:    0.875rem;
  --text-base:  1rem;
  --text-md:    1.125rem;
  --text-lg:    1.25rem;
  --text-xl:    1.5rem;
  --text-2xl:   1.875rem;
  --text-3xl:   2.25rem;
  --text-4xl:   2.75rem;

  /* Spacing */
  --space-1:   0.25rem;
  --space-2:   0.5rem;
  --space-3:   0.75rem;
  --space-4:   1rem;
  --space-5:   1.25rem;
  --space-6:   1.5rem;
  --space-8:   2rem;
  --space-10:  2.5rem;
  --space-12:  3rem;
  --space-16:  4rem;
  --space-20:  5rem;
  --space-24:  6rem;

  /* Borders & Shadows */
  --radius-sm:  0.375rem;
  --radius-md:  0.625rem;
  --radius-lg:  1rem;
  --radius-xl:  1.5rem;
  --radius-full: 9999px;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.07), 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md:  0 4px 12px rgba(0,0,0,0.09), 0 2px 4px rgba(0,0,0,0.06);
  --shadow-lg:  0 10px 30px rgba(0,0,0,0.12), 0 4px 10px rgba(0,0,0,0.07);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 220ms ease;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
  padding-bottom: 72px; /* space for mobile sticky bar */
  direction: rtl;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font: inherit; border: none; background: none; }
h1, h2, h3, h4 { line-height: 1.25; font-weight: 700; }
p { color: var(--color-text-muted); }
strong { color: var(--color-text); }

/* Focus styles for accessibility */
:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

/* Screen-reader only utility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ============================================================
   LAYOUT
   ============================================================ */
.container {
  width: 100%;
  max-width: 1140px;
  margin-inline: auto;
  padding-inline: var(--space-5);
}

.section {
  padding-block: var(--space-16);
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.section-header h2 {
  font-size: var(--text-2xl);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.section-sub {
  font-size: var(--text-md);
  color: var(--color-text-muted);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.75rem 1.375rem;
  border-radius: var(--radius-full);
  font-size: var(--text-base);
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  min-height: 48px;
  white-space: nowrap;
  cursor: pointer;
}

.btn:active { transform: scale(0.97); }

/* Call button */
.btn-call {
  background-color: var(--color-primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(27,75,110,0.25);
}
.btn-call:hover, .btn-call:focus-visible {
  background-color: var(--color-primary-dark);
  box-shadow: 0 4px 14px rgba(27,75,110,0.35);
}

/* WhatsApp button */
.btn-whatsapp {
  background-color: var(--color-wa-green);
  color: #fff;
  box-shadow: 0 2px 8px rgba(37,211,102,0.3);
}
.btn-whatsapp:hover, .btn-whatsapp:focus-visible {
  background-color: var(--color-wa-dark);
  box-shadow: 0 4px 14px rgba(37,211,102,0.4);
}

/* Sizes */
.btn-lg {
  padding: 0.9rem 1.75rem;
  font-size: var(--text-md);
  min-height: 54px;
}

.btn-xl {
  padding: 1.1rem 2.25rem;
  font-size: var(--text-lg);
  min-height: 60px;
}

.btn-icon { flex-shrink: 0; }

/* ============================================================
   STICKY HEADER
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-surface);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  gap: var(--space-4);
}

.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-md);
  font-weight: 800;
  color: var(--color-primary);
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 1.4rem; }

.logo-text {
  display: none; /* show on larger screens */
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

/* On mobile, hide "WhatsApp" text in header, keep Call */
.header-ctas .btn-whatsapp .btn-text-full { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  background: linear-gradient(160deg, var(--color-primary-light) 0%, var(--color-surface) 60%);
  padding-block: var(--space-12) var(--space-16);
  overflow: hidden;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: var(--space-10);
  align-items: center;
}

.hero-content { max-width: 640px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-5);
  letter-spacing: 0.02em;
}

.hero-h1 {
  font-size: var(--text-3xl);
  color: var(--color-text);
  margin-bottom: var(--space-5);
  letter-spacing: -0.02em;
}

.hero-sub {
  font-size: var(--text-md);
  color: var(--color-text-muted);
  margin-bottom: var(--space-8);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  margin-bottom: var(--space-8);
}

.trust-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-2) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-weight: 500;
}

.trust-strip span {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.trust-strip svg { color: var(--color-primary); flex-shrink: 0; }
.trust-dot { color: var(--color-border); font-size: 1.2rem; }

/* Hero image */
.hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
}

/* Subtle gradient fade at image bottom so badge sits cleanly */
.hero-image-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.32) 0%,
    rgba(0, 0, 0, 0.08) 40%,
    transparent 70%
  );
  pointer-events: none;
}

.hero-img {
  width: 100%;
  height: auto;
  aspect-ratio: 6/5;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  background-color: var(--color-surface-alt);
  display: block;
}

/* Badge – frosted glass card */
.hero-img-badge {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  z-index: 1;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: var(--space-3) var(--space-4);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18), 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

/* Pulsing availability dot */
.hero-img-badge-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22);
  animation: badge-dot-pulse 2.2s ease-in-out infinite;
}

@keyframes badge-dot-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.22); }
  50%       { box-shadow: 0 0 0 7px rgba(34, 197, 94, 0.08); }
}

.hero-img-badge-text strong {
  display: block;
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.25;
}

.hero-img-badge-text span {
  display: block;
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  line-height: 1.3;
  margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { background-color: var(--color-surface); }

.features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
}

.feature-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-4);
}

.feature-icon--teal  { background-color: var(--color-primary-light); color: var(--color-primary); }
.feature-icon--gold  { background-color: var(--color-gold-light);    color: var(--color-gold); }
.feature-icon--green { background-color: #E6FAF0;                    color: #1a7d43; }

.feature-card h3 {
  font-size: var(--text-md);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.feature-card p {
  font-size: var(--text-sm);
  line-height: 1.65;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { background-color: var(--color-bg); }

.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
}

.service-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-5);
  transition: box-shadow var(--transition-base), transform var(--transition-base);
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.service-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-icon {
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.service-card h3 {
  font-size: var(--text-base);
  color: var(--color-text);
  font-weight: 600;
}

.service-card p {
  font-size: var(--text-sm);
  line-height: 1.6;
}

.service-card--cta {
  background: var(--color-primary-light);
  border-color: var(--color-primary);
  grid-column: span 2;
}

.service-card--cta h3 { color: var(--color-primary); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-section { background-color: var(--color-surface); }

.steps-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: var(--space-12);
}

.step {
  display: flex;
  gap: var(--space-5);
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background-color: var(--color-primary);
  color: #fff;
  font-size: var(--text-lg);
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(27,75,110,0.22);
  z-index: 1;
}

.step-content {
  padding-block: var(--space-2);
  padding-bottom: var(--space-6);
}

.step-content h3 {
  font-size: var(--text-md);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.step-content p { font-size: var(--text-sm); line-height: 1.7; }

.step-connector {
  width: 48px;
  flex-shrink: 0;
  height: 32px;
  position: relative;
}

.step-connector::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary) 0%, var(--color-border) 100%);
  transform: translateX(-50%);
}

.how-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
  justify-content: center;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { background-color: var(--color-bg); }

.stat-badge {
  display: inline-block;
  background-color: var(--color-gold-light);
  color: var(--color-gold);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: var(--space-2) var(--space-5);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-4);
  border: 1px solid #e8cc8c;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-5);
}

.testimonial-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  color: #F5A623;
  font-size: var(--text-md);
  margin-bottom: var(--space-3);
  letter-spacing: 0.1em;
}

.testimonial-card blockquote p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
  font-style: italic;
  margin-bottom: var(--space-4);
}

.testimonial-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.testimonial-meta strong {
  font-size: var(--text-sm);
  color: var(--color-text);
}

.testimonial-meta span {
  font-size: var(--text-xs);
  color: var(--color-text-light);
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { background-color: var(--color-surface); }
.faq-container { max-width: 760px; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.faq-item { border-bottom: 1px solid var(--color-border); }
.faq-item:last-child { border-bottom: none; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) var(--space-6);
  text-align: left;
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-text);
  background: var(--color-surface);
  transition: background-color var(--transition-fast);
  min-height: 60px;
}

.faq-question:hover { background-color: var(--color-bg); }
.faq-question[aria-expanded="true"] { color: var(--color-primary); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--color-text-muted);
  transition: transform var(--transition-base);
}

.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
  color: var(--color-primary);
}

.faq-answer {
  padding: 0 var(--space-6) var(--space-5);
  background: var(--color-bg);
}

.faq-answer p {
  font-size: var(--text-sm);
  line-height: 1.75;
  color: var(--color-text-muted);
}

.faq-link {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FINAL CTA BAND
   ============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--color-primary) 0%, #0F3250 100%);
  padding-block: var(--space-16) var(--space-20);
  text-align: center;
}

.cta-band-inner { max-width: 700px; }

.cta-band h2 {
  font-size: var(--text-2xl);
  color: #fff;
  margin-bottom: var(--space-4);
  letter-spacing: -0.02em;
}

.cta-band > .container > p,
.cta-band-inner > p:not(.cta-band-phone) {
  color: rgba(255,255,255,0.80);
  font-size: var(--text-md);
  margin-bottom: var(--space-8);
}

.cta-band-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-6);
}

.cta-band .btn-call {
  background-color: #fff;
  color: var(--color-primary);
  box-shadow: 0 3px 12px rgba(0,0,0,0.2);
}

.cta-band .btn-call:hover {
  background-color: #e8f3fa;
  box-shadow: 0 5px 18px rgba(0,0,0,0.28);
}

.cta-band-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  color: rgba(255,255,255,0.75);
  font-size: var(--text-sm);
}

.cta-band-phone a {
  color: #fff;
  font-weight: 700;
  font-size: var(--text-base);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background-color: #111827;
  color: #9CA3AF;
  font-size: var(--text-sm);
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-8);
  padding-block: var(--space-12);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-brand .logo-icon { font-size: 1.8rem; }

.footer-brand strong {
  font-size: var(--text-md);
  color: #fff;
  font-weight: 700;
}

.footer-brand p { color: #9CA3AF; line-height: 1.6; }

.footer-contact h4,
.footer-areas h4 {
  color: #fff;
  font-size: var(--text-sm);
  font-weight: 600;
  margin-bottom: var(--space-3);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-contact p,
.footer-areas p { margin-bottom: var(--space-1); line-height: 1.6; }

.footer-contact a:hover { color: #fff; }

.footer-bottom {
  border-top: 1px solid #374151;
  padding-block: var(--space-5);
  text-align: center;
  font-size: var(--text-xs);
  color: #6B7280;
}

/* ============================================================
   FLOATING WHATSAPP BUTTON
   ============================================================ */
.floating-whatsapp {
  position: fixed;
  bottom: 100px; /* above mobile bar */
  right: var(--space-5);
  z-index: 90;
  width: 56px;
  height: 56px;
  background-color: var(--color-wa-green);
  color: #fff;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.45);
  transition: background-color var(--transition-fast), transform var(--transition-fast), box-shadow var(--transition-fast);
  animation: wa-pulse 2.8s ease-in-out infinite;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background-color: var(--color-wa-dark);
  transform: scale(1.08);
  box-shadow: 0 6px 22px rgba(37,211,102,0.55);
  animation: none;
}

.floating-whatsapp-tooltip {
  position: absolute;
  left: 64px;
  white-space: nowrap;
  background-color: #111;
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 500;
  padding: var(--space-1) var(--space-3);
  border-radius: var(--radius-sm);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition-base);
}

.floating-whatsapp:hover .floating-whatsapp-tooltip,
.floating-whatsapp:focus-visible .floating-whatsapp-tooltip {
  opacity: 1;
}

@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(37,211,102,0.45); }
  50%       { box-shadow: 0 4px 24px rgba(37,211,102,0.7); }
}

/* ============================================================
   MOBILE STICKY BOTTOM BAR
   ============================================================ */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 95;
  display: flex;
  height: 56px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.15);
}

.mobile-sticky-call,
.mobile-sticky-whatsapp {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-size: var(--text-base);
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  transition: filter var(--transition-fast);
  min-height: 56px;
}

.mobile-sticky-call {
  background-color: var(--color-primary);
}

.mobile-sticky-whatsapp {
  background-color: var(--color-wa-green);
}

.mobile-sticky-call:hover   { filter: brightness(1.1); }
.mobile-sticky-whatsapp:hover { filter: brightness(1.05); }

/* ============================================================
   RESPONSIVE – TABLET (≥ 600px)
   ============================================================ */
@media (min-width: 600px) {
  .features-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .service-card--cta {
    grid-column: span 3;
  }
}

/* ============================================================
   RESPONSIVE – DESKTOP (≥ 768px)
   ============================================================ */
@media (min-width: 768px) {
  /* Header */
  .logo-text { display: inline; }
  .header-ctas .btn-whatsapp .btn-text-full { display: inline; }

  /* Hero */
  .hero-section { padding-block: var(--space-20) var(--space-24); }

  .hero-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-12);
  }

  .hero-content { flex: 1; max-width: 560px; }
  .hero-image-wrap { flex: 0 0 440px; }

  .hero-h1 { font-size: var(--text-4xl); }

  /* Footer */
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  /* Hide mobile sticky bar */
  .mobile-sticky-bar { display: none; }

  /* Float WA button sits lower since no sticky bar */
  .floating-whatsapp { bottom: var(--space-8); }

  /* Remove body bottom padding needed for mobile bar */
  body { padding-bottom: 0; }

  /* Testimonials */
  .testimonials-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/* ============================================================
   RESPONSIVE – LARGE DESKTOP (≥ 1024px)
   ============================================================ */
@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section-header h2 { font-size: var(--text-3xl); }

  .cta-band h2 { font-size: var(--text-3xl); }
}

/* ============================================================
   JS SCROLL REVEAL
   ============================================================ */
.js-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.45s ease, transform 0.45s ease;
}

.js-revealed {
  opacity: 1;
  transform: none;
}

/* Stagger children slightly when multiple cards are in view */
.features-grid .js-reveal:nth-child(2) { transition-delay: 0.07s; }
.features-grid .js-reveal:nth-child(3) { transition-delay: 0.14s; }
.features-grid .js-reveal:nth-child(4) { transition-delay: 0.07s; }
.features-grid .js-reveal:nth-child(5) { transition-delay: 0.14s; }
.features-grid .js-reveal:nth-child(6) { transition-delay: 0.21s; }
.services-grid .js-reveal:nth-child(2) { transition-delay: 0.07s; }
.services-grid .js-reveal:nth-child(3) { transition-delay: 0.14s; }
.testimonials-grid .js-reveal:nth-child(2) { transition-delay: 0.09s; }
.testimonials-grid .js-reveal:nth-child(3) { transition-delay: 0.18s; }

/* Header scrolled state */
.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
}

/* ============================================================
   PRINT
   ============================================================ */
@media print {
  .site-header,
  .floating-whatsapp,
  .mobile-sticky-bar { display: none; }

  body { padding-bottom: 0; }

  a[href]::after { content: " (" attr(href) ")"; }
}
