/* ============================================================
   HADIJAH HOME SERVICES — Landing Page Stylesheet
   Aesthetic: Luxury Emerald & Gold · Arabic-Geometric accents
   ============================================================ */

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

:root {
  --c-emerald:   #14523D;
  --c-emerald-d: #0D3829;
  --c-emerald-l: #1E6E53;
  --c-gold:      #C49A3C;
  --c-gold-l:    #DDB85C;
  --c-gold-pale: #F5ECD7;
  --c-cream:     #FBF7F0;
  --c-ink:       #1A1A1A;
  --c-ink-2:     #3D3D3D;
  --c-ink-3:     #6B6B6B;
  --c-border:    #E8DFD0;
  --c-white:     #FFFFFF;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-body:    'Jost', 'Helvetica Neue', sans-serif;

  --r-sm:  .5rem;
  --r-md:  1rem;
  --r-lg:  1.5rem;
  --r-xl:  2rem;
  --r-full: 999px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,.10);
  --shadow-lg: 0 20px 60px rgba(0,0,0,.14);

  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--ff-body);
  background: var(--c-cream);
  color: var(--c-ink);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

/* ── SCROLLBAR ──────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--c-cream); }
::-webkit-scrollbar-thumb { background: var(--c-gold); border-radius: 3px; }

/* ── BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--ff-body);
  font-weight: 600;
  letter-spacing: .04em;
  border-radius: var(--r-full);
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform .22s var(--ease-out), box-shadow .22s var(--ease-out), background .2s, color .2s;
  position: relative;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--c-emerald);
  color: var(--c-white);
  border-color: var(--c-emerald);
}
.btn--primary:hover {
  background: var(--c-emerald-l);
  box-shadow: 0 10px 40px rgba(20,82,61,.35);
}

.btn--ghost {
  background: transparent;
  color: var(--c-white);
  border-color: rgba(255,255,255,.5);
}
.btn--ghost:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--c-white);
}

.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-l);
  box-shadow: 0 10px 40px rgba(196,154,60,.4);
}

.btn--sm  { font-size: .8rem;  padding: .45rem 1.1rem; }
.btn--md  { font-size: .875rem; padding: .65rem 1.4rem; }
.btn--lg  { font-size: .95rem; padding: .85rem 2rem; }
.btn--xl  { font-size: 1.1rem; padding: 1.1rem 2.6rem; }

/* ── TOP BAR ────────────────────────────────────────────── */
.top-bar {
  background: var(--c-emerald-d);
  color: rgba(255,255,255,.85);
  font-size: .78rem;
  font-family: var(--ff-body);
  font-weight: 500;
  letter-spacing: .05em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: .55rem 1.5rem;
  position: relative;
  z-index: 100;
}

.top-bar__cta {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: var(--c-gold);
  color: var(--c-white);
  font-weight: 700;
  font-size: .8rem;
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  transition: background .2s;
}
.top-bar__cta:hover { background: var(--c-gold-l); }

/* ── NAV ────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(251,247,240,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: box-shadow .3s;
}
.nav.scrolled { box-shadow: var(--shadow-md); }

.nav__inner {
  max-width: 1200px;
  margin: auto;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.nav__logo-mark {
  width: 40px;
  height: 40px;
  background: var(--c-emerald);
  color: var(--c-gold);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
}

.nav__logo-text {
  display: flex;
  flex-direction: column;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--c-emerald);
  line-height: 1.1;
}
.nav__logo-text em {
  font-style: italic;
  font-weight: 400;
  font-size: .75rem;
  color: var(--c-ink-3);
  letter-spacing: .04em;
}

.nav__links {
  display: flex;
  align-items: center;
  gap: .25rem;
  list-style: none;
}

.nav__links a {
  font-size: .85rem;
  font-weight: 500;
  color: var(--c-ink-2);
  padding: .4rem .75rem;
  border-radius: var(--r-full);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--c-emerald); background: rgba(20,82,61,.06); }

.nav__call-btn {
  background: var(--c-emerald) !important;
  color: var(--c-white) !important;
  display: flex !important;
  align-items: center;
  gap: .35rem;
  font-weight: 600 !important;
}
.nav__call-btn:hover { background: var(--c-emerald-l) !important; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: .25rem;
}
.nav__hamburger span {
  width: 24px;
  height: 2px;
  background: var(--c-emerald);
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}

/* ── HERO ───────────────────────────────────────────────── */
.hero {
  background: var(--c-emerald-d);
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 2rem 5rem;
}

