/* ============================================
   ZAFIRA PARTNERS — Design System
   ============================================ */

:root {
  /* Colors — Navy corporate consultora */
  --navy-950: #0a1930;
  --navy-900: #0f2340;
  --navy-800: #142c4f;
  --navy-700: #1e3a63;
  --navy-600: #2b4d7a;
  --navy-500: #3d6191;
  --navy-100: #e6edf7;
  --navy-50:  #f4f7fc;

  --gold: #c9a76a;
  --gold-dark: #a8894f;
  --gold-light: #e5d3a8;

  --ink:   #0e1a2b;
  --ink-2: #3d4a5e;
  --ink-3: #6b7787;
  --line:  #e2e7ef;
  --line-2: #eef1f6;
  --bg:    #ffffff;
  --bg-2:  #f7f9fc;
  --bg-3:  #f0f4fa;

  --success: #1d7a52;
  --danger: #b3382c;

  /* Type */
  --sans: "Inter Tight", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --arabic: "Noto Sans Arabic", "IBM Plex Sans Arabic", sans-serif;

  /* Sizing */
  --container: 1240px;
  --gutter: 24px;
  --radius: 6px;
  --radius-lg: 14px;
  --shadow-sm: 0 1px 3px rgba(14,26,43,.06), 0 1px 2px rgba(14,26,43,.04);
  --shadow-md: 0 4px 12px rgba(14,26,43,.08), 0 2px 4px rgba(14,26,43,.04);
  --shadow-lg: 0 20px 40px rgba(14,26,43,.12), 0 8px 16px rgba(14,26,43,.06);
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--navy-950);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(40px, 5.4vw, 72px); font-weight: 300; letter-spacing: -0.02em; }
h2 { font-size: clamp(30px, 3.6vw, 46px); font-weight: 400; }
h3 { font-size: clamp(20px, 1.6vw, 24px); font-weight: 500; }
h4 { font-size: 18px; font-weight: 500; font-family: var(--sans); }
p  { margin: 0 0 1em; color: var(--ink-2); text-wrap: pretty; }
.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); }

.eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
@media (max-width: 720px) {
  .section { padding: 64px 0; }
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,.92);
  backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--line-2);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-950);
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--navy-950);
  color: var(--gold);
  border-radius: 3px;
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}
.brand small {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--ink-3);
  text-transform: uppercase;
  margin-top: -2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--navy-800);
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.nav-links a:hover { border-bottom-color: var(--gold); }
.nav-links a.active { border-bottom-color: var(--gold); }
.nav-right { display: flex; align-items: center; gap: 20px; }
.lang-switch {
  display: flex;
  gap: 2px;
  background: var(--bg-3);
  border-radius: 100px;
  padding: 3px;
}
.lang-switch button {
  border: 0;
  background: transparent;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--ink-3);
  border-radius: 100px;
  transition: all .2s;
}
.lang-switch button.active {
  background: var(--navy-950);
  color: #fff;
}
.nav-burger {
  display: none;
  border: 0; background: transparent;
  width: 40px; height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px; background: var(--navy-950);
}

