/* ═══════════════════════════════════════════════════════════
   SHERINE HOME SERVICES — styles.css
   Fonts: Amiri (headings) + Tajawal (body) — Arabic
   Palette: Gold #C9A84C | Navy #1A1F2E | Cream #FAF8F4
═══════════════════════════════════════════════════════════ */

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

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

body {
  font-family: 'Tajawal', 'Arial', sans-serif;
  font-weight: 400;
  color: #2D3142;
  background: #fff;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  padding-top: 72px; /* header height */
}

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

/* ── CSS VARIABLES ────────────────────────────────────── */
:root {
  --gold:     #C9A84C;
  --gold-dark:#A8872E;
  --gold-lt:  #F0DFA0;
  --navy:     #1A1F2E;
  --navy-mid: #2C3347;
  --cream:    #FAF8F4;
  --cream-dk: #F2EDE4;
  --white:    #ffffff;
  --text:     #2D3142;
  --text-md:  #4B5264;
  --text-lt:  #737B8C;
  --border:   #E8E3D9;
  --wa:       #25D366;
  --wa-dark:  #1DA851;
  --shadow-sm: 0 2px 12px rgba(26,31,46,.07);
  --shadow-md: 0 8px 32px rgba(26,31,46,.12);
  --shadow-lg: 0 20px 60px rgba(26,31,46,.16);
  --radius:   12px;
  --radius-lg:20px;
  --transition: .25s ease;
}

/* ── TYPOGRAPHY ───────────────────────────────────────── */
h1, h2, h3 {
  font-family: 'Amiri', 'Traditional Arabic', serif;
  font-weight: 700;
  line-height: 1.35;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 6vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4.5vw, 2.8rem); }
h3 { font-size: clamp(1.15rem, 3vw, 1.45rem); font-weight: 700; }

p { margin: 0; }

.eyebrow {
  display: inline-block;
  font-family: 'Tajawal', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--gold);
  margin-bottom: .75rem;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-inline-end: 8px;
  border-radius: 2px;
}

/* ── LAYOUT ───────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

.section {
  padding-block: clamp(4rem, 9vw, 7rem);
}

.section-head {
  text-align: center;
  max-width: 660px;
  margin-inline: auto;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}

.section-head h2 { margin-top: .5rem; }

.section-lead {
  margin-top: 1rem;
  font-size: 1.05rem;
  color: var(--text-md);
  line-height: 1.7;
}

/* ── BUTTONS ──────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  padding: .85rem 1.75rem;
  border-radius: 50px;
  font-family: 'Tajawal', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  letter-spacing: .01em;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-call {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 4px 18px rgba(201,168,76,.35);
}
.btn-call:hover {
  background: var(--gold-dark);
  box-shadow: 0 8px 28px rgba(201,168,76,.45);
}

.btn-wa {
  background: var(--wa);
  color: #fff;
  box-shadow: 0 4px 18px rgba(37,211,102,.3);
}
.btn-wa:hover {
  background: var(--wa-dark);
  box-shadow: 0 8px 28px rgba(37,211,102,.4);
}

.btn-lg {
  padding: 1.05rem 2.2rem;
  font-size: 1.05rem;
}

/* ── HEADER ───────────────────────────────────────────── */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  height: 72px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  border-color: var(--border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: .7rem;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-name {
  font-family: 'Amiri', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}
.logo-sub {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.header-phone:hover { color: var(--gold); }
.header-phone span { display: none; }

.btn-wa-header {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--wa);
  color: #fff;
  padding: .55rem 1.1rem;
  border-radius: 50px;
  font-size: .85rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.btn-wa-header:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* ── HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,31,46,.82) 0%,
    rgba(26,31,46,.65) 50%,
    rgba(26,31,46,.45) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-block: 5rem 4rem;
  max-width: 760px;
}

