/* ============================================================
   MARIAM HOME SERVICES — Stylesheet
   Palette: Deep Navy (#0A2540) · Warm Gold (#C9952A) · WhatsApp Green (#25D366)
   Fonts: Playfair Display (headings) · Inter (body)
   ============================================================ */

/* ── CUSTOM PROPERTIES ─────────────────────────────────── */
:root {
  --navy:        #0A2540;
  --navy-dark:   #071A2C;
  --navy-light:  #1B3E6B;
  --gold:        #C9952A;
  --gold-light:  #E0AF50;
  --gold-pale:   #FDF5E6;
  --wa-green:    #25D366;
  --wa-dark:     #128C7E;
  --cream:       #F8F8F4;
  --white:       #FFFFFF;
  --text-dark:   #1A1A2E;
  --text-mid:    #354060;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.07);
  --shadow-md:   0 6px 24px rgba(0, 0, 0, 0.11);
  --shadow-lg:   0 12px 48px rgba(0, 0, 0, 0.16);
  --radius:      12px;
  --radius-lg:   20px;
  --ease:        all 0.22s ease;
}

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

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

body {
  font-family: 'Cairo', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ── LAYOUT ────────────────────────────────────────────── */
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  font-family: 'Cairo', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  border: 2px solid transparent;
  text-decoration: none;
  transition: var(--ease);
  white-space: nowrap;
}

.btn--large {
  padding: 1rem 2rem;
  font-size: 1.05rem;
  border-radius: 10px;
}

