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

:root {
  /* Concept 2 + 1 Color System */
  --sand:       #F4EFE7;       /* warm off-white background */
  --sand-dark:  #EDE6DB;       /* slightly darker sand for cards */
  --sage:       #A8B8A0;       /* soft sage green */
  --sage-dark:  #7A9472;       /* deeper sage for hover */
  --navy:       #14213D;       /* concept 1 authority navy */
  --navy-mid:   #1E3258;       /* lighter navy */
  --slate:      #6B7A8F;       /* muted slate blue */
  --gold:       #C6A969;       /* concept 1 gold accent */
  --gold-light: #D4BC84;
  --charcoal:   #2D2D2D;       /* near black text */
  --white:      #FFFFFF;
  --light-gray: #F8F8F6;
  --border:     #E2D9CE;

  /* Typography */
  --font-heading: 'Rubik', 'Heebo', sans-serif;
  --font-body:    'Assistant', 'Heebo', sans-serif;

  /* Spacing */
  --section-pad: 80px 0;
  --radius:       16px;
  --radius-sm:    10px;
  --shadow:       0 4px 24px rgba(20,33,61,0.08);
  --shadow-lg:    0 12px 40px rgba(20,33,61,0.14);
  --transition:   all 0.3s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background-color: var(--sand);
  color: var(--charcoal);
  direction: rtl;
  text-align: right;
  line-height: 1.7;
  font-size: 16px;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.3;
  color: var(--navy);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--sand); }
::-webkit-scrollbar-thumb { background: var(--sage); border-radius: 3px; }

/* ===== UTILITY ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--sage-dark);
  background: rgba(168,184,160,0.15);
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
  text-transform: uppercase;
}
.section-title {
  font-size: clamp(26px, 4vw, 38px);
  color: var(--navy);
  margin-bottom: 16px;
}
.section-subtitle {
  font-size: 17px;
  color: var(--slate);
  max-width: 600px;
  margin: 0 auto 48px;
  line-height: 1.8;
}
.divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(to left, var(--gold), var(--sage));
  border-radius: 2px;
  margin: 16px auto;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(20,33,61,0.25);
}
.btn-primary:hover {
  background: var(--navy-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(20,33,61,0.3);
}
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-secondary:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(198,169,105,0.3);
}
.btn-gold:hover {
  background: #b8975a;
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow);
}
.btn-white:hover {
  background: var(--sand);
  transform: translateY(-2px);
}
.btn-lg { padding: 17px 38px; font-size: 17px; }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 20px 0;
}
#navbar.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(20,33,61,0.08);
  padding: 12px 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo-icon {
  width: 38px;
  height: 38px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-logo-text {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 17px;
  color: var(--navy);
  line-height: 1.2;
}
.nav-logo-sub {
  font-size: 11px;
  color: var(--slate);
  font-weight: 400;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover {
  color: var(--navy);
  background: rgba(20,33,61,0.06);
}
.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  border-radius: 50px !important;
  padding: 10px 22px !important;
}
.nav-cta:hover {
  background: var(--navy-mid) !important;
  transform: translateY(-1px);
}
.active-nav {
  color: var(--navy) !important;
  background: rgba(20,33,61,0.07) !important;
  font-weight: 600;
}
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== HERO ===== */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, var(--navy) 0%, #1a3060 50%, #0f1e35 100%);
  padding: 120px 0 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.12;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(20,33,61,0.95) 0%, rgba(20,33,61,0.82) 55%, rgba(20,33,61,0.7) 100%);
  z-index: 1;
}
/* decorative circles */
.hero-circle {
  position: absolute;
  border-radius: 50%;
  z-index: 1;
  opacity: 0.06;
}
.hero-circle-1 {
  width: 500px; height: 500px;
  background: var(--sage);
  top: -100px; left: -150px;
}
.hero-circle-2 {
  width: 350px; height: 350px;
  background: var(--gold);
  bottom: -100px; right: -80px;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(168,184,160,0.2);
  border: 1px solid rgba(168,184,160,0.35);
  color: var(--sage);
  padding: 7px 18px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(30px, 5vw, 52px);
  color: var(--white);
  line-height: 1.2;
  margin-bottom: 20px;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.78);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 44px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,0.1);
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-size: 14px;
}
.trust-icon { color: var(--sage); font-size: 16px; }