@media (max-width: 900px) {
  .nav-links, .nav-right .btn-primary { display: none; }
  .nav-burger { display: flex; }
  .nav-inner { height: 64px; }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 3px;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.02em;
  border: 0;
  transition: all .2s ease;
  white-space: nowrap;
  text-decoration: none;
}
.btn-primary {
  background: var(--navy-950);
  color: #fff;
}
.btn-primary:hover { background: var(--navy-800); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn-gold {
  background: var(--gold);
  color: var(--navy-950);
}
.btn-gold:hover { background: var(--gold-dark); color: #fff; }
.btn-outline {
  background: transparent;
  color: var(--navy-950);
  border: 1px solid var(--navy-950);
}
.btn-outline:hover { background: var(--navy-950); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy-950);
  padding: 14px 0;
  border-bottom: 1px solid var(--navy-950);
  border-radius: 0;
}
.btn-ghost:hover { color: var(--gold-dark); border-bottom-color: var(--gold-dark); }
.btn-arrow::after { content: "→"; font-size: 16px; transition: transform .2s; }
.btn:hover .btn-arrow::after, .btn-arrow:hover::after { transform: translateX(4px); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  color: #fff;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero::before {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(10,25,48,.92) 0%, rgba(10,25,48,.75) 45%, rgba(10,25,48,.5) 100%),
    url("assets/hero-dubai-skyline.jpg") center/cover;
  z-index: 0;
}
.hero-inner { position: relative; z-index: 1; max-width: 780px; }
.hero .eyebrow { color: var(--gold-light); }
.hero .eyebrow::before { background: var(--gold-light); }
.hero h1 { color: #fff; margin: 24px 0 24px; }
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 300;
}
.hero .lead { color: rgba(255,255,255,.82); font-size: 20px; max-width: 620px; }
.hero-ctas { display: flex; gap: 14px; margin-top: 40px; flex-wrap: wrap; }
.hero-ctas .btn-ghost { color: #fff; border-color: rgba(255,255,255,.5); }
.hero-ctas .btn-ghost:hover { color: var(--gold-light); border-color: var(--gold-light); }

.hero-proofs {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-proofs span {
  font-size: 14px;
  color: rgba(255,255,255,.85);
  letter-spacing: 0.01em;
}
.hero-proofs span::first-letter { color: var(--gold); font-weight: 600; }

/* Reasons grid */
.reasons-bg { background: #fff; }
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.reason {
  padding: 44px 36px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
  transition: background .2s;
}
.reason:hover { background: var(--bg-2); }
.reason .num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.reason h4 {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--navy-950);
  margin-bottom: 14px;
  line-height: 1.2;
}
.reason p { font-size: 15px; margin: 0; color: var(--ink-2); }
@media (max-width: 900px) {
  .reasons-grid { grid-template-columns: 1fr; }
}

/* Differentiators */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px 40px;
}
.diff-item {
  padding-top: 24px;
  border-top: 2px solid var(--navy-950);
}
.diff-item h4 {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--navy-950);
  margin-bottom: 10px;
  line-height: 1.25;
}
.diff-item p { font-size: 14.5px; margin: 0; color: var(--ink-2); }
@media (max-width: 900px) {
  .diff-grid { grid-template-columns: 1fr; gap: 24px; }
}

.hero-meta {
  position: relative; z-index: 1;
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-meta .stat-num {
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.hero-meta .stat-label {
  font-size: 13px;
  color: rgba(255,255,255,.7);
  margin-top: 8px;
  letter-spacing: 0.02em;
}
@media (max-width: 720px) {
  .hero-meta { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .hero-meta .stat-num { font-size: 30px; }
}

/* ---------- Section head ---------- */
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head p { margin-top: 20px; font-size: 18px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* ---------- Services grid ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
}
.service-card {
  grid-column: span 6;
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 40px 36px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all .3s;
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  border-color: var(--navy-950);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
.service-card.wide { grid-column: span 12; }
.service-card.third { grid-column: span 4; }
.service-card .num {
  font-family: var(--serif);
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.1em;
}
.service-card h3 { font-size: 24px; }
.service-card .desc { color: var(--ink-2); font-size: 15px; margin: 0; }
.service-card ul {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  border-top: 1px solid var(--line-2);
  padding-top: 20px;
}
.service-card ul li {
  font-size: 14px;
  color: var(--ink-2);
  padding: 7px 0;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.service-card ul li::before {
  content: "";
  flex: none;
  width: 5px; height: 5px;
  background: var(--gold);
  margin-top: 9px;
  border-radius: 50%;
}
.service-card .card-cta {
  margin-top: auto;
  padding-top: 20px;
  color: var(--navy-950);
  font-weight: 500;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--navy-950);
  align-self: flex-start;
  padding-bottom: 4px;
  transition: gap .2s;
}
.service-card:hover .card-cta { gap: 14px; color: var(--gold-dark); border-color: var(--gold-dark); }
@media (max-width: 900px) {
  .service-card, .service-card.wide, .service-card.third { grid-column: span 12; }
  .service-card { padding: 32px 24px; }
}

/* ---------- Properties ---------- */
.properties {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.property-card {
  background: var(--bg);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .3s;
  cursor: pointer;
}
.property-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.property-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.property-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.property-card:hover .property-img img { transform: scale(1.05); }
.property-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: rgba(255,255,255,.95);
  color: var(--navy-950);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 100px;
  text-transform: uppercase;
}
.property-body { padding: 24px; }
.property-loc {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.property-title {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy-950);
  margin: 8px 0 16px;
  font-weight: 500;
}
.property-meta {
  display: flex;
  gap: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--line-2);
  font-size: 13px;
  color: var(--ink-2);
}
.property-price {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--navy-950);
  font-weight: 500;
  margin-top: 12px;
}
.property-price small { font-size: 12px; color: var(--ink-3); font-family: var(--sans); font-weight: 500; margin-left: 4px; }
@media (max-width: 900px) {
  .properties { grid-template-columns: 1fr; }
}

/* ---------- Process ---------- */
.process-bg { background: var(--navy-950); color: #fff; }
.process-bg h2 { color: #fff; }
.process-bg .eyebrow { color: var(--gold-light); }
.process-bg .eyebrow::before { background: var(--gold); }
.process-bg .section-head p { color: rgba(255,255,255,.7); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  counter-reset: step;
  border-top: 1px solid rgba(255,255,255,.15);
}
.process-step {
  padding: 40px 24px 0 0;
  border-right: 1px solid rgba(255,255,255,.1);
  counter-increment: step;
  position: relative;
}
.process-step:last-child { border-right: 0; }
.process-step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--serif);
  font-size: 44px;
  font-weight: 300;
  color: var(--gold);
  display: block;
  margin-bottom: 20px;
}
.process-step h4 {
  color: #fff; font-size: 20px; font-family: var(--serif); font-weight: 500;
  margin-bottom: 12px;
}
.process-step p { color: rgba(255,255,255,.65); font-size: 14.5px; }
@media (max-width: 900px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2n) { border-right: 0; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
  .process-step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.1); padding-bottom: 30px; }
}

/* ---------- Why UAE ---------- */
.why-uae { background: var(--bg-2); }
.why-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 40px;
}
.why-stat .num {
  font-family: var(--serif);
  font-size: 54px;
  font-weight: 300;
  color: var(--navy-950);
  line-height: 1;
  letter-spacing: -0.02em;
}
.why-stat .num small {
  font-size: 24px;
  color: var(--gold-dark);
  margin-left: 4px;
}
.why-stat .lbl {
  margin-top: 12px;
  font-size: 14px;
  color: var(--ink-2);
  line-height: 1.4;
}
.why-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-lg);
}
.why-image img { width: 100%; height: 100%; object-fit: cover; }
.why-image .badge {
  position: absolute;
  bottom: 28px; left: 28px;
  background: rgba(10,25,48,.92);
  backdrop-filter: blur(10px);
  color: #fff;
  padding: 20px 24px;
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
  max-width: 260px;
}
.why-image .badge b { display: block; font-family: var(--serif); font-size: 18px; font-weight: 500; margin-bottom: 4px; }
.why-image .badge span { font-size: 13px; color: rgba(255,255,255,.7); }
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-image { aspect-ratio: 4/3; }
}

