* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --maroon: #6B1A22;
  --maroon-light: #8B2A34;
  --cream: #F4E8D0;
  --gold: #B8935A;
  --ink: #1A1613;
  --paper: #FAF7F0;
  --whatsapp: #25D366;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Tajawal', sans-serif;
  background: white;
  color: var(--ink);
  overflow-x: hidden;
}

html[lang="en"] body { font-family: 'Inter', sans-serif; }
html[lang="en"] .hero-content h1,
html[lang="en"] .services-header h2,
html[lang="en"] .final-cta h2,
html[lang="en"] .page-hero h1 { font-family: 'Inter', sans-serif; }
html[lang="en"] .trust h2,
html[lang="en"] .footer-brand { font-family: 'Cormorant Garamond', serif; }

/* ============ ANIMATIONS ============ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes typingDots {
  0%, 60%, 100% { opacity: 0.3; }
  30% { opacity: 1; }
}

.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============ NAV ============ */
nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 60px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
  transition: all 0.3s;
}
nav.scrolled {
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.nav-seal {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
  overflow: hidden;
}
.nav-seal:hover { transform: rotate(15deg); }
.nav-seal img, .nav-seal svg {
  width: 100%; height: 100%;
  border-radius: 50%;
}
.nav-name {
  font-family: 'Tajawal', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--maroon);
}
html[lang="en"] .nav-name { font-family: 'Cormorant Garamond', serif; font-size: 24px; }
.nav-right { display: flex; align-items: center; gap: 20px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a {
  text-decoration: none;
  color: var(--ink);
  font-size: 15px;
  font-weight: 400;
  opacity: 0.6;
  transition: all 0.3s;
  position: relative;
}
.nav-links a:hover { opacity: 1; color: var(--maroon); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  inset-inline-start: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

/* Language Toggle */
.lang-toggle {
  background: var(--paper);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 20px;
  padding: 6px;
  display: flex;
  gap: 2px;
  cursor: pointer;
}
.lang-btn {
  padding: 5px 14px;
  border-radius: 16px;
  border: none;
  background: transparent;
  font-size: 13px;
  font-weight: 600;
  color: var(--ink);
  opacity: 0.4;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', sans-serif;
}
.lang-btn.active {
  background: var(--maroon);
  color: white;
  opacity: 1;
}
.nav-cta {
  background: var(--maroon);
  color: white;
  padding: 10px 24px;
  border-radius: 24px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--maroon-light); transform: translateY(-1px); }
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--ink);
  margin: 6px 0;
  transition: all 0.3s;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 60px 100px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1300px;
  margin: 0 auto;
}
.hero-content { animation: fadeInUp 0.8s ease; }
.hero-content h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: 44px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin-bottom: 28px;
}
.hero-content h1 span { color: var(--maroon); font-weight: 700; }
.hero-content p {
  font-size: 18px;
  color: rgba(26,22,19,0.5);
  line-height: 1.8;
  margin-bottom: 44px;
  max-width: 480px;
}
.hero-buttons { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--whatsapp);
  color: white;
  padding: 16px 32px;
  border-radius: 50px;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 4px 15px rgba(37,211,102,0.3);
  font-family: 'Tajawal', sans-serif;
  border: none;
  cursor: pointer;
}
html[lang="en"] .btn-primary { font-family: 'Inter', sans-serif; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }
.btn-secondary {
  color: var(--maroon);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: all 0.3s;
}
.btn-secondary:hover { border-color: var(--maroon); }

/* Phone Mockup */
.hero-visual {
  position: relative;
  animation: slideInLeft 0.8s ease 0.2s both;
}
html[dir="ltr"] .hero-visual { animation-name: slideInRight; }
.phone-mockup {
  width: 320px;
  height: 620px;
  background: #1a1a1a;
  border-radius: 44px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.18), 0 0 0 2px #2a2a2a inset;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