/* Hero Form Card */
.hero-form-card {
  background: var(--white);
  border-radius: 24px;
  padding: 36px 32px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.hero-form-card::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 100%; height: 4px;
  background: linear-gradient(to left, var(--gold), var(--sage));
  border-radius: 24px 24px 0 0;
}
.hero-form-title {
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 6px;
}
.hero-form-subtitle {
  font-size: 14px;
  color: var(--slate);
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--charcoal);
  background: var(--sand);
  transition: var(--transition);
  direction: rtl;
  text-align: right;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--sage);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(168,184,160,0.2);
}
.form-group textarea { resize: vertical; min-height: 90px; }
.form-privacy {
  font-size: 12px;
  color: var(--slate);
  text-align: center;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

/* ===== STATS BAR ===== */
#stats {
  background: var(--navy);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.stat-item { padding: 12px; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}
.stat-plus { color: var(--sage); }
.stat-icon-only { font-size: 36px; line-height: 1.1; }
.stat-label {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  margin-top: 6px;
}
.stats-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: 0;
}

/* ===== WHY MEDIATION ===== */
#why-mediation {
  padding: var(--section-pad);
  background: var(--white);
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.benefit-card {
  background: var(--sand);
  border-radius: var(--radius);
  padding: 32px 26px;
  transition: var(--transition);
  border: 1.5px solid var(--border);
  position: relative;
  overflow: hidden;
}
.benefit-card::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 80px; height: 80px;
  background: var(--sage);
  opacity: 0.07;
  border-radius: 50%;
  transform: translate(20px, 20px);
  transition: var(--transition);
}
.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: var(--sage);
}
.benefit-card:hover::after { transform: translate(10px, 10px); opacity: 0.12; }
.benefit-icon {
  width: 56px; height: 56px;
  background: var(--navy);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.benefit-title {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 10px;
}
.benefit-text {
  font-size: 15px;
  color: var(--slate);
  line-height: 1.7;
}

/* ===== ABOUT ===== */
#about {
  padding: var(--section-pad);
  background: var(--sand);
}
.about-inner {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  position: relative;
}
.about-img-bg {
  position: absolute;
  width: 90%;
  height: 90%;
  background: linear-gradient(135deg, var(--sage) 0%, var(--navy) 100%);
  border-radius: var(--radius);
  top: 20px;
  right: 20px;
  z-index: 0;
  opacity: 0.18;
}
.about-img {
  width: 100%;
  border-radius: var(--radius);
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  max-height: 500px;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  left: 20px;
  z-index: 2;
  background: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.about-badge-icon {
  width: 44px; height: 44px;
  background: var(--navy);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.about-badge-text { font-size: 14px; color: var(--slate); line-height: 1.4; }
.about-badge-text strong { color: var(--navy); font-weight: 700; display: block; font-size: 16px; }
.about-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}
.credential-tag {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  border: 1.5px solid var(--border);
  color: var(--navy);
  padding: 7px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}
.credential-tag i { color: var(--gold); font-size: 12px; }
.about-points { margin: 24px 0; }
.about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}
.about-point-icon {
  width: 32px; height: 32px;
  background: rgba(168,184,160,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--sage-dark);
  font-size: 14px;
  flex-shrink: 0;
  margin-top: 2px;
}
.about-point-text { font-size: 15px; color: var(--charcoal); line-height: 1.6; }
.about-point-text strong { color: var(--navy); }

/* ===== PROCESS ===== */
#process {
  padding: var(--section-pad);
  background: var(--white);
}
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 40px;
  right: 16.5%;
  left: 16.5%;
  height: 2px;
  background: linear-gradient(to left, var(--border), var(--sage), var(--border));
}
.process-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.step-num {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--sage);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 1;
  transition: var(--transition);
}
.step-num-inner {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
}
.process-step:hover .step-num { border-color: var(--gold); transform: scale(1.05); }
.step-title { font-size: 19px; margin-bottom: 10px; }
.step-text { font-size: 15px; color: var(--slate); line-height: 1.7; }

/* ===== FOR WHOM ===== */
#for-whom {
  padding: var(--section-pad);
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
#for-whom::before {
  content: '';
  position: absolute;
  top: -200px; left: -100px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(168,184,160,0.08) 0%, transparent 70%);
  pointer-events: none;
}
#for-whom .section-label { background: rgba(168,184,160,0.15); color: var(--sage); }
#for-whom .section-title { color: var(--white); }
#for-whom .section-subtitle { color: rgba(255,255,255,0.6); }
.whom-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.whom-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.whom-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(168,184,160,0.4);
  transform: translateY(-4px);
}
.whom-icon { font-size: 32px; margin-bottom: 14px; }
.whom-title { font-size: 17px; color: var(--white); margin-bottom: 8px; }
.whom-text { font-size: 14px; color: rgba(255,255,255,0.55); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
#testimonials {
  padding: var(--section-pad);
  background: var(--sand);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1.5px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.testimonial-quote {
  font-size: 48px;
  color: var(--sage);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 12px;
  font-family: Georgia, serif;
}
.testimonial-text {
  font-size: 15px;
  color: var(--charcoal);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--sage), var(--navy));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 17px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; color: var(--navy); font-size: 15px; }