.hero-badge {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-lt);
  border: 1px solid rgba(201,168,76,.4);
  padding: .35rem .85rem;
  border-radius: 50px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.hero-title em { font-style: normal; color: var(--gold-lt); }

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.2rem);
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 2.5rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
}

.btn-hero { padding: 1rem 2rem; font-size: 1rem; }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.hero-scroll span {
  display: block;
  width: 1.5px;
  height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0), rgba(255,255,255,.6));
  margin-inline: auto;
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .4; transform: scaleY(.8); }
  50% { opacity: 1; transform: scaleY(1); }
}

/* ── TRUST STRIP ──────────────────────────────────────── */
.trust-strip {
  background: var(--navy);
  padding-block: 2.5rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem 2rem;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}

.trust-icon-wrap {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(201,168,76,.1);
  border-radius: 50%;
}

.trust-item strong {
  display: block;
  font-size: .9rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: .2rem;
}
.trust-item span {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
}

/* ── SERVICES ─────────────────────────────────────────── */
.services-section { background: var(--cream); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card--wide {
  grid-column: 1 / -1;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dk);
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .card-img-wrap img { transform: scale(1.04); }

.service-card--wide .card-img-wrap {
  aspect-ratio: 16/7;
}

.card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.card-icon {
  width: 46px;
  height: 46px;
  background: rgba(201,168,76,.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.card-body h3 {
  font-size: 1.2rem;
  margin-bottom: .6rem;
  color: var(--navy);
}
.card-body p {
  font-size: .9rem;
  color: var(--text-md);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.25rem;
}

.card-ctas {
  display: flex;
  gap: .6rem;
  margin-top: auto;
}

.card-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .35rem;
  padding: .6rem .8rem;
  border-radius: 8px;
  font-size: .82rem;
  font-weight: 600;
  transition: transform var(--transition), background var(--transition);
}
.card-btn:hover { transform: translateY(-1px); }

.card-btn-call {
  background: rgba(201,168,76,.12);
  color: var(--gold-dark);
  border: 1px solid rgba(201,168,76,.3);
}
.card-btn-call:hover { background: rgba(201,168,76,.22); }

.card-btn-wa {
  background: rgba(37,211,102,.1);
  color: var(--wa-dark);
  border: 1px solid rgba(37,211,102,.25);
}
.card-btn-wa:hover { background: rgba(37,211,102,.2); }

/* ── WHY SECTION ──────────────────────────────────────── */
.why-section { background: var(--white); }

.why-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.why-photo {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 480px;
  margin-inline: auto;
}
.why-photo img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
}
.why-photo::before {
  content: '';
  position: absolute;
  inset: -6px;
  border: 2px solid var(--gold);
  border-radius: calc(var(--radius-lg) + 6px);
  opacity: .35;
  pointer-events: none;
}

.why-photo-tag {
  position: absolute;
  bottom: 1.5rem;
  left: -1rem;
  background: var(--gold);
  color: var(--navy);
  padding: .85rem 1.2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  text-align: center;
  max-width: 160px;
}
.why-photo-tag strong {
  display: block;
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  font-weight: 700;
}
.why-photo-tag span {
  font-size: .75rem;
  font-weight: 700;
}

.why-copy h2 { margin-top: .5rem; margin-bottom: 1rem; }
.why-intro {
  color: var(--text-md);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.25rem;
}
.why-list li {
  display: flex;
  align-items: flex-start;
  gap: .85rem;
}
.why-check {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  background: rgba(201,168,76,.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  margin-top: .1rem;
}
.why-list li strong {
  display: block;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: .25rem;
}
.why-list li p {
  font-size: .875rem;
  color: var(--text-md);
  line-height: 1.6;
}

.why-ctas { display: flex; flex-wrap: wrap; gap: .75rem; }

/* ── HOW IT WORKS ─────────────────────────────────────── */
.how-section { background: var(--cream); }

.steps-grid {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.step {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  text-align: center;
  max-width: 320px;
  width: 100%;
  box-shadow: var(--shadow-sm);
}

.step-num {
  font-family: 'Amiri', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: rgba(201,168,76,.2);
  line-height: 1;
  margin-bottom: .5rem;
}

.step-icon {
  margin: .5rem auto 1rem;
  width: 64px;
  height: 64px;
  background: rgba(201,168,76,.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step h3 {
  font-size: 1.15rem;
  margin-bottom: .75rem;
}
.step p {
  font-size: .875rem;
  color: var(--text-md);
  line-height: 1.7;
}

.step-link {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: 1.25rem;
  padding: .6rem 1.2rem;
  background: var(--wa);
  color: #fff;
  border-radius: 50px;
  font-size: .82rem;
  font-weight: 600;
  transition: background var(--transition), transform var(--transition);
}
.step-link:hover { background: var(--wa-dark); transform: translateY(-1px); }

.step-arrow {
  color: var(--gold);
  opacity: .5;
  transform: rotate(90deg); /* mobile: points down */
}

/* ── TESTIMONIALS ─────────────────────────────────────── */
.testimonials-section { background: var(--navy); }
.testimonials-section .eyebrow { color: var(--gold-lt); }
.testimonials-section .eyebrow::before { background: var(--gold-lt); }
.testimonials-section h2 { color: #fff; }

.testimonials-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.testimonials-photo {
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-width: 420px;
  margin-inline: auto;
  box-shadow: var(--shadow-lg);
}
.testimonials-photo img {
  width: 100%;
  height: auto;
  display: block;
}

.testimonials-copy h2 { margin-top: .5rem; margin-bottom: 2rem; }

.testimonials-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius);
  padding: 1.5rem;
  position: relative;
}
.testimonial::before {
  content: '\201D';
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  font-family: 'Amiri', serif;
  font-size: 4rem;
  line-height: 1;
  color: rgba(201,168,76,.25);
  pointer-events: none;
}

.testimonial-stars {
  font-size: .9rem;
  color: var(--gold);
  letter-spacing: .1em;
  margin-bottom: .75rem;
}
.testimonial p {
  font-size: .9rem;
  color: rgba(255,255,255,.82);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 1rem;
}
.testimonial footer {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.testimonial footer strong {
  font-size: .88rem;
  font-weight: 600;
  color: #fff;
}
.testimonial footer span {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
}

/* ── FAQ ──────────────────────────────────────────────── */
.faq-section { background: var(--cream); }

.faq-list {
  max-width: 780px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.faq-item.open { border-color: rgba(201,168,76,.3); }

.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  transition: color var(--transition);
}
.faq-q:hover { color: var(--gold-dark); }
.faq-item.open .faq-q { color: var(--gold-dark); }

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-a { max-height: 300px; }

.faq-a p {
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem;
  color: var(--text-md);
  line-height: 1.75;
}

/* ── FINAL CTA ────────────────────────────────────────── */
.final-cta {
  background: var(--navy);
  padding-block: clamp(4rem, 8vw, 6rem);
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.12) 0%, transparent 70%);
  top: -150px;
  right: -150px;
  pointer-events: none;
}
.final-cta::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,168,76,.08) 0%, transparent 70%);
  bottom: -100px;
  left: -100px;
  pointer-events: none;
}