/* Geometric decorative shapes */
.hero__geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.geo-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(196,154,60,.18) 0%, transparent 70%);
  top: -150px; right: -150px;
}
.geo-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(30,110,83,.4) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}
.geo-3 {
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(196,154,60,.12) 0%, transparent 70%);
  top: 40%; left: 30%;
}

/* Geometric pattern overlay */
.hero__pattern {
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(
      45deg,
      transparent,
      transparent 30px,
      rgba(196,154,60,.04) 30px,
      rgba(196,154,60,.04) 31px
    ),
    repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 30px,
      rgba(196,154,60,.04) 30px,
      rgba(196,154,60,.04) 31px
    );
  pointer-events: none;
}

.hero__inner {
  max-width: 780px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(196,154,60,.15);
  border: 1px solid rgba(196,154,60,.3);
  color: var(--c-gold-l);
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.75rem;
  animation: fadeDown .7s var(--ease-out) both;
}

.badge-dot {
  width: 7px; height: 7px;
  background: var(--c-gold);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

.hero__headline {
  font-family: var(--ff-display);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  animation: fadeDown .8s .1s var(--ease-out) both;
}

.hero__headline-line { display: block; }

.hero__headline-em {
  font-style: italic;
  color: var(--c-gold-l);
  display: block;
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
  animation: fadeDown .8s .2s var(--ease-out) both;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3.5rem;
  animation: fadeDown .8s .3s var(--ease-out) both;
}

.hero__call-btn { position: relative; overflow: hidden; }

.btn__ring {
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  border: 2px solid var(--c-gold);
  animation: ringPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}

.hero__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  animation: fadeDown .8s .4s var(--ease-out) both;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.25rem 2rem;
  backdrop-filter: blur(8px);
}

.trust-item {
  text-align: center;
  padding: 0 2rem;
}
.trust-item strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--c-gold-l);
  line-height: 1;
}
.trust-item span {
  font-size: .72rem;
  font-weight: 500;
  color: rgba(255,255,255,.55);
  text-transform: uppercase;
  letter-spacing: .06em;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,.15);
  flex-shrink: 0;
}

.hero__scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  color: rgba(255,255,255,.35);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,.35), transparent);
  animation: scrollDrop 1.8s ease-in-out infinite;
}

/* ── SECTION HELPERS ────────────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
}

.section-tag {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: .75rem;
  background: rgba(196,154,60,.1);
  padding: .3rem .9rem;
  border-radius: var(--r-full);
  border: 1px solid rgba(196,154,60,.25);
}
.section-tag--light { color: var(--c-gold-l); background: rgba(196,154,60,.15); border-color: rgba(196,154,60,.3); }

.section-title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  color: var(--c-ink);
  line-height: 1.1;
  margin-bottom: .9rem;
}
.section-title--light { color: var(--c-white); }
.section-title em { font-style: italic; color: var(--c-gold); }

.section-sub {
  font-size: .95rem;
  color: var(--c-ink-3);
  line-height: 1.75;
}
.section-sub--light { color: rgba(255,255,255,.65); }

/* ── SERVICES ───────────────────────────────────────────── */
.services {
  padding: 7rem 2rem;
  background: var(--c-cream);
}

.services__grid {
  max-width: 1100px;
  margin: 0 auto 3.5rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  transition: transform .3s var(--ease-out), box-shadow .3s var(--ease-out), border-color .3s;
  animation: fadeUp .6s var(--delay, 0s) var(--ease-out) both;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold);
}