.testimonial-role { font-size: 13px; color: var(--slate); }
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 3px; }

/* ===== FAQ ===== */
#faq {
  padding: var(--section-pad);
  background: var(--white);
}
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item.open { border-color: var(--sage); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
  text-align: right;
  direction: rtl;
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { background: var(--sand); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--sand);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--slate);
  font-size: 14px;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon {
  background: var(--navy);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p { font-size: 15px; color: var(--slate); line-height: 1.8; }

/* ===== CTA BANNER ===== */
#cta-banner {
  position: relative;
  overflow: hidden;
  padding: 90px 0;
}
.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.cta-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(70%);
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,33,61,0.93) 0%, rgba(20,33,61,0.82) 100%);
  z-index: 1;
}
.cta-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}
.cta-title {
  font-size: clamp(28px, 4vw, 42px);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.75);
  max-width: 560px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-micro { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 16px; }

/* ===== CONTACT ===== */
#contact {
  padding: var(--section-pad);
  background: var(--sand);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 60px;
  align-items: start;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-icon-wrap {
  width: 50px; height: 50px;
  background: var(--navy);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-label { font-size: 13px; color: var(--slate); margin-bottom: 4px; }
.contact-info-value { font-size: 16px; font-weight: 600; color: var(--navy); }
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}
.contact-form-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-form-subtitle { font-size: 14px; color: var(--slate); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-submit-btn {
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}
.form-submit-btn:hover { background: var(--navy-mid); transform: translateY(-2px); }
.form-success {
  display: none;
  background: rgba(168,184,160,0.15);
  border: 1.5px solid var(--sage);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
  color: #4a6741;
  font-size: 15px;
  font-weight: 500;
}
.form-success.show { display: block; }

/* ===== FOOTER ===== */
footer {
  background: var(--navy);
  padding: 60px 0 30px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin-top: 14px;
}
.footer-logo-text { color: var(--white); font-size: 18px; font-weight: 700; font-family: var(--font-heading); }
.footer-logo-sub { color: rgba(255,255,255,0.45); font-size: 12px; }
.footer-col h4 { color: var(--white); font-size: 15px; margin-bottom: 16px; font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--sage); }
.footer-divider { border: none; border-top: 1px solid rgba(255,255,255,0.08); margin: 0 0 24px; }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.35); transition: var(--transition); }
.footer-links a:hover { color: var(--sage); }

/* ===== WHATSAPP FLOAT ===== */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  transition: var(--transition);
  cursor: pointer;
}
.wa-btn:hover { transform: scale(1.08); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }
.wa-tooltip {
  background: var(--white);
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  box-shadow: var(--shadow);
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.wa-float:hover .wa-tooltip { opacity: 1; }

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: flex;
  position: fixed;
  top: 0; right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: var(--white);
  z-index: 1100;
  padding: 80px 28px 28px;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  transition: right 0.35s ease;
  flex-direction: column;
}
.mobile-menu.open { right: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  z-index: 1099;
  opacity: 0;
  transition: opacity 0.3s;
}
.mobile-overlay.open { opacity: 1; }
.mobile-menu a {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  transition: var(--transition);
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--sage-dark); padding-right: 8px; }
.mobile-menu .btn { margin-top: 20px; width: 100%; justify-content: center; }
.close-menu {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--sand);
  border: none;
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--charcoal);
  font-size: 16px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-form-card { max-width: 560px; margin: 0 auto; }
  .about-inner { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrap { max-width: 420px; margin: 0 auto; }
  .contact-inner { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root { --section-pad: 60px 0; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .lang-toggle:not(.lang-toggle-mobile) { margin-right: 0; padding: 6px 12px; font-size: 12px; }
  .mobile-menu { display: flex; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: 1fr; gap: 40px; }
  .process-steps::before { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-btns { flex-direction: column; }
  .cta-btns { flex-direction: column; align-items: center; }
  .hero-trust { flex-direction: column; align-items: flex-start; gap: 12px; }
}

@media (max-width: 480px) {
  .about-badge { min-width: unset; left: 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-num { font-size: 32px; }
}