.phone-notch {
  width: 100px;
  height: 26px;
  background: #1a1a1a;
  border-radius: 0 0 18px 18px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.phone-screen {
  background: #E5DDD5;
  border-radius: 34px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  position: relative;
}

/* iPhone-style status bar */
.phone-statusbar {
  background: #075E54;
  color: white;
  height: 36px;
  padding: 8px 24px 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  font-weight: 600;
  font-family: -apple-system, 'SF Pro Text', 'Inter', sans-serif;
  flex-shrink: 0;
}
.phone-statusbar .time { font-size: 13px; }
.phone-statusbar .icons { display: flex; gap: 4px; align-items: center; }
.phone-statusbar .icons svg { width: 14px; height: 14px; fill: currentColor; }

/* WhatsApp header */
.wa-header {
  background: #075E54;
  color: white;
  padding: 34px 12px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.1);
}
.wa-back {
  color: white;
  opacity: 0.9;
  display: flex;
  align-items: center;
  padding: 4px;
}
.wa-back svg { width: 18px; height: 18px; fill: currentColor; }
html[dir="ltr"] .wa-back svg { transform: scaleX(-1); }
.wa-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: white;
  flex-shrink: 0;
}
.wa-avatar img, .wa-avatar svg { width: 100%; height: 100%; border-radius: 50%; }
.wa-contact { flex: 1; min-width: 0; line-height: 1.2; }
.wa-name { font-size: 15px; font-weight: 500; display: block; }
.wa-status { font-size: 11px; opacity: 0.85; display: block; margin-top: 1px; }
.wa-icons {
  display: flex;
  gap: 16px;
  align-items: center;
  color: white;
  opacity: 0.9;
}
.wa-icons svg { width: 18px; height: 18px; fill: currentColor; }

/* Chat body */
.wa-chat {
  flex: 1;
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow-y: auto;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c7beb1' fill-opacity='0.15'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") #E5DDD5;
}

/* Date separator */
.wa-date {
  align-self: center;
  background: rgba(225,245,254,0.92);
  color: #54656f;
  font-size: 11px;
  padding: 4px 10px;
  border-radius: 8px;
  margin: 6px 0 8px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
  opacity: 0;
  animation: fadeInUp 0.4s ease forwards;
  animation-delay: 0.2s;
}

/* Message bubble */
.msg {
  max-width: 78%;
  padding: 6px 9px 5px;
  border-radius: 8px;
  font-size: 13px;
  line-height: 1.4;
  font-family: 'Tajawal', sans-serif;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  position: relative;
  word-break: break-word;
}
.msg:nth-child(2) { animation-delay: 0.6s; }
.msg:nth-child(3) { animation-delay: 1.3s; }
.msg:nth-child(4) { animation-delay: 2.1s; }
.msg:nth-child(5) { animation-delay: 2.9s; }
.msg:nth-child(6) { animation-delay: 4.3s; }
.msg:nth-child(7) { animation-delay: 5.1s; }
.msg:nth-child(8) { animation-delay: 5.9s; }