.service-card--wide {
  grid-column: 3 / -1;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.5rem;
}

.service-card__icon-wrap {
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, rgba(20,82,61,.08), rgba(196,154,60,.1));
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-emerald);
  flex-shrink: 0;
}
.service-card__icon-wrap svg { width: 28px; height: 28px; }

.service-card__title {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--c-ink);
}

.service-card__desc {
  font-size: .85rem;
  color: var(--c-ink-3);
  line-height: 1.7;
  flex: 1;
}

.service-card__link {
  font-size: .8rem;
  font-weight: 700;
  color: var(--c-emerald);
  letter-spacing: .04em;
  transition: color .2s;
}
.service-card__link:hover { color: var(--c-gold); }

.service-card__content { display: flex; flex-direction: column; gap: .85rem; }

.services__cta-block {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.services__cta-block p {
  color: var(--c-ink-3);
  font-size: .95rem;
}

/* ── WHY US ─────────────────────────────────────────────── */
.why-us {
  background: var(--c-emerald);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.why-us__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(196,154,60,.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,0,0,.2) 0%, transparent 50%);
  pointer-events: none;
}

.why-us__inner {
  max-width: 1100px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.why-us__left { display: flex; flex-direction: column; gap: 1.5rem; }

.why-us__right { display: flex; flex-direction: column; gap: 1.75rem; }

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  padding: 1.25rem 1.5rem;
  transition: background .3s, border-color .3s, transform .3s var(--ease-out);
}
.feature-item:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(196,154,60,.4);
  transform: translateX(4px);
}

.feature-item__icon {
  width: 40px;
  height: 40px;
  background: rgba(196,154,60,.2);
  border-radius: .75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-gold-l);
  flex-shrink: 0;
}
.feature-item__icon svg { width: 20px; height: 20px; }

.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: .3rem;
}
.feature-item p {
  font-size: .83rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}

/* ── ORIGINS ────────────────────────────────────────────── */
.origins {
  padding: 7rem 2rem;
  background: var(--c-white);
}

.origins__flags {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  justify-content: center;
  max-width: 900px;
  margin: 0 auto 2.5rem;
}

.flag-card {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--c-emerald);
  letter-spacing: .03em;
  background: var(--c-cream);
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-full);
  padding: .65rem 1.75rem;
  transition: transform .3s var(--ease-out), background .2s, border-color .2s, box-shadow .2s;
}
.flag-card:hover {
  transform: translateY(-3px);
  background: var(--c-white);
  border-color: var(--c-gold);
  box-shadow: 0 6px 20px rgba(196,154,60,.15);
}

.origins__qualities {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  justify-content: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.quality-pill {
  background: rgba(20,82,61,.07);
  color: var(--c-emerald);
  border: 1px solid rgba(20,82,61,.2);
  font-size: .78rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  letter-spacing: .04em;
}

.origins__cta { text-align: center; }

/* ── TESTIMONIALS ───────────────────────────────────────── */
.testimonials {
  background: var(--c-emerald-d);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

.testimonials__bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 10% 90%, rgba(196,154,60,.1) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 10%, rgba(20,82,61,.5) 0%, transparent 50%);
  pointer-events: none;
}

.testimonials .section-header { position: relative; z-index: 1; }

.testimonials__track {
  max-width: 1100px;
  margin: 0 auto 2.5rem;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.testimonials__slider {
  display: flex;
  gap: 1.5rem;
  will-change: transform;
}

.tcard {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r-xl);
  padding: 2rem;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  backdrop-filter: blur(8px);
  transition: background .3s, border-color .3s;
  box-sizing: border-box;
}
.tcard:hover { background: rgba(255,255,255,.11); border-color: rgba(196,154,60,.35); }

.tcard__stars { color: var(--c-gold); font-size: 1rem; letter-spacing: .1em; }

.tcard__quote {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  line-height: 1.7;
  flex: 1;
}