.final-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.final-cta-eyebrow {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.final-cta-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  vertical-align: middle;
  margin-inline-end: 8px;
  border-radius: 2px;
}

.final-cta h2 {
  color: #fff;
  font-size: clamp(2rem, 5vw, 3.2rem);
  margin-bottom: 1rem;
  font-style: italic;
}
.final-cta p {
  color: rgba(255,255,255,.75);
  font-size: 1.05rem;
  max-width: 520px;
  margin-inline: auto;
  margin-bottom: 2.5rem;
  line-height: 1.75;
}

.final-cta-btns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}

/* ── FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: #0F1219;
  padding-block: clamp(3rem, 6vw, 5rem) 2rem;
}

/* Row 1 — Brand strip */
.footer-row--brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2.5rem;
}
.footer-row--brand p {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
  max-width: 480px;
  margin: .75rem 0 1.25rem;
}
.footer-row--brand .footer-contacts {
  flex-direction: row;
  gap: 1.5rem;
  justify-content: center;
}

/* Row 2 — Services + Areas side by side */
.footer-row--links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 3rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
  margin-bottom: 2rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin-bottom: 1rem;
}
.footer-logo span {
  font-family: 'Amiri', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
}


.footer-contacts {
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.footer-contacts a {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .875rem;
  font-weight: 500;
  color: rgba(255,255,255,.7);
  transition: color var(--transition);
}
.footer-contacts a:hover { color: var(--gold); }

.footer-col {
  text-align: center;
}
.footer-col h4 {
  font-family: 'Tajawal', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--gold);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: .5rem; align-items: center; }
