/* =========================================================
   ENI Estates — global stylesheet (mobile-first)
   Palette: deep navy #16324f, teal accent #2a9d8f, off-white
   ========================================================= */

:root {
  --navy: #16324f;
  --navy-dark: #0f2438;
  --teal: #2a9d8f;
  --teal-dark: #218379;
  --ink: #1d2b3a;
  --muted: #5b6b7c;
  --bg: #f7f8f7;
  --surface: #ffffff;
  --line: #e4e9ee;
  --danger: #c0392b;
  --radius: 14px;
  --shadow-sm: 0 1px 3px rgba(22, 50, 79, 0.08);
  --shadow-md: 0 10px 30px rgba(22, 50, 79, 0.12);
  --font-head: "Sora", system-ui, sans-serif;
  --font-body: "Manrope", system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

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

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

h1, h2, h3, h4 {
  font-family: var(--font-head);
  color: var(--navy);
  line-height: 1.2;
  margin: 0 0 0.6em;
}

p { margin: 0 0 1em; }
a { color: var(--teal-dark); text-decoration: none; }
a:hover { text-decoration: underline; }

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-alt { background: var(--surface); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 10px;
}
.section-head h2 { font-size: clamp(1.6rem, 4vw, 2.3rem); }
.section-head p { color: var(--muted); margin: 0; }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
  text-decoration: none !important;
}
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--teal); color: #fff; }
.btn-primary:hover { background: var(--teal-dark); box-shadow: var(--shadow-md); }

.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-dark); box-shadow: var(--shadow-md); }

.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: #fff; }

.btn-light { background: #fff; color: var(--navy); }
.btn-light:hover { box-shadow: var(--shadow-md); }

.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

.btn:disabled,
.btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  box-shadow: none !important;
  transform: none !important;
}

/* ---------- Header ---------- */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 16px;
  height: 68px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
}
.logo:hover { text-decoration: none; }
.logo-mark { color: var(--teal); display: inline-flex; }
.logo-text em { font-style: normal; color: var(--teal); }
.logo-light { color: #fff; }

.nav {
  display: none;
  margin-inline-start: auto;
  gap: 4px;
}

.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.92rem;
}
.nav-link:hover { background: rgba(42, 157, 143, 0.1); color: var(--teal-dark); text-decoration: none; }
.nav-link.active { color: var(--teal-dark); background: rgba(42, 157, 143, 0.12); }

.header-cta { display: none; margin-inline-start: 8px; }

/* header toggle group (currency + language) */
.header-toggles {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* language toggle */
.lang-toggle,
.currency-toggle {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-inline-start: 4px;
  font-family: var(--font-head);
}
.lang-toggle button,
.currency-toggle button {
  background: transparent;
  border: none;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--muted);
  padding: 6px 3px;
}
.lang-toggle button:hover,
.currency-toggle button:hover { color: var(--teal-dark); }
.lang-toggle button.active,
.currency-toggle button.active {
  color: var(--teal-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.lang-sep { color: var(--line); }

/* hamburger */
.nav-toggle {
  margin-inline-start: auto;
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* mobile open menu */
.nav.open {
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 68px;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  padding: 12px 20px 20px;
  gap: 2px;
}
.nav.open .nav-link { padding: 12px 14px; font-size: 1rem; }

/* ---------- Hero ---------- */

.hero {
  position: relative;
  color: #fff;
  background:
    linear-gradient(115deg, rgba(15, 36, 56, 0.92) 0%, rgba(22, 50, 79, 0.78) 55%, rgba(42, 157, 143, 0.55) 100%),
    url("https://images.unsplash.com/photo-1487958449943-2429e8be8625?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  padding: 96px 0 88px;
}

.hero-inner { max-width: 680px; }
.hero .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8fe0d6;
  margin-bottom: 14px;
}
.hero h1 {
  color: #fff;
  font-size: clamp(2.1rem, 6vw, 3.4rem);
  letter-spacing: -0.02em;
}
.hero p.lead {
  font-size: clamp(1rem, 2.4vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 540px;
  margin-bottom: 30px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* ---------- Cards & grids ---------- */

.grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.service-card { padding: 34px 28px; }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(42, 157, 143, 0.12);
  color: var(--teal-dark);
  margin-bottom: 18px;
}
.service-card h3 { font-size: 1.25rem; }
.service-card p { color: var(--muted); margin-bottom: 18px; }

/* ---------- Product cards ---------- */

.product-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dde4ea;
}
.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.product-card:hover .product-media img { transform: scale(1.05); }

.badge {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: rgba(22, 50, 79, 0.88);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 999px;
}

.product-body { padding: 20px 20px 22px; }
.product-body h3 { font-size: 1.08rem; margin-bottom: 10px; }
.product-body h3 a { color: var(--navy); }
.product-body h3 a:hover { color: var(--teal-dark); text-decoration: none; }

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
}
.product-specs span {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--muted);
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 4px 10px;
  border-radius: 999px;
}

.product-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.price {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
}

/* ---------- Stats strip ---------- */

.stats {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  text-align: center;
}
.stat-num {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 700;
  color: #8fe0d6;
}
.stat-label { font-size: 0.9rem; color: rgba(255, 255, 255, 0.75); font-weight: 600; }

/* ---------- Testimonials ---------- */

.testimonial-card { padding: 30px 26px; display: flex; flex-direction: column; gap: 14px; }
.testimonial-card .quote-mark {
  font-family: var(--font-head);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--teal);
}
.testimonial-card p { color: var(--muted); margin: 0; flex: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
}
.testimonial-author strong { display: block; color: var(--navy); font-size: 0.95rem; }
.testimonial-author small { color: var(--muted); }