.btn-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* Primary — navy */
.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover, .btn--primary:focus-visible {
  background: var(--navy-light);
  border-color: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* Gold */
.btn--gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn--gold:hover, .btn--gold:focus-visible {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* WhatsApp */
.btn--whatsapp {
  background: var(--wa-green);
  color: var(--white);
  border-color: var(--wa-green);
}
.btn--whatsapp:hover, .btn--whatsapp:focus-visible {
  background: var(--wa-dark);
  border-color: var(--wa-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ── FOCUS ─────────────────────────────────────────────── */
:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ============================================================
   HEADER
   ============================================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(7, 26, 44, 0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.9rem;
  padding-bottom: 0.9rem;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1;
}

.logo-text {
  font-family: 'Amiri', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  white-space: nowrap;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.header__nav a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.header__nav a:hover {
  color: var(--gold-light);
}

.header__cta {
  padding: 0.55rem 1.2rem;
  font-size: 0.9rem;
}

.header__menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
}

/* ── MOBILE NAV DRAWER ─────────────────────────────────── */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -300px;
  width: 280px;
  height: 100dvh;
  background: var(--navy-dark);
  z-index: 200;
  padding: 2rem 1.5rem 2.5rem;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-nav.is-open {
  right: 0;
}

.mobile-nav__close {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.4rem;
  cursor: pointer;
  align-self: flex-end;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
}
.mobile-nav__close:hover { color: var(--white); }

.mobile-nav nav {
  display: flex;
  flex-direction: column;
}

.mobile-nav__link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: color 0.2s;
}
.mobile-nav__link:hover { color: var(--gold-light); }

.mobile-nav__cta {
  margin-top: auto;
  width: 100%;
  font-size: 1rem;
}

.mobile-nav__overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  z-index: 150;
  backdrop-filter: blur(2px);
}
.mobile-nav__overlay.is-open { display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg,
      rgba(7, 26, 44, 0.93) 0%,
      rgba(10, 37, 64, 0.80) 55%,
      rgba(27, 62, 107, 0.82) 100%),
    url('https://images.unsplash.com/photo-1584820927498-cfe5211fd8bf?auto=format&fit=crop&w=1600&q=75')
    center / cover no-repeat;
  z-index: 0;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero__eyebrow {
  display: inline-block;
  background: rgba(201, 149, 42, 0.18);
  border: 1px solid rgba(201, 149, 42, 0.35);
  color: var(--gold-light);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.hero__headline {
  font-family: 'Amiri', Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.18;
  margin-bottom: 1.25rem;
}

.hero__sub {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.65;
  margin-bottom: 2.5rem;
  max-width: 560px;
}

.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.75rem;
}

.hero__phone {
  display: block;
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.03em;
  margin-bottom: 1.75rem;
  transition: color 0.2s;
}
.hero__phone:hover { color: var(--white); }

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
}

.hero__trust li {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
  font-weight: 500;
}

/* ============================================================
   SECTION BASE
   ============================================================ */
.section {
  padding: 5.5rem 0;
}

.section--alt {
  background: var(--cream);
}

.section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.section__header h2 {
  font-family: 'Amiri', Georgia, serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.75rem;
  line-height: 1.25;
}

.section__header p {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

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

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem 1.75rem;
  text-align: center;
  transition: var(--ease);
  box-shadow: var(--shadow-sm);
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-card__icon {
  width: 70px;
  height: 70px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  transition: var(--ease);
}
.service-card:hover .service-card__icon {
  background: var(--gold);
  color: var(--white);
}

.service-card h3 {
  font-family: 'Amiri', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.card-cta {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.88rem;
  transition: color 0.2s;
}
.card-cta:hover { color: var(--navy); }

/* ============================================================
   WHY CHOOSE US / TRUST SECTION
   ============================================================ */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: var(--ease);
}
.trust-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.trust-card__icon {
  width: 50px;
  height: 50px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-card h3 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.trust-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: var(--ease);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  font-family: 'Amiri', Georgia, serif;
  font-size: 4rem;
  line-height: 1;
  color: var(--gold-pale);
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.testimonial-card__stars {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.testimonial-card__text {
  font-size: 0.93rem;
  color: var(--text-mid);
  line-height: 1.75;
  flex: 1;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-card__avatar {
  width: 42px;
  height: 42px;
  background: var(--navy);
  color: var(--gold-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  letter-spacing: 0.03em;
}

.testimonial-card__author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0.1rem;
}

.testimonial-card__author span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   OUR MAIDS
   ============================================================ */
.maids-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.maids-intro {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.maids-features {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.maids-features li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.feature-check {
  width: 26px;
  height: 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.maids-features strong {
  display: block;
  color: var(--navy);
  font-weight: 700;
  margin-bottom: 0.2rem;
  font-size: 0.97rem;
}

.maids-features p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.maids-countries h3 {
  font-family: 'Amiri', Georgia, serif;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
}

.countries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.country-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem 0.75rem;
  text-align: center;
  transition: var(--ease);
}
.country-card:hover {
  background: var(--gold-pale);
  border-color: var(--gold);
  transform: translateY(-2px);
}

.country-flag {
  display: block;
  font-size: 2rem;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.country-name {
  font-size: 0.83rem;
  font-weight: 600;
  color: var(--navy);
}

.maids-cta {
  margin-top: 2rem;
}

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.step {
  flex: 1;
  min-width: 200px;
  max-width: 280px;
  text-align: center;
  padding: 2.25rem 1.5rem 1.75rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
}

.step__number {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  width: 34px;
  height: 34px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  box-shadow: 0 2px 8px rgba(201, 149, 42, 0.4);
}

.step__icon {
  width: 60px;
  height: 60px;
  background: var(--gold-pale);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0.5rem auto 1.25rem;
  color: var(--gold);
}

.step h3 {
  font-family: 'Amiri', Georgia, serif;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 0.65rem;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

.step__connector {
  color: var(--gold);
  flex-shrink: 0;
  opacity: 0.6;
  align-self: center;
}

.steps-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 4.5rem 0;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-banner__text h2 {
  font-family: 'Amiri', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: var(--white);
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.cta-banner__text p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.cta-banner__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-family: 'Cairo', sans-serif;
  font-size: 0.97rem;
  font-weight: 600;
  color: var(--navy);
  transition: background 0.2s, color 0.2s;
}
.faq-question:hover {
  background: var(--gold-pale);
}
.faq-question[aria-expanded="true"] {
  color: var(--gold);
  background: var(--gold-pale);
}

.faq-chevron {
  flex-shrink: 0;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-question[aria-expanded="true"] .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer p {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.72;
}

.faq-answer a {
  color: var(--gold);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.faq-answer a:hover { color: var(--navy); }

/* ============================================================
   FINAL CTA
   ============================================================ */
.final-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 6rem 0;
  text-align: center;
}

.final-cta__inner h2 {
  font-family: 'Amiri', Georgia, serif;
  font-size: clamp(1.75rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.final-cta__inner p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.final-cta__phone {
  display: block;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 800;
  color: var(--gold-light);
  letter-spacing: 0.02em;
  margin-bottom: 2.5rem;
  transition: color 0.2s;
}
.final-cta__phone:hover { color: var(--white); }

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

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.65);
  padding: 4rem 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__logo {
  font-family: 'Amiri', Georgia, serif;
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 0.65rem;
}

.footer__tagline {
  margin-bottom: 0.65rem;
}

.footer__col p {
  font-size: 0.88rem;
  margin-bottom: 0.5rem;
}

.footer h4 {
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
}

.footer ul li {
  font-size: 0.88rem;
  margin-bottom: 0.45rem;
}

.footer__col a {
  transition: color 0.2s;
}
.footer__col a:hover { color: var(--gold-light); }

.footer__bottom {
  padding: 1.25rem 0;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */

/* WhatsApp — always visible, bottom-right */
.float-wa {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  width: 62px;
  height: 62px;
  background: var(--wa-green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.8s ease-in-out infinite;
  transition: transform 0.2s ease, background 0.2s;
  text-decoration: none;
}
.float-wa:hover {
  background: var(--wa-dark);
  transform: scale(1.1);
  animation: none;
}

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

/* Call button — mobile only, bottom-left */
.float-call {
  display: none;
  position: fixed;
  bottom: 1.75rem;
  left: 1.75rem;
  width: 62px;
  height: 62px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  z-index: 90;
  box-shadow: 0 4px 16px rgba(201, 149, 42, 0.45);
  transition: var(--ease);
  text-decoration: none;
}
.float-call:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .maids-content {
    gap: 2.5rem;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

/* ============================================================
   RESPONSIVE — MOBILE (≤ 768px)
   ============================================================ */
@media (max-width: 768px) {
  /* Header */
  .header__nav   { display: none; }
  .header__menu-btn { display: flex; }
  .logo-text     { font-size: 0.95rem; }

  /* Hero */
  .hero {
    padding: 7rem 0 4.5rem;
    min-height: auto;
  }
  .hero__ctas {
    flex-direction: column;
  }
  .hero__ctas .btn {
    width: 100%;
  }

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

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

  /* Trust */
  .trust-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  /* Maids */
  .maids-content {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  /* Steps */
  .step__connector { display: none; }
  .steps {
    flex-direction: column;
    align-items: stretch;
  }
  .step {
    max-width: 100%;
  }

  /* CTA banner */
  .cta-banner__inner {
    flex-direction: column;
    text-align: center;
  }
  .cta-banner__actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-banner__actions .btn {
    width: 100%;
  }

  /* Final CTA */
  .final-cta__btns {
    flex-direction: column;
    align-items: center;
  }
  .final-cta__btns .btn {
    width: 100%;
    max-width: 320px;
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  /* Show mobile call float */
  .float-call { display: flex; }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 480px)
   ============================================================ */
@media (max-width: 480px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

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

  .countries-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero__headline {
    font-size: 2rem;
  }

  .section { padding: 4rem 0; }
}

/* ============================================================
   ARABIC RTL OVERRIDES
   ============================================================ */

/* Direction and base typography */
body {
  direction: rtl;
  line-height: 1.85;
}

/* Remove letter-spacing — it breaks Arabic letterforms */
.hero__eyebrow,
.footer h4 {
  letter-spacing: 0;
  text-transform: none;
}

/* Amiri heading sizes need a slight boost for Arabic display */
.hero__headline {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  line-height: 1.35;
}

/* LTR isolation for phone numbers */
.ltr {
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
}

/* Mobile nav: slides in from the right in RTL (right = home/start side) */
.mobile-nav {
  right: -300px;
  left: auto;
  border-left: 1px solid rgba(255, 255, 255, 0.07);
  border-right: none;
}
.mobile-nav.is-open {
  right: 0;
  left: auto;
}

/* Close button sits on the left edge of the right-side drawer */
.mobile-nav__close {
  align-self: flex-start;
}

/* Step numbers use Eastern Arabic numerals — increase size slightly */
.step__number {
  font-size: 1rem;
}

/* Testimonial decorative quote mark flips for RTL */
.testimonial-card::before {
  content: '\201D';
  right: auto;
  left: 1.5rem;
}

/* Trust card icon margin correction for RTL */
.trust-card__icon {
  margin-left: 0;
}
