/* ===================== Ixora Company — Design System ===================== */
:root {
  --navy: #1f2531;
  --navy-dark: #14181f;
  --navy-soft: #2b3242;
  --gold: #ffc837;
  --gold-dark: #e0a91f;
  --red: #c62f26;
  --red-dark: #a12620;
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #eef0f3;
  --gray-200: #dfe3e8;
  --gray-400: #9aa2b1;
  --gray-600: #5c6577;
  --gray-800: #2c3241;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 8px rgba(20, 24, 31, 0.08);
  --shadow-md: 0 8px 24px rgba(20, 24, 31, 0.12);
  --shadow-lg: 0 20px 48px rgba(20, 24, 31, 0.18);

  --font-en: "Poppins", "Segoe UI", Arial, sans-serif;
  --font-ar: "Cairo", "Tahoma", Arial, sans-serif;

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-en);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

html[dir="rtl"] body { font-family: var(--font-ar); }

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; margin: 0; padding: 0; }
button { font-family: inherit; cursor: pointer; }

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

section { padding: 88px 0; }
@media (max-width: 768px) { section { padding: 56px 0; } }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}
html[dir="rtl"] .eyebrow { letter-spacing: 0; }

h1, h2, h3, h4 { color: var(--navy); font-weight: 700; line-height: 1.25; margin: 0 0 16px; }
h1 { font-size: clamp(34px, 5vw, 54px); }
h2 { font-size: clamp(26px, 3.4vw, 38px); }
h3 { font-size: 20px; }
p { margin: 0 0 16px; color: var(--gray-600); }

.section-head { max-width: 640px; margin: 0 auto 48px; text-align: center; }
.section-head p { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--navy-dark); box-shadow: var(--shadow-sm); }
.btn-primary:hover { box-shadow: var(--shadow-md); background: var(--gold-dark); }
.btn-outline { border-color: var(--navy); color: var(--navy); background: transparent; }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-ghost-light { border-color: rgba(255,255,255,0.5); color: var(--white); }
.btn-ghost-light:hover { background: var(--white); color: var(--navy); border-color: var(--white); }
.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 13px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--gray-100);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px 0;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand img { height: 40px; width: auto; }
.brand-name { font-weight: 700; color: var(--navy); font-size: 20px; letter-spacing: 0.02em; }
.brand-name span { color: var(--red); }

.main-nav ul { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: var(--gray-800);
  position: relative;
  padding: 6px 0;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover::after,
.main-nav a.active::after { transform: scaleX(1); }
.main-nav a.active { color: var(--navy); }

.header-actions { display: flex; align-items: center; gap: 14px; }

.lang-switch {
  display: flex;
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 3px;
  background: var(--gray-50);
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray-600);
}
.lang-switch button.active { background: var(--navy); color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); display: block; }

@media (max-width: 940px) {
  .main-nav {
    position: fixed;
    inset: 68px 0 0 0;
    background: var(--white);
    transform: translateY(-110%);
    transition: transform 0.25s ease;
    padding: 24px;
    border-top: 1px solid var(--gray-100);
    height: calc(100vh - 68px);
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); }
  .main-nav ul { flex-direction: column; align-items: flex-start; gap: 4px; }
  .main-nav a { display: block; padding: 14px 4px; width: 100%; }
  .nav-toggle { display: flex; }
  .header-cta { display: none; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  overflow: hidden;
  padding: 110px 0 90px;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 400px at 85% 20%, rgba(255,200,55,0.18), transparent 60%),
    radial-gradient(500px 400px at 100% 90%, rgba(198,47,38,0.25), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; } }

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,200,55,0.12);
  border: 1px solid rgba(255,200,55,0.35);
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 22px;
}
.hero h1 { color: var(--white); }
.hero h1 + h1 { margin-top: -14px; }
.hero h1 .accent { color: var(--gold); }
.hero p.lead { color: var(--gray-200); font-size: 17px; max-width: 520px; }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

.hero-stats {
  display: flex;
  gap: 32px;
  margin-top: 46px;
  flex-wrap: wrap;
}
.hero-stats div strong { display: block; font-size: 28px; color: var(--gold); }
.hero-stats div span { color: var(--gray-400); font-size: 13px; }

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.08);
}
.hero-visual img { width: 100%; height: 100%; object-fit: cover; }
.hero-badge {
  position: absolute;
  bottom: 18px;
  inset-inline-start: 18px;
  background: rgba(20,24,31,0.85);
  color: var(--white);
  padding: 12px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(255,200,55,0.25); }