/* ---------- Testimonials ---------- */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial {
  background: var(--bg);
  border: 1px solid var(--line);
  padding: 36px 32px;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.testimonial .quote-mark {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold);
  line-height: 0.6;
  height: 24px;
}
.testimonial .quote {
  font-family: var(--serif);
  font-size: 18px;
  line-height: 1.45;
  color: var(--navy-950);
  font-weight: 400;
  margin: 0;
}
.testimonial .author {
  display: flex; align-items: center; gap: 12px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid var(--line-2);
}
.testimonial .avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--navy-800);
  color: var(--gold-light);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 18px;
}
.testimonial .who { line-height: 1.3; }
.testimonial .who b { display: block; font-size: 14px; color: var(--navy-950); font-weight: 600; }
.testimonial .who span { font-size: 12.5px; color: var(--ink-3); }
@media (max-width: 900px) {
  .testimonials { grid-template-columns: 1fr; }
}

/* ---------- FAQ ---------- */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
}
.faq-list { border-top: 1px solid var(--line); }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 19px;
  color: var(--navy-950);
  font-weight: 500;
  line-height: 1.3;
  list-style: none;
  user-select: none;
}
.faq-q::-webkit-details-marker { display: none; }
.faq-q::after {
  content: "+";
  font-family: var(--sans);
  font-size: 24px;
  color: var(--gold-dark);
  font-weight: 300;
  flex: none;
  transition: transform .2s;
}
details[open] .faq-q::after { content: "−"; }
.faq-a {
  padding-top: 16px;
  color: var(--ink-2);
  font-size: 15.5px;
  line-height: 1.6;
  max-width: 640px;
}
@media (max-width: 900px) {
  .faq-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Contact ---------- */
.contact { background: var(--navy-950); color: #fff; }
.contact h2 { color: #fff; }
.contact .eyebrow { color: var(--gold-light); }
.contact .eyebrow::before { background: var(--gold); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}
.contact-info p { color: rgba(255,255,255,.75); font-size: 17px; }
.contact-methods { margin-top: 40px; display: flex; flex-direction: column; gap: 24px; }
.contact-method {
  display: flex; gap: 18px;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,.12);
}
.contact-method:last-child { border-bottom: 1px solid rgba(255,255,255,.12); }
.contact-method .icon {
  width: 40px; height: 40px;
  flex: none;
  display: grid; place-items: center;
  background: rgba(201,167,106,.15);
  color: var(--gold);
  border-radius: 50%;
  font-size: 18px;
}
.contact-method .label { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: 0.1em; text-transform: uppercase; }
.contact-method .value { display: block; font-size: 17px; color: #fff; margin-top: 4px; font-family: var(--serif); }
.contact-form {
  background: #fff;
  color: var(--ink);
  padding: 44px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field.full { grid-column: span 2; }
.form-field label {
  font-size: 12px;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 4px;
  font: inherit;
  font-size: 15px;
  color: var(--ink);
  background: var(--bg-2);
  transition: border .2s;
  outline: none;
  width: 100%;
  font-family: inherit;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  border-color: var(--navy-950);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 110px; }
.form-note { font-size: 12.5px; color: var(--ink-3); margin-top: 16px; }
.form-note a { color: var(--navy-800); text-decoration: underline; }
.form-actions { display: flex; align-items: center; gap: 20px; margin-top: 20px; flex-wrap: wrap; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-form { padding: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: span 1; }
}

/* ---------- Footer ---------- */
.footer {
  background: #060f1e;
  color: rgba(255,255,255,.6);
  padding: 60px 0 30px;
  font-size: 14px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer h5 {
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 20px;
  font-family: var(--sans);
  font-weight: 600;
}
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { margin-bottom: 10px; }
.footer ul a:hover { color: var(--gold-light); }
.footer .brand { color: #fff; }
.footer .brand small { color: rgba(255,255,255,.5); }
.footer-tag { color: rgba(255,255,255,.55); margin-top: 16px; max-width: 320px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  font-size: 12.5px;
  color: rgba(255,255,255,.4);
  flex-wrap: wrap;
  gap: 12px;
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Trust bar ---------- */
.trust-bar {
  padding: 40px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--bg-2);
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 48px;
  flex-wrap: wrap;
  justify-content: space-between;
}
.trust-label {
  font-size: 12px;
  color: var(--ink-3);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}
.trust-logos {
  display: flex; gap: 40px; flex-wrap: wrap; align-items: center;
}
.trust-logos span {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--navy-700);
  opacity: 0.7;
  font-weight: 400;
  letter-spacing: 0.02em;
}

/* ---------- Service page header ---------- */
.service-hero {
  padding: 100px 0 60px;
  background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--line);
}
.service-hero .crumb {
  font-size: 13px;
  color: var(--ink-3);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-hero .crumb a { color: var(--navy-700); }
.service-hero .crumb a:hover { color: var(--gold-dark); }
.service-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-hero h1 { font-size: clamp(36px, 4.4vw, 60px); margin: 20px 0; }
.service-hero .lead { font-size: 19px; margin-bottom: 32px; }
.service-hero-img {
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-hero-img img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .service-hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-hero-img { aspect-ratio: 4/3; }
}

/* ---------- Service page content ---------- */
.svc-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.svc-two-col.reverse .svc-image { order: 2; }
.svc-image {
  aspect-ratio: 4/3;
  border-radius: var(--radius);
  overflow: hidden;
}
.svc-image img { width: 100%; height: 100%; object-fit: cover; }
.svc-body h2 { margin-bottom: 20px; }
.svc-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 24px;
}
.svc-feature .check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--navy-50);
  color: var(--navy-800);
  margin-bottom: 12px;
  font-size: 14px;
}
.svc-feature h4 { font-size: 16px; color: var(--navy-950); margin-bottom: 6px; font-weight: 600; }
.svc-feature p { font-size: 14px; color: var(--ink-2); margin: 0; }
@media (max-width: 900px) {
  .svc-two-col { grid-template-columns: 1fr; gap: 40px; }
  .svc-two-col.reverse .svc-image { order: 0; }
  .svc-features { grid-template-columns: 1fr; }
}

.svc-list-block { background: var(--bg-2); padding: 60px 0; }
.svc-list-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.svc-list-item {
  background: #fff;
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.svc-list-item .num {
  font-family: var(--serif);
  color: var(--gold-dark);
  font-size: 14px;
  margin-bottom: 12px;
  display: block;
  letter-spacing: 0.08em;
}
.svc-list-item h4 { font-size: 17px; margin-bottom: 8px; color: var(--navy-950); font-family: var(--serif); font-weight: 500; }
.svc-list-item p { font-size: 14px; margin: 0; }
@media (max-width: 900px) {
  .svc-list-grid { grid-template-columns: 1fr; }
}

/* CTA banner */
.cta-banner {
  background: var(--navy-950);
  color: #fff;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute; inset: 0;
  background: url("assets/dubai-marina-water.jpg") center/cover;
  opacity: 0.18;
}
.cta-banner .container { position: relative; }
.cta-inner {
  display: grid;
  grid-template-columns: 1.5fr auto;
  gap: 40px;
  align-items: center;
}
.cta-inner h2 { color: #fff; max-width: 620px; }
.cta-inner p { color: rgba(255,255,255,.72); font-size: 17px; max-width: 560px; margin-top: 12px; }
.cta-inner .btn-gold { padding: 18px 32px; font-size: 15px; }
@media (max-width: 720px) {
  .cta-inner { grid-template-columns: 1fr; }
}

/* RTL adjustments */
body[dir="rtl"] .eyebrow::before { display: none; }
body[dir="rtl"] .eyebrow::after {
  content: "";
  width: 24px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
  margin-right: 10px;
}
body[dir="rtl"] .btn-arrow::after { content: "←"; }
body[dir="rtl"] .service-card ul li::before { margin-left: 0; margin-right: 0; }
