/* White Clean — marketing site
   Brand: primary #134B86, secondary #B7E1E3, gradient #184984 → #36B2B6 */

:root {
  --navy: #134B86;
  --navy-shade: #114276;
  --teal: #36B2B6;
  --teal-soft: #B7E1E3;
  --grad-start: #184984;
  --grad-end: #36B2B6;
  --ink: #1c2733;
  --muted: #5a6b7b;
  --bg: #ffffff;
  --bg-alt: #f4f8fb;
  --border: #e3ecf3;
  --radius: 16px;
  --shadow: 0 10px 30px rgba(19, 75, 134, 0.08);
  --maxw: 1120px;
  --font-latin: 'DM Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  --font-arabic: 'Cairo', system-ui, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-latin);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* Arabic / RTL */
html[dir="rtl"] body { font-family: var(--font-arabic); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

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

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

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  height: 72px;
}
.brand-logo { height: 44px; width: auto; }
.nav {
  display: flex;
  gap: 28px;
  margin-inline-start: auto;
  font-weight: 500;
}
.nav a { color: rgba(255, 255, 255, 0.82); transition: color .15s; }
.nav a:hover { color: #fff; }
.lang-toggle {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  background: transparent;
  border-radius: 999px;
  padding: 8px 18px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.lang-toggle:hover { background: #fff; color: var(--navy); }

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--grad-start) 0%, var(--grad-end) 100%);
  color: #fff;
  padding: 96px 0 104px;
  text-align: center;
}
.hero-inner { max-width: 820px; }
.hero h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  line-height: 1.15;
  margin: 0 0 20px;
  font-weight: 700;
  letter-spacing: -0.5px;
}
.hero-sub {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 auto 32px;
  max-width: 640px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}
/* Store badges */
.store { margin-bottom: 26px; }
.store-label {
  margin: 0 0 12px;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}
html[dir="rtl"] .store-label { text-transform: none; letter-spacing: 0; font-size: .95rem; }
.store-badges {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
}
.store-badges .badge {
  height: 52px;
  width: auto;
  transition: transform .12s, opacity .15s;
}
.store-badges a:hover .badge { transform: translateY(-2px); opacity: .92; }

.hero-trust {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.95);
  margin: 0;
}
.hero-trust .dot {
  width: 10px; height: 10px;
  background: var(--teal-soft);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(183, 225, 227, 0.3);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 1rem;
  transition: transform .12s, box-shadow .15s, background .15s, color .15s;
  cursor: pointer;
}
.btn-primary { background: #fff; color: var(--navy); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.18); }
.btn-ghost { border: 1.5px solid rgba(255,255,255,0.7); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,0.12); }

/* Sections */
.section { padding: 80px 0; }
.section-alt { background: var(--bg-alt); }
.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.25rem);
  font-weight: 700;
  text-align: center;
  margin: 0 0 12px;
  color: var(--navy);
}
.section-lead {
  text-align: center;
  color: var(--muted);
  max-width: 560px;
  margin: 0 auto 48px;
  font-size: 1.1rem;
}

/* Grid */
.grid { display: grid; gap: 24px; }
.services-grid { grid-template-columns: repeat(3, 1fr); }
.why-grid { grid-template-columns: repeat(3, 1fr); }

/* Service cards */
.card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 26px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .15s, box-shadow .15s;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(19,75,134,.14); }
.card { position: relative; }
.card--soon { opacity: .9; }
.soon-badge {
  position: absolute;
  top: 12px;
  inset-inline-end: 12px;
  background: var(--teal-soft);
  color: var(--navy);
  font-size: .72rem;
  font-weight: 700;
  padding: 4px 11px;
  border-radius: 999px;
  letter-spacing: .02em;
}
.card-icon {
  font-size: 2.4rem;
  margin-bottom: 14px;
  width: 72px; height: 72px;
  line-height: 72px;
  margin-inline: auto;
  border-radius: 50%;
  background: var(--teal-soft);
}
.card h3 { margin: 6px 0 6px; font-size: 1.2rem; color: var(--navy); }
.card p { margin: 0; color: var(--muted); }

/* Why items */
.why-item {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
}
.why-num {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(135deg, var(--grad-start), var(--grad-end));
  width: 48px; height: 48px;
  line-height: 48px;
  text-align: center;
  border-radius: 12px;
  margin-bottom: 18px;
}
.why-item h3 { margin: 0 0 10px; font-size: 1.22rem; color: var(--navy); }
.why-item p { margin: 0; color: var(--muted); }

/* Service areas */
.areas-grid { grid-template-columns: repeat(3, 1fr); }
.area-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow);
}
.area-card h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  color: var(--navy);
}
.area-card h3::before {
  content: "📍";
  display: block;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.area-card p { margin: 0; color: var(--muted); }
.area-card { display: block; transition: transform .15s, box-shadow .15s; }
.area-card:hover { transform: translateY(-4px); box-shadow: 0 16px 36px rgba(19,75,134,.14); }
.area-link {
  display: inline-block;
  margin-top: 12px;
  font-weight: 600;
  font-size: .92rem;
  color: var(--teal);
}
@media (max-width: 860px) { .areas-grid { grid-template-columns: 1fr; } }

/* FAQ */
.faq-container { max-width: 760px; }
.faq-list { margin-top: 8px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 18px 22px;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--teal);
  line-height: 1;
  transition: transform .2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p {
  margin: 0;
  padding: 0 22px 20px;
  color: var(--muted);
}

/* Contact */
.contact-inner { text-align: center; }
.contact-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-email { background: var(--navy); color: #fff; }
.contact-email:hover { background: var(--navy-shade); }
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: #fff;
}
.btn-whatsapp svg { display: block; }
.btn-whatsapp:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(37,211,102,.3); }

/* Footer */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-logo { height: 34px; width: auto; }
.footer-copy { margin: 0; font-size: .95rem; }
.socials {
  display: flex;
  gap: 18px;
  align-items: center;
  margin-inline: auto;
}
.socials a {
  color: rgba(255, 255, 255, 0.8);
  display: inline-flex;
  transition: color .15s, transform .12s;
}
.socials a:hover { color: #fff; transform: translateY(-2px); }

/* Responsive */
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .nav { display: none; }
}
@media (max-width: 520px) {
  .services-grid { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 80px; }
  .section { padding: 60px 0; }
  .footer-inner { justify-content: center; text-align: center; }
}