.msg-meta {
  font-size: 10px;
  color: rgba(0,0,0,0.45);
  display: inline-flex;
  align-items: center;
  gap: 3px;
  margin-top: 2px;
  margin-inline-start: 8px;
  float: right;
  clear: both;
}
html[dir="rtl"] .msg-meta { float: left; }
.msg-check { width: 14px; height: 14px; fill: #4FC3F7; }

.msg-in {
  background: white;
  align-self: flex-start;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
html[dir="ltr"] .msg-in { border-top-left-radius: 0; border-top-right-radius: 8px; }
html[dir="rtl"] .msg-in { border-top-right-radius: 0; border-top-left-radius: 8px; }

.msg-out {
  background: #DCF8C6;
  align-self: flex-end;
  border-radius: 8px;
  border-top-right-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
}
html[dir="ltr"] .msg-out { border-top-right-radius: 0; border-top-left-radius: 8px; }
html[dir="rtl"] .msg-out { border-top-left-radius: 0; border-top-right-radius: 8px; }

.msg-out .msg-meta { color: rgba(0,0,0,0.4); }

/* Typing indicator */
.msg-typing {
  background: white;
  align-self: flex-start;
  padding: 10px 14px;
  border-radius: 8px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  display: flex;
  gap: 4px;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: 1.7s;
}
.msg-typing span {
  width: 6px; height: 6px;
  background: #54656f;
  border-radius: 50%;
  opacity: 0.4;
  animation: typingDots 1.4s infinite;
}
.msg-typing span:nth-child(2) { animation-delay: 0.2s; }
.msg-typing span:nth-child(3) { animation-delay: 0.4s; }

/* Provider option cards inside a message */
.msg-cards {
  background: white;
  align-self: flex-start;
  padding: 10px;
  border-radius: 10px;
  border-top-left-radius: 0;
  box-shadow: 0 1px 1px rgba(0,0,0,0.08);
  max-width: 88%;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  animation: fadeInUp 0.3s ease forwards;
  animation-delay: 3.7s;
}
html[dir="ltr"] .msg-cards { border-top-left-radius: 0; border-top-right-radius: 10px; }
html[dir="rtl"] .msg-cards { border-top-right-radius: 0; border-top-left-radius: 10px; }

.provider-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px;
  background: #F7F9FA;
  border: 1px solid rgba(0,0,0,0.05);
  border-radius: 8px;
  transition: all 0.25s ease;
  cursor: pointer;
}
.provider-card:hover {
  background: #EBF8F2;
  border-color: #25D366;
  transform: translateY(-1px);
}
.provider-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--maroon), var(--maroon-light));
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  flex-shrink: 0;
  font-family: 'Amiri', serif;
}
.provider-info { flex: 1; min-width: 0; line-height: 1.3; }
.provider-name {
  font-size: 13px;
  font-weight: 700;
  color: #111b21;
  display: block;
}
.provider-meta {
  font-size: 11px;
  color: #667781;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 1px;
}
.provider-stars { color: #F7B500; font-size: 10px; }
.provider-pick {
  background: #25D366;
  color: white;
  border: none;
  padding: 5px 12px;
  border-radius: 14px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Tajawal', sans-serif;
  transition: all 0.2s;
  flex-shrink: 0;
}
html[lang="en"] .provider-pick { font-family: 'Inter', sans-serif; }
.provider-pick:hover { background: #1FAE55; transform: scale(1.05); }

/* Highlight chosen card */
.provider-card.chosen {
  background: #D1F5E1;
  border-color: #25D366;
}
.provider-card.chosen .provider-pick {
  background: #25D366;
  content: "✓";
}

/* Input bar */
.wa-inputbar {
  background: #F0F0F0;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.wa-inputbar .ib-input {
  flex: 1;
  background: white;
  border-radius: 20px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: #8696a0;
  font-size: 13px;
  box-shadow: 0 1px 1px rgba(0,0,0,0.05);
}
.wa-inputbar .ib-input svg { width: 18px; height: 18px; fill: #8696a0; flex-shrink: 0; }
.wa-inputbar .ib-placeholder { flex: 1; }
.wa-inputbar .ib-mic {
  width: 38px; height: 38px;
  background: #075E54;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wa-inputbar .ib-mic svg { width: 18px; height: 18px; fill: white; }

/* ============ STATS ============ */
.stats {
  background: white;
  padding: 60px;
  border-top: 1px solid rgba(0,0,0,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {
  transition: transform 0.3s;
  padding: 12px 20px;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.stat-item:last-child { border-right: none; }
html[dir="ltr"] .stat-item { border-right: none; border-left: 1px solid rgba(0,0,0,0.06); }
html[dir="ltr"] .stat-item:first-child { border-left: none; }
.stat-item:hover { transform: translateY(-2px); }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 44px;
  font-weight: 600;
  color: var(--maroon);
  line-height: 1.1;
}
.stat-label {
  font-size: 14px;
  color: rgba(26,22,19,0.5);
  margin-top: 8px;
  letter-spacing: 0.01em;
}

/* ============ SERVICES ============ */
.services {
  padding: 100px 60px;
  max-width: 1200px;
  margin: 0 auto;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header h2 {
  font-family: 'Tajawal', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.services-header p {
  font-size: 17px;
  color: rgba(26,22,19,0.5);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 12px;
  padding: 28px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.service-card:hover {
  border-color: var(--maroon);
  box-shadow: 0 4px 16px rgba(107,26,34,0.06);
  transform: translateY(-2px);
}
.service-icon {
  width: 48px; height: 48px;
  background: rgba(107,26,34,0.06);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-icon svg { width: 24px; height: 24px; stroke: currentColor; fill: none; stroke-width: 1.6; }
.service-card:hover .service-icon { background: var(--maroon); color: var(--cream); }
.service-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.service-desc {
  font-size: 15px;
  color: rgba(26,22,19,0.5);
  line-height: 1.7;
}

/* ============ TRUST ============ */
.trust {
  background: var(--maroon);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.trust::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 120%;
  height: 200%;
  background: radial-gradient(circle, rgba(184,147,90,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.trust h2 {
  font-family: 'Amiri', serif;
  font-size: 34px;
  color: var(--cream);
  margin-bottom: 16px;
  position: relative;
}
.trust p {
  color: rgba(244,232,208,0.6);
  font-size: 17px;
  max-width: 500px;
  margin: 0 auto 40px;
  line-height: 1.8;
  position: relative;
}
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  position: relative;
}
.badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  transition: transform 0.3s;
}
.badge:hover { transform: translateY(-4px); }
.badge-circle {
  width: 64px; height: 64px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--gold);
  transition: all 0.3s;
}
.badge:hover .badge-circle {
  background: rgba(184,147,90,0.15);
  transform: scale(1.1);
}
.badge-label {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}

/* ============ CTA ============ */
.final-cta {
  padding: 100px 60px;
  text-align: center;
  background: white;
}
.final-cta h2 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 16px;
}
.final-cta h2 span { color: var(--maroon); }
.final-cta p {
  font-size: 18px;
  color: rgba(26,22,19,0.5);
  margin-bottom: 36px;
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  padding: 80px 60px 60px;
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}
.page-hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 20px;
}
.page-hero h1 span { color: var(--maroon); }
.page-hero p {
  font-size: 19px;
  color: rgba(26,22,19,0.6);
  line-height: 1.8;
  max-width: 620px;
  margin: 0 auto;
}

.page-section {
  padding: 60px 60px;
  max-width: 1100px;
  margin: 0 auto;
}
.page-section h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 20px;
}
.page-section h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--maroon);
  margin: 32px 0 12px;
}
.page-section p, .page-section li {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(26,22,19,0.75);
  margin-bottom: 14px;
}
.page-section ul { padding-right: 24px; padding-left: 0; }
html[dir="ltr"] .page-section ul { padding-left: 24px; padding-right: 0; }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin: 40px 0;
}
.step-card {
  background: var(--paper);
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(107,26,34,0.08);
  transition: all 0.3s;
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(107,26,34,0.08);
}
.step-num {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  margin-bottom: 16px;
}
.step-card h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--ink);
}
.step-card p {
  font-size: 14px;
  color: rgba(26,22,19,0.6);
  line-height: 1.6;
  margin: 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
  margin: 40px 0;
}
.benefit-card {
  padding: 24px;
  border-radius: 14px;
  background: white;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.3s;
}
.benefit-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}
.benefit-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.benefit-card h4 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--maroon);
}
.benefit-card p {
  font-size: 14px;
  color: rgba(26,22,19,0.6);
  margin: 0;
  line-height: 1.6;
}