/* ---------- Trust strip ---------- */
.trust-strip { padding: 28px 0; background: var(--gray-50); border-bottom: 1px solid var(--gray-100); }
.trust-strip .container { display: flex; flex-wrap: wrap; gap: 28px; justify-content: space-between; align-items: center; }
.trust-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: var(--gray-800); }
.trust-item .ic { color: var(--red); font-size: 18px; }

/* ---------- New Products Promo ---------- */
.promo {
  background: var(--navy);
  color: var(--white);
  overflow: hidden;
}
.promo-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 0;
  align-items: stretch;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
@media (max-width: 860px) { .promo-grid { grid-template-columns: 1fr; } }
.promo-copy {
  background: linear-gradient(160deg, var(--navy-soft), var(--navy-dark));
  padding: 56px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.promo-copy .eyebrow { color: var(--gold); }
.promo-copy .eyebrow::before { background: var(--red); }
.promo-copy h2 { color: var(--white); }
.promo-copy p { color: var(--gray-200); }
.promo-list { margin: 18px 0 28px; display: grid; gap: 10px; }
.promo-list li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-200); font-size: 15px; }
.promo-list li::before { content: "\2713"; color: var(--gold); font-weight: 800; }
.promo-media { position: relative; min-height: 320px; }
.promo-media img { width: 100%; height: 100%; object-fit: cover; object-position: top; }

/* ---------- Products ---------- */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  border: 1px solid var(--gray-200);
  background: var(--white);
  padding: 10px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-600);
  transition: all 0.2s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--navy); }
.filter-btn.active { background: var(--navy); border-color: var(--navy); color: var(--white); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 26px;
}
.product-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-media {
  position: relative;
  aspect-ratio: 1 / 1.02;
  background: var(--white);
  overflow: hidden;
  padding: 10px;
}
.product-media img { width: 100%; height: 100%; object-fit: contain; }
.product-tag {
  position: absolute;
  top: 12px;
  inset-inline-start: 12px;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.product-tag.new { background: var(--red); color: var(--white); }
.product-body { padding: 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.product-cat { font-size: 12px; font-weight: 700; color: var(--red); text-transform: uppercase; letter-spacing: 0.05em; }
.product-body h3 { margin: 0; font-size: 17px; }
.product-specs { display: flex; flex-wrap: wrap; gap: 6px; margin: 4px 0 8px; }
.product-specs span {
  font-size: 11.5px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-600);
  padding: 4px 10px;
  border-radius: 999px;
}
.product-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-top: 12px;
  border-top: 1px dashed var(--gray-200);
}
.product-price { font-weight: 800; color: var(--navy); font-size: 15px; }
.product-price small { display: block; font-weight: 500; color: var(--gray-400); font-size: 11px; }

.empty-state {
  text-align: center;
  padding: 60px 20px;
  color: var(--gray-400);
  grid-column: 1 / -1;
}