.tcard__author {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.tcard__avatar {
  width: 40px; height: 40px;
  background: var(--c-emerald-l);
  border: 2px solid rgba(196,154,60,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 700;
  color: var(--c-gold-l);
  flex-shrink: 0;
}

.tcard__author strong {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--c-white);
}
.tcard__author span {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
}

.testimonials__controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.t-btn {
  width: 44px; height: 44px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  color: var(--c-white);
  font-size: 1rem;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.t-btn:hover { background: rgba(196,154,60,.3); border-color: var(--c-gold); }

.t-dots { display: flex; gap: .5rem; }

.t-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.25);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.t-dot.active { background: var(--c-gold); transform: scale(1.3); }

/* ── FAQ ────────────────────────────────────────────────── */
.faq {
  padding: 7rem 2rem;
  background: var(--c-cream);
}

.faq__list {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  display: flex;
  flex-direction: column;
  gap: .75rem;
}

.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: border-color .3s, box-shadow .3s;
}
.faq-item[open] {
  border-color: var(--c-gold);
  box-shadow: 0 4px 20px rgba(196,154,60,.12);
}

.faq-item__q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.25rem 1.5rem;
  font-family: var(--ff-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--c-ink);
  cursor: pointer;
  list-style: none;
  gap: 1rem;
  user-select: none;
}
.faq-item__q::-webkit-details-marker { display: none; }
.faq-item__q:hover { background: rgba(20,82,61,.03); }

.faq-item__icon {
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--c-gold);
  flex-shrink: 0;
  transition: transform .3s var(--ease-out);
  line-height: 1;
}
.faq-item[open] .faq-item__icon { transform: rotate(45deg); }

.faq-item__a {
  padding: 0 1.5rem 1.25rem;
  font-size: .88rem;
  color: var(--c-ink-3);
  line-height: 1.75;
  border-top: 1px solid var(--c-border);
  padding-top: 1rem;
}

.faq__cta {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.faq__cta p { color: var(--c-ink-3); font-size: .95rem; }

/* ── CTA BANNER ─────────────────────────────────────────── */
.cta-banner {
  background: var(--c-emerald);
  padding: 6rem 2rem;
  position: relative;
  overflow: hidden;
}

.cta-banner__geo {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.cta-geo-1 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(196,154,60,.2) 0%, transparent 70%);
  top: -200px; right: -100px;
}
.cta-geo-2 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(0,0,0,.3) 0%, transparent 70%);
  bottom: -100px; left: -80px;
}