/* Contact form placeholder */
.contact-box {
  background: var(--paper);
  padding: 40px;
  border-radius: 16px;
  text-align: center;
  max-width: 500px;
  margin: 40px auto;
}
.contact-box p { margin-bottom: 20px; }
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 16px;
}
.contact-info a { color: var(--maroon); text-decoration: none; font-weight: 500; }
.contact-info a:hover { text-decoration: underline; }

/* ============ FOOTER ============ */
footer {
  background: var(--ink);
  padding: 64px 60px 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
.footer-col-title {
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  display: block;
}
.footer-brand-section {}
.footer-brand {
  font-family: 'Amiri', serif;
  color: var(--gold);
  font-size: 24px;
  display: block;
  margin-bottom: 10px;
}
.footer-tagline {
  color: rgba(244,232,208,0.4);
  font-size: 14px;
  line-height: 1.7;
  display: block;
  max-width: 240px;
}
.footer-links, .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a, .footer-contact a {
  color: rgba(244,232,208,0.5);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}
.footer-links a:hover, .footer-contact a:hover { color: var(--gold); }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(244,232,208,0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244,232,208,0.4);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(244,232,208,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy {
  color: rgba(244,232,208,0.25);
  font-size: 13px;
}
.footer-legal { display: flex; gap: 20px; }
.footer-legal a {
  color: rgba(244,232,208,0.3);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.3s;
}
.footer-legal a:hover { color: rgba(244,232,208,0.6); }

/* ============ FLOATING WHATSAPP ============ */
.wa-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  width: 60px;
  height: 60px;
  background: var(--whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 99;
  transition: all 0.3s;
  text-decoration: none;
}
html[dir="ltr"] .wa-float { left: auto; right: 28px; }
.wa-float:hover { transform: scale(1.1); box-shadow: 0 6px 25px rgba(37,211,102,0.5); }
.wa-float svg { width: 32px; height: 32px; fill: white; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero { gap: 40px; padding: 60px 40px 80px; }
  .hero-content h1 { font-size: 42px; }
  .stats { padding: 48px 40px; }
  .services { padding: 80px 40px; }
  nav { padding: 16px 40px; }
  .page-hero { padding: 60px 40px 40px; }
  .page-section { padding: 40px; }
}
@media (max-width: 768px) {
  nav { padding: 14px 20px; }
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }
  .hero {
    grid-template-columns: 1fr;
    padding: 40px 24px 60px;
    text-align: center;
  }
  .hero-content h1 { font-size: 32px; }
  .hero-content p { margin: 0 auto 28px; font-size: 17px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { order: -1; }
  .phone-mockup {
    width: 260px;
    height: 480px;
    margin: 0 auto 20px;
  }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stats { padding: 40px 24px; }
  .stat-num { font-size: 36px; }
  .stat-item { border-right: none !important; border-left: none !important; }
  .services { padding: 60px 24px; }
  .services-header h2 { font-size: 28px; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .trust { padding: 60px 24px; }
  .trust h2 { font-size: 28px; }
  .trust-badges { gap: 24px; }
  .final-cta { padding: 60px 24px; }
  .final-cta h2 { font-size: 30px; }
  .page-hero { padding: 48px 20px 32px; }
  .page-hero h1 { font-size: 32px; }
  .page-section { padding: 40px 20px; }
  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}
@media (max-width: 480px) {
  .hero-content h1 { font-size: 30px; }
  .btn-primary { font-size: 15px; padding: 14px 24px; }
  .phone-mockup { width: 230px; height: 420px; }
}

/* Hide elements based on language */
[data-lang-ar] { display: inline; }
[data-lang-en] { display: none; }
html[lang="en"] [data-lang-ar] { display: none; }
html[lang="en"] [data-lang-en] { display: inline; }

[data-lang-ar-block] { display: block; }
[data-lang-en-block] { display: none; }
html[lang="en"] [data-lang-ar-block] { display: none; }
html[lang="en"] [data-lang-en-block] { display: block; }

[data-lang-ar-flex] { display: flex; }
[data-lang-en-flex] { display: none; }
html[lang="en"] [data-lang-ar-flex] { display: none; }
html[lang="en"] [data-lang-en-flex] { display: flex; }

[data-lang-ar-grid] { display: grid; }
[data-lang-en-grid] { display: none; }
html[lang="en"] [data-lang-ar-grid] { display: none; }
html[lang="en"] [data-lang-en-grid] { display: grid; }