/* ---------- CTA band ---------- */

.cta-band {
  background: linear-gradient(120deg, var(--teal) 0%, var(--teal-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 64px 0;
}
.cta-band h2 { color: #fff; font-size: clamp(1.5rem, 4vw, 2.1rem); }
.cta-band p { color: rgba(255, 255, 255, 0.85); max-width: 520px; margin: 0 auto 26px; }

/* ---------- Store filters ---------- */

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
}
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--teal); color: var(--teal-dark); }
.filter-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}

/* ---------- Product detail ---------- */

.product-detail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
  align-items: start;
}
.product-detail-media {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  background: #dde4ea;
}
.product-detail-media img { width: 100%; height: auto; }

.detail-category {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--teal-dark);
  background: rgba(42, 157, 143, 0.12);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.detail-price { font-size: 2rem; margin: 14px 0 4px; }
.detail-tax-note { font-size: 0.82rem; color: var(--muted); margin-bottom: 20px; }

.specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 22px 0;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.specs-table th,
.specs-table td {
  text-align: start;
  padding: 12px 18px;
  border-bottom: 1px solid var(--line);
  font-size: 0.92rem;
}
.specs-table tr:last-child th,
.specs-table tr:last-child td { border-bottom: none; }
.specs-table th { color: var(--muted); font-weight: 600; width: 45%; background: var(--bg); }
.specs-table td { font-weight: 600; color: var(--navy); }

.notice {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fdf3f2;
  border: 1px solid #f1c9c4;
  border-inline-start: 4px solid var(--danger);
  color: #7c2d24;
  border-radius: 10px;
  padding: 14px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 20px 0;
}
.notice svg { flex: 0 0 auto; margin-top: 2px; }

/* ---------- Forms ---------- */

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 30px 24px;
}

.form-row { margin-bottom: 18px; }
.form-row label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-row label .req { color: var(--danger); }

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font: inherit;
  font-size: 0.95rem;
  color: var(--ink);
  background: #fff;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42, 157, 143, 0.15);
}
input.invalid, textarea.invalid, select.invalid { border-color: var(--danger); }
textarea { resize: vertical; min-height: 130px; }

.field-error {
  display: none;
  color: var(--danger);
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 5px;
}
.field-error.show { display: block; }

.check-row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: var(--bg);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 22px 0;
  cursor: pointer;
}
.check-row input { margin-top: 4px; width: 18px; height: 18px; accent-color: var(--teal); flex: 0 0 auto; }
.check-row span { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.check-row.invalid { border-color: var(--danger); background: #fdf3f2; }

/* ---------- Checkout layout ---------- */

.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: start;
}

.order-summary { position: sticky; top: 92px; }
.order-summary .product-mini {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
.order-summary .product-mini img {
  width: 84px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--line);
}
.order-summary .product-mini strong { display: block; color: var(--navy); font-size: 0.95rem; }
.order-summary .product-mini small { color: var(--muted); }

.summary-lines { border-top: 1px dashed var(--line); padding-top: 14px; }
.summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.94rem;
  margin-bottom: 8px;
  color: var(--muted);
}
.summary-line.total {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}

/* ---------- Success screens ---------- */

.success-panel {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  padding: 48px 28px;
}
.success-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: rgba(42, 157, 143, 0.14);
  color: var(--teal-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.success-panel h2 { font-size: 1.6rem; }
.success-panel p { color: var(--muted); }
.success-panel .btn { margin-top: 8px; }
.success-note { font-size: 0.85rem; margin-top: 18px; }

/* ---------- States (loading / error / empty) ---------- */

.state-msg {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--muted);
  padding: 40px 20px;
  font-weight: 600;
}
.state-error { color: var(--danger); }