.cta-banner__inner {
  max-width: 700px;
  margin: auto;
  text-align: center;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.cta-banner__title {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 600;
  color: var(--c-white);
  line-height: 1.1;
}

.cta-banner__sub {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  max-width: 520px;
  line-height: 1.75;
}

.cta-banner__btn {
  font-size: 1.1rem !important;
  box-shadow: 0 8px 40px rgba(196,154,60,.5) !important;
}

.cta-banner__note {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  letter-spacing: .05em;
}

/* ── FOOTER ─────────────────────────────────────────────── */
.footer {
  background: var(--c-emerald-d);
  padding: 2.5rem 2rem 0;
}

.footer__inner {
  max-width: 1100px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  color: var(--c-white);
}
.footer__brand .nav__logo-mark { width: 36px; height: 36px; font-size: 1.3rem; }
.footer__brand strong { display: block; font-size: .95rem; }
.footer__brand span { font-size: .75rem; color: rgba(255,255,255,.45); }

.footer__links {
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.footer__links a {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer__links a:hover { color: var(--c-gold-l); }

.footer__phone {
  font-size: .95rem;
  font-weight: 700;
  color: var(--c-gold-l);
  transition: color .2s;
}
.footer__phone:hover { color: var(--c-white); }

.footer__bottom {
  max-width: 1100px;
  margin: auto;
  padding: 1.25rem 0;
  text-align: center;
  font-size: .73rem;
  color: rgba(255,255,255,.3);
}

/* ── FLOATING BUTTONS ───────────────────────────────────── */
.float-buttons {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  align-items: flex-end;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .4s, transform .4s;
}
.float-buttons.visible {
  opacity: 1;
  transform: translateY(0);
}

.float-call,
.float-whatsapp {
  border-radius: var(--r-full);
  display: flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.5rem .85rem 1.2rem;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none;
  color: var(--c-white);
  position: relative;
  transition: transform .3s var(--ease-out), box-shadow .3s;
  white-space: nowrap;
}
.float-call:hover,
.float-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
}

.float-call {
  background: var(--c-gold);
  box-shadow: 0 8px 32px rgba(196,154,60,.5);
}
.float-call:hover { box-shadow: 0 14px 44px rgba(196,154,60,.6); }

.float-whatsapp {
  background: #25D366;
  box-shadow: 0 8px 32px rgba(37,211,102,.4);
}
.float-whatsapp:hover { box-shadow: 0 14px 44px rgba(37,211,102,.55); }

.float-call__pulse {
  position: absolute;
  inset: -4px;
  border-radius: inherit;
  border: 2px solid var(--c-gold);
  animation: ringPulse 2.5s ease-in-out infinite;
  pointer-events: none;
}
.float-whatsapp__pulse {
  border-color: #25D366;
  animation-delay: 1.25s;
}

.float-call__label { white-space: nowrap; }

@media (max-width: 768px) {
  .float-call__label { display: none; }
  .float-call,
  .float-whatsapp { padding: 1rem; border-radius: 50%; }
}

/* ── ANIMATIONS ─────────────────────────────────────────── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-16px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.4); opacity: .7; }
}

@keyframes ringPulse {
  0%   { transform: scale(1);    opacity: .8; }
  70%  { transform: scale(1.25); opacity: 0;  }
  100% { transform: scale(1.25); opacity: 0;  }
}

@keyframes scrollDrop {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ── REVEAL ON SCROLL ───────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .service-card--wide {
    grid-column: 1 / -1;
  }
  .why-us__inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .top-bar__text { display: none; }

  .nav__hamburger { display: flex; }
  .nav__links {
    position: fixed;
    inset: 0 0 0 30%;
    background: var(--c-cream);
    border-left: 1px solid var(--c-border);
    flex-direction: column;
    align-items: flex-start;
    padding: 5rem 2rem 2rem;
    gap: .5rem;
    transform: translateX(100%);
    transition: transform .35s var(--ease-out);
    z-index: 95;
    box-shadow: -10px 0 40px rgba(0,0,0,.12);
  }
  .nav__links.open { transform: translateX(0); }
  .nav__links a { font-size: 1rem; padding: .65rem .75rem; width: 100%; }
  .nav__call-btn { margin-top: .5rem; justify-content: center; }

  .hero { padding: 6rem 1.5rem 4rem; min-height: auto; }
  .hero__trust { gap: 0; padding: 1rem; }
  .trust-item { padding: 0 1rem; }
  .trust-item strong { font-size: 1.4rem; }

  .services { padding: 5rem 1.25rem; }
  .services__grid { grid-template-columns: 1fr; }
  .service-card--wide { flex-direction: column; }

  .why-us { padding: 5rem 1.25rem; }
  .why-us__inner { gap: 2.5rem; }

  .origins { padding: 5rem 1.25rem; }
  .origins__flags { gap: 1rem; }
  .flag-card__flag { width: 64px; height: 44px; }

  .testimonials { padding: 5rem 1.25rem; }

  .faq { padding: 5rem 1.25rem; }
  .cta-banner { padding: 4rem 1.25rem; }

  .footer__inner { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
  .footer__links { display: grid; grid-template-columns: repeat(3, auto); }

  .float-call__label { display: none; }
  .float-call { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; align-items: stretch; }
  .btn--lg { justify-content: center; }
  .trust-item { padding: 0 .6rem; }
  .trust-divider { display: none; }
  .hero__trust { gap: .75rem; background: none; border: none; backdrop-filter: none; }
}