.footer-col li {
  font-size: .85rem;
  color: rgba(255,255,255,.5);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
}
.footer-bottom p {
  font-size: .78rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ── MOBILE BAR ───────────────────────────────────────── */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 800;
  height: 66px;
  background: var(--white);
  box-shadow: 0 -4px 20px rgba(26,31,46,.15);
  border-top: 1px solid var(--border);
}

.mobile-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .01em;
  transition: opacity var(--transition);
  height: 100%;
}
.mobile-bar-btn:active { opacity: .85; }

.mobile-bar-call {
  background: var(--gold);
  color: var(--navy);
}
.mobile-bar-wa {
  background: var(--wa);
  color: #fff;
}

/* ── FADE-IN ANIMATIONS ───────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children inside a parent */
.services-grid .fade-in:nth-child(2) { transition-delay: .1s; }
.services-grid .fade-in:nth-child(3) { transition-delay: .2s; }
.services-grid .fade-in:nth-child(4) { transition-delay: .3s; }
.services-grid .fade-in:nth-child(5) { transition-delay: .15s; }

.why-list { opacity: 1; transform: none; }
.testimonials-list .fade-in:nth-child(2) { transition-delay: .12s; }
.testimonials-list .fade-in:nth-child(3) { transition-delay: .24s; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════ */

/* ── SM: 480px ─ */
@media (min-width: 480px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .header-phone span { display: inline; }
}

/* ── MD: 640px ─ */
@media (min-width: 640px) {
  body { padding-top: 72px; }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--wide {
    grid-column: 1 / -1;
  }

  .steps-grid {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: .5rem 1rem;
    align-items: center;
  }
  .step { max-width: 260px; }
  .step-arrow { transform: none; }
}

/* ── LG: 768px ─ show mobile bar only below this ─ */
@media (max-width: 767px) {
  .mobile-bar { display: flex; }
  body { padding-bottom: 66px; }
}

/* ── LG: 900px ─ */
@media (min-width: 900px) {
  .trust-grid { grid-template-columns: repeat(4, 1fr); }

  .services-grid { grid-template-columns: repeat(3, 1fr); }
  .service-card--wide { grid-column: auto; }

  .why-inner {
    grid-template-columns: 420px 1fr;
    gap: 4rem;
    align-items: start;
  }
  .why-photo { max-width: none; margin-inline: 0; }

  .testimonials-inner {
    grid-template-columns: 380px 1fr;
    gap: 4rem;
  }
  .testimonials-photo { max-width: none; margin-inline: 0; }

  .steps-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    align-items: start;
    gap: 0 1rem;
  }
  .step { max-width: none; }
  .step-arrow { padding-top: 3rem; transform: none; } /* desktop: already points left (RTL arrow SVG) */
}

/* ── XL: 1100px ─ */
@media (min-width: 1100px) {
  .why-inner { grid-template-columns: 480px 1fr; }
  .testimonials-inner { grid-template-columns: 420px 1fr; }
}