.spinner {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid var(--line);
  border-top-color: var(--teal);
  border-radius: 50%;
  vertical-align: -4px;
  margin-inline-end: 8px;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.form-alert {
  display: none;
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 18px;
}
.form-alert.show { display: block; }
.form-alert.error { background: #fdf3f2; border: 1px solid #f1c9c4; color: #7c2d24; }
.form-alert.ok { background: #eef8f6; border: 1px solid #bfe6e1; color: #166157; }

/* ---------- Page hero (inner pages) ---------- */

.page-hero {
  background: linear-gradient(115deg, var(--navy-dark), var(--navy) 60%, #1f5f58);
  color: #fff;
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(1.7rem, 4.5vw, 2.5rem); margin-bottom: 8px; }
.page-hero p { color: rgba(255, 255, 255, 0.8); max-width: 560px; margin: 0 auto; }

/* ---------- Footer ---------- */

.footer {
  background: var(--navy-dark);
  color: rgba(255, 255, 255, 0.78);
  padding: 56px 0 0;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
.footer-brand p { font-size: 0.9rem; margin-top: 14px; max-width: 300px; }
.footer-col h4 {
  color: #fff;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  margin-bottom: 9px;
}
.footer-col a:hover { color: #8fe0d6; text-decoration: none; }
.footer-note { font-size: 0.82rem; color: rgba(255, 255, 255, 0.5); margin: 0; }
/* business identity (Saudi E-Commerce Law) */
.footer-identity {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.85rem;
}
.footer-identity p { margin: 0 0 6px; color: rgba(255, 255, 255, 0.78); }
.footer-identity p:last-child { margin-bottom: 0; }
.footer-identity strong { color: #fff; }
.footer-identity [dir="ltr"] { unicode-bidi: embed; }
.footer-id-sep { margin: 0 10px; color: rgba(255, 255, 255, 0.35); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 0.85rem;
}
.footer-bottom p { margin: 0; }

/* ---------- Reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Breakpoints ---------- */

@media (min-width: 640px) {
  .grid-2-sm { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(4, 1fr); }
  .form-card { padding: 36px 32px; }
}

@media (min-width: 768px) {
  .section { padding: 84px 0; }
  .hero { padding: 130px 0 120px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .product-detail { grid-template-columns: 1.1fr 1fr; }
}

@media (min-width: 1024px) {
  .nav { display: flex; }
  .header-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .checkout-grid { grid-template-columns: 1.15fr 0.85fr; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.3fr; }
}

/* ---------- Legal / policy pages ---------- */

.legal-doc {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 36px 24px;
}
.legal-doc .updated { font-size: 0.82rem; color: var(--muted); }
.legal-doc h2 { font-size: 1.2rem; margin-top: 1.7em; }
.legal-doc h2:first-of-type { margin-top: 0.4em; }
.legal-doc p, .legal-doc li { color: var(--muted); font-size: 0.95rem; }
.legal-doc ul { padding-inline-start: 22px; margin: 0 0 1em; }
.legal-doc li { margin-bottom: 6px; }
.legal-doc .notice { margin-top: 0; }

/* ---------- Digital delivery note & policy links ---------- */

.delivery-note {
  display: flex;
  gap: 8px;
  align-items: flex-start;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-dark);
  background: #eef8f6;
  border: 1px solid #bfe6e1;
  border-radius: 10px;
  padding: 11px 14px;
  margin: 16px 0;
}
.delivery-note svg { flex: 0 0 auto; margin-top: 2px; }

.policy-links {
  font-size: 0.8rem;
  color: var(--muted);
  text-align: center;
  margin: 12px 0 0;
}

/* consult page — direct contact card */
.contact-alt {
  margin-top: 24px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px;
}
.contact-alt h3 { font-size: 1.05rem; margin-bottom: 8px; }
.contact-alt p { color: var(--muted); font-size: 0.92rem; margin-bottom: 12px; }
.contact-alt-links { display: flex; flex-wrap: wrap; gap: 8px 22px; margin-bottom: 0 !important; }
.contact-alt-links a { font-weight: 700; }

/* ---------- RTL (Arabic) ---------- */

[dir="rtl"] body,
[dir="rtl"] h1, [dir="rtl"] h2, [dir="rtl"] h3, [dir="rtl"] h4,
[dir="rtl"] .btn, [dir="rtl"] .price, [dir="rtl"] .filter-btn,
[dir="rtl"] .logo, [dir="rtl"] .stat-num, [dir="rtl"] .lang-toggle,
[dir="rtl"] input, [dir="rtl"] select, [dir="rtl"] textarea {
  font-family: "Tajawal", "Sora", "Manrope", system-ui, sans-serif;
}

/* letter-spacing breaks Arabic script — neutralize it */
[dir="rtl"] .eyebrow,
[dir="rtl"] .section-head .eyebrow,
[dir="rtl"] .hero .eyebrow,
[dir="rtl"] .footer-col h4,
[dir="rtl"] .badge,
[dir="rtl"] .detail-category {
  letter-spacing: 0;
}

/* keep emails / phone numbers LTR inside RTL text */
[dir="rtl"] a[dir="ltr"], [dir="rtl"] [dir="ltr"] {
  unicode-bidi: embed;
}
[dir="rtl"] .footer-col a[dir="ltr"] { display: block; text-align: right; }