/* ---------- Product New-Gen Banner ---------- */
.product-banner {
  position: relative;
  background: linear-gradient(120deg, var(--navy) 0%, var(--navy-dark) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 48px;
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  min-height: 220px;
}
@media (max-width: 720px) { .product-banner { grid-template-columns: 1fr; } }
.product-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(500px 300px at 85% 30%, rgba(255,200,55,0.14), transparent 60%),
    radial-gradient(400px 300px at 100% 100%, rgba(198,47,38,0.2), transparent 60%);
  pointer-events: none;
}
.product-banner-copy { position: relative; padding: 40px 44px; }
.product-banner-copy h2 { color: var(--white); font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
.product-banner-copy p { color: var(--gray-200); margin: 0; font-size: 15px; }
.product-banner-media { position: relative; padding: 20px 32px; }
.product-banner-media img { width: 100%; max-height: 260px; object-fit: contain; }

/* ---------- Product Detail ---------- */
.product-detail-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) { .product-detail-grid { grid-template-columns: 1fr; } }
.product-detail-media {
  position: relative;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.product-detail-media img { width: 100%; aspect-ratio: 1/1; object-fit: contain; }
.product-detail-media .product-tag { position: absolute; top: 18px; inset-inline-start: 18px; }
.product-thumbs { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.product-thumb {
  width: 64px; height: 64px;
  padding: 6px;
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-sm);
  background: var(--white);
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb:hover { border-color: var(--gray-200); }
.product-thumb.active { border-color: var(--gold); }
.product-detail-info .product-cat { display: block; margin-bottom: 8px; }
.product-detail-info h1 { font-size: clamp(22px, 3vw, 30px); margin-bottom: 10px; }
.product-detail-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin: 14px 0 6px;
}
.product-detail-price small { font-size: 13px; font-weight: 500; color: var(--gray-400); }
.product-detail-desc { margin: 14px 0 22px; }
.product-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 24px; }
.cert-badges { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 32px; }
.cert-label { font-size: 12.5px; font-weight: 700; color: var(--gray-400); }
.cert-badge {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.03em;
  color: var(--navy);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  padding: 5px 12px;
  border-radius: 999px;
}
.product-specs-full {
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid var(--gray-100);
}
.spec-groups-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 18px;
}
.spec-group-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
}
.spec-table {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 4px;
}
.spec-table .spec-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  font-size: 14.5px;
  color: var(--gray-800);
  font-weight: 500;
}
.spec-table .spec-row:nth-child(odd) { background: var(--gray-50); }
.spec-table .spec-row::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex: none;
}
.product-detail-empty { text-align: center; padding: 60px 20px; }
.product-feature-image {
  width: 100%;
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  margin-top: 28px;
}

/* ---------- Offers ---------- */
.offers-grid { display: grid; gap: 32px; }
.offer-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.offer-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
@media (max-width: 780px) { .offer-card { grid-template-columns: 1fr; } }
.offer-media { position: relative; min-height: 280px; background: var(--gray-50); }
.offer-media img { width: 100%; height: 100%; object-fit: cover; }
.offer-body { padding: 36px; display: flex; flex-direction: column; }
.offer-badge {
  align-self: flex-start;
  background: var(--red);
  color: var(--white);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.offer-body h3 { font-size: 22px; margin-bottom: 6px; }
.offer-subtitle { color: var(--gray-600); margin-bottom: 18px; }
.offer-items { display: grid; gap: 10px; margin: 0 0 24px; }
.offer-items li {
  position: relative;
  padding-inline-start: 26px;
  font-size: 14.5px;
  color: var(--gray-800);
  font-weight: 500;
}
.offer-items li::before {
  content: "\2713";
  position: absolute;
  inset-inline-start: 0;
  top: 1px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 11px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}
.offer-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 18px;
  border-top: 1px dashed var(--gray-200);
}
.offer-price { font-size: 26px; font-weight: 800; color: var(--navy); }
.offer-price small { display: block; font-weight: 500; color: var(--gray-400); font-size: 12px; }

/* ---------- Why us / Features ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.feature-card {
  padding: 30px 24px;
  border-radius: var(--radius-md);
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  background: var(--navy);
  color: var(--gold);
  font-size: 22px;
  margin-bottom: 18px;
}
.feature-card h3 { margin-bottom: 8px; }
.feature-card p { margin: 0; font-size: 14.5px; }

/* ---------- About snippet / split ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }
.split img { border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.split-media { position: relative; }
.split-stat {
  position: absolute;
  bottom: -24px;
  inset-inline-end: -24px;
  background: var(--white);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-md);
  padding: 18px 22px;
}
@media (max-width: 560px) { .split-stat { position: static; margin-top: 16px; display: inline-block; } }
.split-stat strong { display: block; font-size: 26px; color: var(--red); }
.split-stat span { font-size: 12.5px; color: var(--gray-600); }
.checklist { display: grid; gap: 12px; margin: 22px 0; }
.checklist li { display: flex; gap: 10px; align-items: flex-start; color: var(--gray-800); font-weight: 500; }
.checklist li::before {
  content: "\2713";
  flex: none;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy-dark);
  font-size: 12px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Steps / Process ---------- */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; counter-reset: step; }
.step { position: relative; padding: 28px 22px; background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-md); }
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}

/* ---------- Testimonials ---------- */
.testimonial-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.testimonial { background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 28px; }
.testimonial .stars { color: var(--gold); letter-spacing: 3px; margin-bottom: 12px; }
.testimonial-who { display: flex; align-items: center; gap: 12px; margin-top: 18px; }
.testimonial-who .avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--navy); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 700; }
.testimonial-who strong { display: block; font-size: 14px; color: var(--navy); }
.testimonial-who span { font-size: 12px; color: var(--gray-400); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(120deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  text-align: center;
  border-radius: var(--radius-lg);
  padding: 64px 32px;
  margin: 0 24px;
}
.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto 26px; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-band .btn-primary { background: var(--white); color: var(--red-dark); }
.cta-band .btn-primary:hover { background: var(--gray-100); }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-card {
  background: var(--navy);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.contact-card h3 { color: var(--white); }
.contact-list { display: grid; gap: 18px; margin-top: 24px; }
.contact-list li { display: flex; gap: 14px; align-items: flex-start; }
.contact-list .ic {
  width: 40px; height: 40px; flex: none;
  border-radius: 10px;
  background: rgba(255,200,55,0.14);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 17px;
}
.contact-list strong { display: block; font-size: 14px; }
.contact-list span, .contact-list a { color: var(--gray-200); font-size: 14px; }
.social-row { display: flex; gap: 12px; margin-top: 28px; }
.social-row a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}
.social-row a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.form-card { background: var(--white); border: 1px solid var(--gray-100); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 14px;
  background: var(--gray-50);
  transition: border-color 0.2s ease, background 0.2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-note { font-size: 12.5px; color: var(--gray-400); margin-top: 10px; }
.field-honeypot { position: absolute; inset-inline-start: -9999px; width: 1px; height: 1px; opacity: 0; pointer-events: none; }
.form-status { display: none; margin-top: 14px; padding: 12px 16px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 600; }
.form-status.success { display: block; background: #eaf7ee; color: #1a7f37; }
.form-status.error { display: block; background: #fdecea; color: var(--red-dark); }
.btn[disabled] { opacity: 0.6; pointer-events: none; }

.map-embed { border-radius: var(--radius-lg); overflow: hidden; margin-top: 40px; border: 1px solid var(--gray-100); }
.map-embed iframe { width: 100%; height: 340px; border: 0; display: block; }

/* ---------- About page extras ---------- */
.timeline { display: grid; gap: 22px; margin-top: 12px; }
.timeline-item { display: grid; grid-template-columns: 90px 1fr; gap: 20px; align-items: start; }
.timeline-item .year { font-weight: 800; color: var(--red); font-size: 16px; }
.timeline-item .body { padding-inline-start: 18px; border-inline-start: 2px solid var(--gray-200); padding-bottom: 14px; }
.timeline-item .body h3 { margin-bottom: 4px; font-size: 16px; }
.timeline-item .body p { margin: 0; font-size: 14px; }

.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.team-card { text-align: center; background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: var(--radius-md); padding: 28px 20px; }
.team-avatar {
  width: 84px; height: 84px; margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 800;
}
.team-card h3 { margin-bottom: 2px; font-size: 16px; }
.team-card span { color: var(--red); font-size: 13px; font-weight: 700; }

/* ---------- Page header (inner pages) ---------- */
.page-header {
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  color: var(--white);
  padding: 70px 0 56px;
  text-align: center;
}
.page-header h1 { color: var(--white); margin-bottom: 10px; }
.breadcrumb { color: var(--gray-400); font-size: 13px; }
.breadcrumb a { color: var(--gold); font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy-dark); color: var(--gray-400); }
.footer-top { padding: 64px 0 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 36px; }
@media (max-width: 860px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { color: var(--gray-400); font-size: 14px; max-width: 320px; }
.footer-col h4 { color: var(--white); font-size: 14px; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14px; color: var(--gray-400); }
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 13px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
  color: var(--gray-400);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

/* ---------- WhatsApp float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  inset-inline-end: 24px;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  box-shadow: var(--shadow-lg);
  z-index: 90;
  transition: transform 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); }

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
[data-i18n], [data-i18n-placeholder] { }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

html[dir="rtl"] .hero-badge { inset-inline-start: auto; inset-inline-end: 18px; }
