/* ═══════════════════════════════════════════════════════
   ESTSSMAR — القطاع السياحي
   الإلهام السياحي — Warm Cream × Teal × Gold
   ═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800;900&display=swap');

:root {
  /* ── Brand Teal ── */
  --teal:          #5CC7D1;
  --teal-dark:     #1E8A96;
  --teal-deep:     #126170;
  --teal-pale:     rgba(92, 199, 209, 0.10);
  --teal-border:   rgba(92, 199, 209, 0.28);

  /* ── Warm Gold ── */
  --gold:          #D4A853;
  --gold-light:    #E8C472;
  --gold-pale:     rgba(212, 168, 83, 0.10);
  --gold-border:   rgba(212, 168, 83, 0.28);

  /* ── Navy / Dark ── */
  --navy:          #0F1B2D;
  --navy-mid:      #162338;
  --navy-light:    #1E3455;

  /* ── Warm Neutrals ── */
  --cream:         #FFF8F0;
  --sand:          #F5EDD6;
  --sand-dark:     #EDE0C4;
  --warm-50:       #FDFAF6;
  --warm-100:      #F5EDD6;
  --warm-200:      #EDE0C4;

  /* ── Text ── */
  --text:          #1E293B;
  --text-mid:      #334155;
  --muted:         #64748B;
  --muted-light:   #94A3B8;

  /* ── WhatsApp ── */
  --wa:            #25D366;
  --wa-dark:       #1EBE5D;

  /* ── Typography ── */
  --font:          'Tajawal', 'Segoe UI', sans-serif;

  /* ── Spacing ── */
  --radius:        20px;
  --radius-sm:     12px;
  --radius-lg:     28px;
  --radius-full:   50px;

  /* ── Shadows ── */
  --shadow:        0 4px 24px rgba(15, 27, 45, 0.08);
  --shadow-md:     0 8px 40px rgba(15, 27, 45, 0.12);
  --shadow-lg:     0 16px 64px rgba(15, 27, 45, 0.16);
  --shadow-teal:   0 8px 32px rgba(92, 199, 209, 0.25);
  --shadow-gold:   0 8px 32px rgba(212, 168, 83, 0.25);

  /* ── Transitions ── */
  --transition:    all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { direction: rtl; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1, h2, h3, h4 { line-height: 1.25; color: var(--navy); font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; }
h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
h3 { font-size: clamp(1.05rem, 2vw, 1.3rem); }
p  { margin-bottom: 1rem; color: var(--muted); }
a  { color: var(--teal-dark); text-decoration: none; transition: var(--transition); }
ul, ol { padding-right: 1.5rem; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; font-family: var(--font); border: none; }
.container { max-width: 1260px; margin: 0 auto; padding: 0 1.75rem; }
section { padding: 5.5rem 0; }

/* ══════════════════════════════════════════════════════
   HEADER
══════════════════════════════════════════════════════ */
.site-header {
  background: rgba(255, 248, 240, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 500;
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  box-shadow: 0 2px 20px rgba(15, 27, 45, 0.06);
}
.header-inner {
  max-width: 1260px; margin: 0 auto;
  padding: 0 1.75rem;
  display: flex; align-items: center;
  justify-content: space-between;
  min-height: 70px; gap: 1rem;
}

/* Logo */
.logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-icon {
  width: 44px; height: 44px; border-radius: 14px;
  background: transparent;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.logo-icon img { width: 44px; height: 44px; object-fit: contain; }
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-main { font-size: 1.1rem; font-weight: 800; color: var(--text); }
.logo-main .sep { color: rgba(30, 138, 150, 0.4); font-weight: 300; margin: 0 0.2rem; }
.logo-main .sector { color: var(--teal-dark); }
.logo-sub { font-size: 0.6rem; color: var(--muted-light); letter-spacing: 0.05em; margin-top: 2px; }

/* Nav */
.main-nav { display: flex; align-items: center; gap: 0.1rem; }
.main-nav a {
  color: var(--muted);
  font-size: 0.82rem; font-weight: 500;
  padding: 0.42rem 0.72rem; border-radius: 8px;
  white-space: nowrap; transition: var(--transition);
}
.main-nav a:hover, .main-nav a.active {
  color: var(--teal-dark);
  background: var(--teal-pale);
}
.nav-cta {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal) !important; color: #fff !important;
  font-weight: 700 !important; padding: 0.48rem 1.2rem !important;
  border-radius: var(--radius-full) !important;
  box-shadow: 0 4px 14px rgba(92, 199, 209, 0.35);
  margin-right: 0.4rem;
}
.nav-cta:hover { background: var(--teal-dark) !important; transform: translateY(-1px); }
.nav-wa {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--wa) !important; color: #fff !important;
  font-weight: 700 !important; padding: 0.48rem 1.2rem !important;
  border-radius: var(--radius-full) !important;
}
.nav-wa:hover { background: var(--wa-dark) !important; transform: translateY(-1px); }
.nav-wa svg { width: 15px; height: 15px; fill: currentColor; }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 6px; border-radius: 8px;
}
.hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text); border-radius: 2px;
  transition: var(--transition);
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 94vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 18, 30, 0.93) 0%,
    rgba(10, 18, 30, 0.5)  40%,
    rgba(10, 18, 30, 0.18) 100%
  );
}
.hero-content {
  position: relative; z-index: 1;
  width: 100%; max-width: 1260px;
  margin: 0 auto; padding: 0 1.75rem 4.5rem;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 3rem; align-items: flex-end;
}

/* Tag pill */
.tag-pill {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: rgba(92, 199, 209, 0.15);
  border: 1px solid rgba(92, 199, 209, 0.4);
  color: var(--teal);
  font-size: 0.78rem; font-weight: 700;
  padding: 0.42rem 1.15rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem; letter-spacing: 0.06em;
}
.tag-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--teal);
  animation: tag-blink 2s infinite;
}
@keyframes tag-blink {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.3; transform: scale(0.6); }
}

.hero h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 900; line-height: 1.12;
  margin-bottom: 1.5rem;
}
.hero h1 em { color: var(--teal); font-style: normal; display: block; }
.hero h1 .gold { color: var(--gold); }
.hero-desc {
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.05rem; line-height: 1.9;
  max-width: 540px; margin-bottom: 2.5rem;
}
.hero-desc a { color: var(--teal); }

/* Hero buttons */
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 0; }
.btn-wa-hero {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: var(--wa); color: #fff;
  font-weight: 800; font-size: 1rem;
  padding: 0.92rem 2.2rem; border-radius: var(--radius-full);
  box-shadow: 0 6px 28px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-wa-hero:hover { background: var(--wa-dark); transform: translateY(-3px); box-shadow: 0 10px 36px rgba(37,211,102,0.5); }
.btn-wa-hero svg { width: 20px; height: 20px; fill: currentColor; flex-shrink: 0; }

.btn-ghost-hero {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.97rem; font-weight: 600;
  padding: 0.92rem 2rem; border-radius: var(--radius-full);
  backdrop-filter: blur(4px);
  transition: var(--transition); text-decoration: none;
}
.btn-ghost-hero:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); color: #fff; }

/* Glass stats card */
.hero-glass {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 26px; padding: 2rem;
}
.hero-glass-label {
  font-size: 0.7rem; color: rgba(255, 255, 255, 0.45);
  letter-spacing: 0.1em; text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.stats-vertical { display: flex; flex-direction: column; gap: 0.85rem; }
.stat-row {
  display: flex; align-items: center; gap: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
}
.stat-icon {
  width: 42px; height: 42px; border-radius: 11px;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.stat-icon svg { width: 20px; height: 20px; fill: #fff; }
.stat-icon.gold-bg { background: linear-gradient(135deg, var(--gold), #A87A30); }
.stat-info strong {
  display: block; font-size: 1.35rem; font-weight: 800;
  color: #fff; line-height: 1;
}
.stat-info span { font-size: 0.74rem; color: rgba(255,255,255,0.5); margin-top: 3px; display: block; }

/* Hero wave */
.hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 70px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 70' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,45 C240,80 480,10 720,45 C960,80 1200,10 1440,45 L1440,70 L0,70 Z' fill='%23FFF8F0'/%3E%3C/svg%3E") center bottom / cover no-repeat;
  z-index: 2;
}

/* ══════════════════════════════════════════════════════
   TRUST BAR
══════════════════════════════════════════════════════ */
.trust-bar { background: var(--teal-dark); padding: 1.1rem 0; }
.trust-items {
  display: flex; align-items: center;
  justify-content: center; gap: 2.5rem; flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.88); font-size: 0.84rem; font-weight: 600;
}
.trust-item svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); flex-shrink: 0; }
.trust-item strong { color: #fff; }

/* ══════════════════════════════════════════════════════
   SECTION HEADERS
══════════════════════════════════════════════════════ */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-label {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em; text-transform: uppercase;
}
.sec-label-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--teal); }
.sec-header h2 { margin-bottom: 0.65rem; }
.sec-header p { color: var(--muted); max-width: 540px; margin: 0 auto; font-size: 0.97rem; }
.divider {
  width: 56px; height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--gold));
  border-radius: 2px; margin: 0.85rem auto 1.25rem;
}

/* ══════════════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.82rem 1.9rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.95rem;
  transition: var(--transition); text-decoration: none;
  border: 2px solid transparent; cursor: pointer; line-height: 1;
}
.btn svg { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }

.btn-teal { background: var(--teal); color: #fff; border-color: var(--teal); }
.btn-teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); color: #fff; transform: translateY(-2px); box-shadow: var(--shadow-teal); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-gold); }

.btn-navy { background: var(--navy); color: #fff; border-color: var(--navy); }
.btn-navy:hover { background: var(--navy-mid); color: #fff; transform: translateY(-2px); }

.btn-wa { background: var(--wa); color: #fff; border-color: var(--wa); }
.btn-wa:hover { background: var(--wa-dark); border-color: var(--wa-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.4); }

.btn-outline-teal { border-color: var(--teal); color: var(--teal-dark); background: transparent; }
.btn-outline-teal:hover { background: var(--teal-pale); }

.btn-outline-gold { border-color: var(--gold-border); color: var(--gold); background: transparent; }
.btn-outline-gold:hover { background: var(--gold-pale); border-color: var(--gold); }

.btn-lg { padding: 1rem 2.5rem; font-size: 1.05rem; }

/* ══════════════════════════════════════════════════════
   ABOUT / INTRO SPLIT
══════════════════════════════════════════════════════ */
.about-section { background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.about-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-pale); border: 1px solid var(--teal-border);
  color: var(--teal-dark);
  font-size: 0.75rem; font-weight: 700;
  padding: 0.35rem 1rem; border-radius: var(--radius-full);
  margin-bottom: 1.2rem; letter-spacing: 0.06em;
}
.about-text h2 { margin-bottom: 1rem; }
.about-text h2 span { color: var(--teal-dark); }
.about-text p { margin-bottom: 1.2rem; line-height: 1.9; }
.check-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: 2rem; }
.check-list li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.94rem; color: var(--text-mid);
}
.check-list li::before {
  content: '';
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0; margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E");
  background-size: 14px; background-repeat: no-repeat; background-position: center;
}

/* Photo frame */
.about-visual { position: relative; }
.about-photo {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.about-float {
  position: absolute; bottom: -20px; right: -24px;
  background: #fff; border-radius: var(--radius);
  padding: 1.25rem 1.6rem;
  box-shadow: var(--shadow-md);
  min-width: 190px;
}
.about-float strong {
  display: block; font-size: 2rem; font-weight: 900;
  color: var(--teal-dark); line-height: 1;
}
.about-float span {
  font-size: 0.8rem; color: var(--muted);
  margin-top: 5px; display: block; line-height: 1.4;
}
.about-float-2 {
  position: absolute; top: -20px; left: -24px;
  background: linear-gradient(135deg, var(--gold), #A07A28);
  border-radius: var(--radius);
  padding: 1.25rem 1.6rem;
  box-shadow: var(--shadow-gold);
  color: #fff; min-width: 170px;
}
.about-float-2 strong { display: block; font-size: 1.9rem; font-weight: 900; line-height: 1; color: #fff; }
.about-float-2 span { font-size: 0.78rem; color: rgba(255,255,255,0.85); margin-top: 5px; display: block; }

/* ══════════════════════════════════════════════════════
   SERVICE / PHOTO CARDS
══════════════════════════════════════════════════════ */
.services-section { background: var(--sand); }

.cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }

.photo-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1.5px solid transparent;
  transition: var(--transition); cursor: pointer;
}
.photo-card:hover {
  transform: translateY(-9px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-border);
}
.photo-card-img {
  width: 100%; height: 210px; object-fit: cover;
  transition: transform 0.5s ease;
}
.photo-card:hover .photo-card-img { transform: scale(1.06); }
.photo-card-body { padding: 1.6rem; }
.photo-card-chip {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal-pale); color: var(--teal-dark);
  font-size: 0.71rem; font-weight: 700;
  padding: 0.28rem 0.75rem; border-radius: var(--radius-full);
  margin-bottom: 0.9rem; letter-spacing: 0.05em;
}
.photo-card-chip-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--teal); }
.photo-card h3 { color: var(--navy); font-size: 1.08rem; margin-bottom: 0.5rem; }
.photo-card p { color: var(--muted); font-size: 0.87rem; line-height: 1.75; margin: 0; }
.photo-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 1.25rem; padding-top: 1rem;
  border-top: 1px solid var(--sand);
}
.photo-card-footer span { font-size: 0.78rem; color: var(--muted-light); }
.photo-card-link {
  display: inline-flex; align-items: center; gap: 0.3rem;
  color: var(--teal-dark); font-size: 0.83rem; font-weight: 700;
  text-decoration: none;
}
.photo-card-link svg { width: 15px; height: 15px; fill: currentColor; transform: rotate(180deg); }
.photo-card-link:hover { color: var(--teal); }

/* Wide card (for sectors page) */
.wide-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.75rem; }
.wide-card {
  background: #fff; border-radius: var(--radius);
  overflow: hidden; display: grid; grid-template-columns: 240px 1fr;
  box-shadow: var(--shadow); border: 1.5px solid transparent;
  transition: var(--transition); cursor: pointer;
}
.wide-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-border); }
.wide-card-img { height: 100%; min-height: 200px; object-fit: cover; }
.wide-card-body { padding: 1.75rem; display: flex; flex-direction: column; justify-content: center; }
.wide-card-body h3 { color: var(--navy); margin-bottom: 0.5rem; }
.wide-card-body p { color: var(--muted); font-size: 0.88rem; line-height: 1.75; margin: 0 0 1rem; }

/* ══════════════════════════════════════════════════════
   WHY STUDY SECTION
══════════════════════════════════════════════════════ */
.why-section { background: var(--cream); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }

.highlight-box {
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  border-radius: var(--radius); padding: 2.25rem;
}
.highlight-box h3 { color: var(--teal-deep); font-weight: 800; margin-bottom: 0.75rem; }
.highlight-box p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.85; margin: 0; }

.vision-box {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius); padding: 1.75rem;
  margin-top: 1.25rem;
}
.vision-box p { color: var(--text-mid); font-size: 0.9rem; line-height: 1.85; margin: 0; }
.vision-box strong { color: var(--gold); }

/* ══════════════════════════════════════════════════════
   PROCESS STEPS
══════════════════════════════════════════════════════ */
.process-section { background: var(--sand); }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step {
  display: grid; grid-template-columns: 72px 1fr;
  gap: 1.5rem; padding: 1.5rem 0; position: relative;
}
.step:not(:last-child)::after {
  content: '';
  position: absolute; right: 35px; top: 73px;
  width: 2px; height: calc(100% - 50px);
  background: linear-gradient(180deg, var(--teal), var(--teal-border));
}
.step-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; z-index: 1;
  box-shadow: var(--shadow-teal);
}
.step-num span { font-size: 1.4rem; font-weight: 800; color: #fff; }
.step-content { padding-top: 1rem; }
.step-content h3 { color: var(--navy); margin-bottom: 0.4rem; }
.step-content p { font-size: 0.9rem; color: var(--muted); margin: 0; }

/* ══════════════════════════════════════════════════════
   NUMBERS / STATS SECTION
══════════════════════════════════════════════════════ */
.numbers-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 50%, #0A1F30 100%);
  position: relative; overflow: hidden;
}
.numbers-section::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(92,199,209,0.1) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 30%, rgba(212,168,83,0.07) 0%, transparent 50%);
}
.numbers-grid {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid rgba(92,199,209,0.15);
  border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(4px);
}
.num-item {
  padding: 3rem 2rem; text-align: center;
  border-left: 1px solid rgba(92,199,209,0.1);
  transition: var(--transition);
}
.num-item:last-child { border-left: none; }
.num-item:hover { background: rgba(92,199,209,0.05); }
.num-val {
  display: block; font-size: clamp(2.2rem, 4vw, 3rem);
  font-weight: 900; color: var(--teal); line-height: 1;
  margin-bottom: 0.5rem;
}
.num-val.gold { color: var(--gold); }
.num-label { font-size: 0.88rem; color: rgba(255,255,255,0.55); line-height: 1.4; }

/* ══════════════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════════════ */
.faq-section { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0.65rem; }
.faq-item {
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-sm);
  overflow: hidden; background: #fff;
  transition: var(--transition);
}
.faq-item:hover { border-color: var(--teal-border); box-shadow: var(--shadow); }
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.15rem 1.4rem; background: none;
  text-align: right; font-size: 0.97rem; font-weight: 600;
  color: var(--navy); cursor: pointer; gap: 0.75rem;
  font-family: var(--font); transition: var(--transition); border: none;
}
.faq-q:hover { background: var(--teal-pale); }
.faq-q.open { background: linear-gradient(135deg, var(--navy), var(--navy-mid)); color: #fff; }
.faq-icon { font-size: 1.2rem; flex-shrink: 0; transition: transform 0.25s; color: var(--teal-dark); }
.faq-q.open .faq-icon { transform: rotate(45deg); color: var(--teal); }
.faq-a {
  display: none; padding: 1.2rem 1.4rem;
  font-size: 0.93rem; color: var(--muted);
  border-top: 1px solid var(--warm-200); line-height: 1.85;
}
.faq-a.open { display: block; }
.faq-a a { color: var(--teal-dark); font-weight: 600; }

/* ══════════════════════════════════════════════════════
   CTA BANNER
══════════════════════════════════════════════════════ */
.cta-section {
  position: relative; overflow: hidden;
  padding: 7rem 0;
  text-align: center;
}
.cta-bg-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.28);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.6) 0%, rgba(30,138,150,0.3) 100%);
}
.cta-content {
  position: relative; z-index: 1;
  max-width: 700px; margin: 0 auto; padding: 0 1.75rem;
}
.cta-chip {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(92,199,209,0.15);
  border: 1px solid rgba(92,199,209,0.35);
  color: var(--teal); font-size: 0.78rem; font-weight: 700;
  padding: 0.42rem 1.1rem; border-radius: var(--radius-full);
  margin-bottom: 1.5rem; letter-spacing: 0.06em;
}
.cta-content h2 { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); line-height: 1.25; margin-bottom: 1rem; }
.cta-content h2 em { color: var(--teal); font-style: normal; }
.cta-content p { color: rgba(255,255,255,0.65); font-size: 1rem; line-height: 1.85; margin-bottom: 2.5rem; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ══════════════════════════════════════════════════════
   PARENT SITE BANNER
══════════════════════════════════════════════════════ */
.parent-banner-section { background: var(--sand); padding: 2.5rem 0; }
.parent-banner {
  background: var(--gold-pale);
  border: 1px solid var(--gold-border);
  border-radius: var(--radius);
  padding: 1.4rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; flex-wrap: wrap;
}
.parent-banner p { margin: 0; color: var(--text-mid); font-size: 0.93rem; }
.parent-banner strong { color: var(--navy); }
.parent-banner a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: var(--navy); color: #fff;
  font-size: 0.85rem; font-weight: 700;
  padding: 0.55rem 1.3rem; border-radius: 10px;
  transition: var(--transition); white-space: nowrap;
  text-decoration: none;
}
.parent-banner a:hover { background: var(--navy-mid); transform: translateY(-2px); color: #fff; }
.parent-banner a svg { width: 14px; height: 14px; fill: currentColor; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--navy);
  color: rgba(255,255,255,0.65);
  padding: 4.5rem 0 1.75rem;
  border-top: 1px solid rgba(92,199,209,0.14);
}
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 2.5rem; margin-bottom: 3.5rem; }
.footer-brand-desc { font-size: 0.86rem; line-height: 1.85; color: rgba(255,255,255,0.5); margin-top: 1rem; margin-bottom: 1rem; }
.footer-brand-link {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--teal-pale); border: 1px solid var(--teal-border);
  color: var(--teal); font-size: 0.8rem; font-weight: 700;
  padding: 0.45rem 1rem; border-radius: 8px;
  transition: var(--transition); text-decoration: none;
}
.footer-brand-link:hover { background: var(--teal); color: var(--navy); }
.footer-col h4 {
  color: var(--teal);
  font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 1.15rem;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  color: rgba(255,255,255,0.55); font-size: 0.85rem;
  transition: var(--transition); text-decoration: none; display: block;
}
.footer-col ul li a:hover { color: var(--teal); padding-right: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; flex-wrap: wrap; gap: 0.5rem;
  color: rgba(255,255,255,0.35);
}
.footer-bottom a { color: var(--teal); }
.footer-badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--teal-pale); border: 1px solid var(--teal-border);
  color: var(--teal); font-size: 0.72rem; font-weight: 600;
  padding: 0.35rem 0.9rem; border-radius: 5px;
}
.footer-badge svg { width: 13px; height: 13px; fill: var(--teal); }

/* ══════════════════════════════════════════════════════
   WHATSAPP FLOAT
══════════════════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 1.75rem; left: 1.75rem; z-index: 900;
  display: flex; align-items: center; gap: 0.55rem;
  background: var(--wa); color: #fff;
  padding: 0.85rem 1.4rem; border-radius: var(--radius-full);
  font-weight: 700; font-size: 0.9rem;
  box-shadow: 0 4px 24px rgba(37,211,102,0.5);
  text-decoration: none; transition: var(--transition);
  animation: wa-pulse 3s infinite;
}
.wa-float:hover { background: var(--wa-dark); color: #fff; transform: scale(1.05); }
.wa-float svg { width: 20px; height: 20px; fill: currentColor; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 24px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.75), 0 0 0 10px rgba(37,211,102,0.08); }
}

/* ══════════════════════════════════════════════════════
   PAGE HERO (inner pages)
══════════════════════════════════════════════════════ */
.page-hero {
  position: relative; overflow: hidden;
  padding: 5rem 1.75rem 6rem;
  text-align: center;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.28);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,27,45,0.7) 0%, rgba(30,138,150,0.25) 100%);
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero-content h1 { color: #fff; margin-bottom: 0.75rem; }
.page-hero-content p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 0 auto; font-size: 1.02rem; }
.page-hero-wave {
  position: absolute; bottom: -1px; left: 0; right: 0; height: 55px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 55' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0,35 C360,60 1080,10 1440,35 L1440,55 L0,55 Z' fill='%23FFF8F0'/%3E%3C/svg%3E") center bottom / cover no-repeat;
}

/* Breadcrumb */
.breadcrumb { background: var(--sand); padding: 0.6rem 0; border-bottom: 1px solid var(--warm-200); }
.breadcrumb-list {
  display: flex; align-items: center; gap: 0.5rem;
  list-style: none; padding: 0; margin: 0; font-size: 0.82rem;
}
.breadcrumb-list li { display: flex; align-items: center; gap: 0.5rem; }
.breadcrumb-list li:not(:last-child)::after { content: '/'; color: var(--muted-light); }
.breadcrumb-list a { color: var(--text-mid); font-weight: 500; text-decoration: none; }
.breadcrumb-list a:hover { color: var(--teal-dark); }
.breadcrumb-list .current { color: var(--muted); }

/* ══════════════════════════════════════════════════════
   PROJECT / PORTFOLIO CARDS
══════════════════════════════════════════════════════ */
.project-card {
  background: #fff; border-radius: var(--radius);
  border: 1.5px solid var(--warm-200); overflow: hidden;
  box-shadow: var(--shadow); transition: var(--transition);
}
.project-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--teal-border); }
.project-card-header {
  background: linear-gradient(135deg, var(--navy), var(--navy-mid));
  padding: 1.5rem; position: relative; overflow: hidden;
}
.project-card-header::before {
  content: ''; position: absolute; top: -20px; left: -20px;
  width: 90px; height: 90px; border-radius: 50%;
  background: rgba(92,199,209,0.1);
}
.project-type {
  display: inline-block;
  background: rgba(212,168,83,0.2); border: 1px solid rgba(212,168,83,0.35);
  color: var(--gold); font-size: 0.7rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 5px;
  margin-bottom: 0.75rem; letter-spacing: 0.05em;
}
.project-title { color: #fff; font-size: 1.02rem; font-weight: 700; line-height: 1.4; }
.project-body { padding: 1.25rem 1.4rem 1.4rem; }
.project-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 0.55rem; margin-top: 0.6rem; }
.spec {
  background: var(--warm-50); border: 1px solid var(--warm-200);
  border-radius: 8px; padding: 0.45rem 0.65rem;
}
.spec-label { font-size: 0.67rem; color: var(--muted-light); font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.spec-val { font-size: 0.82rem; color: var(--navy); font-weight: 700; }
.spec.highlight { background: var(--teal-pale); border-color: var(--teal-border); }
.spec.highlight .spec-val { color: var(--teal-dark); }

/* ══════════════════════════════════════════════════════
   REQUEST FORM
══════════════════════════════════════════════════════ */
.form-section { background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: start; }
.form-card {
  background: #fff; border-radius: var(--radius-lg);
  padding: 2.5rem; box-shadow: var(--shadow-md);
  border: 1.5px solid var(--warm-200);
}
.form-title { font-size: 1.25rem; font-weight: 800; color: var(--navy); margin-bottom: 0.4rem; }
.form-subtitle { font-size: 0.88rem; color: var(--muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block; font-size: 0.85rem; font-weight: 600; color: var(--text-mid);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--teal-dark); margin-right: 2px; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.82rem 1.1rem;
  border: 1.5px solid var(--warm-200);
  border-radius: var(--radius-sm); background: var(--warm-50);
  font-family: var(--font); font-size: 0.93rem; color: var(--text);
  transition: var(--transition); outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--teal); background: #fff;
  box-shadow: 0 0 0 3px rgba(92,199,209,0.12);
}
.form-textarea { min-height: 130px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit {
  width: 100%; padding: 1rem; border-radius: var(--radius-full);
  background: var(--teal); color: #fff; font-family: var(--font);
  font-size: 1rem; font-weight: 800; cursor: pointer;
  border: none; transition: var(--transition);
  box-shadow: var(--shadow-teal);
}
.form-submit:hover { background: var(--teal-dark); transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   UTILITIES
══════════════════════════════════════════════════════ */
.section-light { background: var(--cream); }
.section-warm  { background: var(--sand); }
.section-dark  { background: var(--navy); }
.text-teal  { color: var(--teal-dark); }
.text-gold  { color: var(--gold); }
.text-navy  { color: var(--navy); }
.text-muted { color: var(--muted); }
.font-bold  { font-weight: 800; }
.mt-1 { margin-top: 0.5rem; }  .mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }  .mt-4 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; } .mb-4 { margin-bottom: 2rem; }

/* Tags */
.tag {
  display: inline-block;
  background: var(--teal-pale); border: 1px solid var(--teal-border);
  color: var(--teal-dark); font-size: 0.74rem; font-weight: 700;
  padding: 0.25rem 0.75rem; border-radius: 5px;
}
.tag.gold { background: var(--gold-pale); border-color: var(--gold-border); color: var(--gold); }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-glass { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  section { padding: 4rem 0; }
  .cards-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .why-grid { grid-template-columns: 1fr; }
  .faq-layout { grid-template-columns: 1fr; }
  .wide-card-grid { grid-template-columns: 1fr; }
  .wide-card { grid-template-columns: 1fr; }
  .wide-card-img { height: 200px; width: 100%; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 80vh; }
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
  .main-nav {
    display: none; flex-direction: column;
    position: absolute; top: 100%; right: 0; left: 0;
    background: rgba(255,248,240,0.98); backdrop-filter: blur(16px);
    padding: 1rem; gap: 0.15rem;
    border-top: 1px solid var(--warm-200);
    box-shadow: 0 8px 32px rgba(15,27,45,0.1);
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 0.7rem 1rem; width: 100%; border-radius: 10px; }
  .site-header { position: relative; }
  .hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .wa-float { left: 1rem; bottom: 1rem; padding: 0.75rem 1.1rem; font-size: 0.85rem; }
  .trust-items { gap: 1.25rem; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .parent-banner { flex-direction: column; text-align: center; }
  .cta-btns { flex-direction: column; align-items: center; }
}
@media (max-width: 480px) {
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .project-specs { grid-template-columns: 1fr; }
  .hero-btns a { width: 100%; justify-content: center; }
}

/* ══ WIDE CARDS (Services) ══ */
.wide-card-grid { display: flex; flex-direction: column; gap: 2rem; }
.wide-card {
  display: grid;
  grid-template-columns: 60px 1fr 280px;
  gap: 0 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  align-items: start;
  transition: box-shadow .3s;
  border: 1px solid rgba(92,199,209,.1);
}
.wide-card:hover { box-shadow: var(--shadow-teal); }
.wide-card-icon {
  width: 54px; height: 54px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.wide-card-icon svg { width: 26px; height: 26px; fill: var(--teal-dark); }
.wide-card-icon.gold-bg { background: var(--gold-pale); }
.wide-card-icon.gold-bg svg { fill: var(--gold); }
.wide-card-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.wide-card-body p { color: var(--muted); font-size: .95rem; line-height: 1.7; margin-bottom: 1rem; }
.wide-card-img { width: 100%; height: 180px; object-fit: cover; border-radius: var(--radius-sm); }
@media (max-width: 900px) {
  .wide-card { grid-template-columns: 1fr; }
  .wide-card-img { order: -1; }
}

/* ══ MINI SERVICE CARDS ══ */
.mini-service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(92,199,209,.1);
  transition: box-shadow .3s;
}
.mini-service-card:hover { box-shadow: var(--shadow-teal); }
.mini-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.mini-icon svg { width: 24px; height: 24px; fill: var(--teal-dark); }
.mini-icon.gold-bg { background: var(--gold-pale); }
.mini-icon.gold-bg svg { fill: var(--gold); }
.mini-service-card h4 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.mini-service-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }

/* ══ CHECK LIST SM ══ */
.check-list-sm { list-style: none; padding: 0; margin: .75rem 0 1.25rem; display: flex; flex-direction: column; gap: .4rem; }
.check-list-sm li { display: flex; align-items: flex-start; gap: .5rem; color: var(--text-mid); font-size: .9rem; }
.check-list-sm li::before { content: '✓'; color: var(--teal-dark); font-weight: 800; flex-shrink: 0; }

/* ══ WHY SECTION ══ */
.why-section { padding: 5rem 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3.5rem; align-items: start; }
.highlight-box { background: var(--teal-pale); border: 1px solid var(--teal-border); border-radius: var(--radius); padding: 1.5rem; margin-bottom: 1.25rem; }
.highlight-box h3 { color: var(--teal-deep); font-size: 1.05rem; font-weight: 800; margin-bottom: .25rem; }
.vision-box { background: var(--gold-pale); border: 1px solid var(--gold-border); border-radius: var(--radius); padding: 1.25rem 1.5rem; font-size: .9rem; color: var(--text-mid); line-height: 1.7; }
.vision-box strong { color: var(--gold); }
.mt-2 { margin-top: .75rem; }
.mt-3 { margin-top: 1.25rem; }
.mt-4 { margin-top: 1.75rem; }
.text-teal { color: var(--teal-dark); }
@media (max-width: 900px) { .why-grid { grid-template-columns: 1fr; } }

/* ══ ABOUT SECTION ══ */
.about-section { padding: 5rem 0; background: var(--cream); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-badge {
  display: inline-block;
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  color: var(--teal-dark);
  font-size: .85rem;
  font-weight: 700;
  padding: .35rem .9rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.about-text h2 { font-size: 2rem; font-weight: 900; color: var(--text); line-height: 1.3; margin-bottom: 1rem; }
.about-text h2 span { color: var(--teal-dark); }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 1rem; }
.about-visual { position: relative; }
.about-photo { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-teal); display: block; }
.about-float, .about-float-2 {
  position: absolute;
  background: #fff;
  border-radius: var(--radius-sm);
  padding: .75rem 1.1rem;
  box-shadow: 0 8px 28px rgba(15,27,45,.12);
  display: flex; flex-direction: column;
  min-width: 150px;
}
.about-float { bottom: -1.5rem; left: -1.5rem; }
.about-float-2 { top: -1.5rem; right: -1.5rem; }
.about-float strong, .about-float-2 strong { font-size: 1.4rem; font-weight: 900; color: var(--teal-dark); }
.about-float span, .about-float-2 span { font-size: .78rem; color: var(--muted); margin-top: .1rem; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } .about-float, .about-float-2 { display: none; } }

/* ══ PAGE HERO (inner pages) ══ */
.page-hero { position: relative; min-height: 380px; display: flex; align-items: flex-end; padding-bottom: 3.5rem; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(15,27,45,.85) 0%, rgba(18,97,112,.7) 100%); }
.page-hero-content { position: relative; z-index: 2; width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 2rem; color: #fff; }
.page-hero-content h1 { font-size: 2.6rem; font-weight: 900; margin: .5rem 0 .75rem; }
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,.85); max-width: 640px; }
.breadcrumb { display: flex; gap: .5rem; font-size: .88rem; color: rgba(255,255,255,.7); margin-bottom: .5rem; }
.breadcrumb a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { color: rgba(255,255,255,.5); }

/* ══ TIMELINE (process page) ══ */
.timeline { display: flex; flex-direction: column; gap: 0; position: relative; }
.timeline-item { display: grid; grid-template-columns: 64px 1fr; gap: 1.5rem; position: relative; padding-bottom: 2.5rem; }
.timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  right: 31px;
  top: 64px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--teal), rgba(92,199,209,.15));
}
.timeline-num {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 900;
  flex-shrink: 0;
  box-shadow: 0 4px 20px rgba(92,199,209,.35);
  z-index: 1;
}
.timeline-body { padding-top: .75rem; }
.timeline-day { font-size: .8rem; font-weight: 700; color: var(--teal-dark); text-transform: uppercase; letter-spacing: .05em; margin-bottom: .3rem; }
.timeline-body h3 { font-size: 1.2rem; font-weight: 800; color: var(--text); margin-bottom: .6rem; }
.timeline-body p { color: var(--muted); line-height: 1.8; margin-bottom: .75rem; }

/* ══ GUARANTEE CARDS ══ */
.guarantees-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.guarantee-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(92,199,209,.1);
}
.guarantee-icon {
  width: 48px; height: 48px;
  background: var(--teal-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.guarantee-icon svg { width: 24px; height: 24px; fill: var(--teal-dark); }
.guarantee-icon.gold-bg { background: var(--gold-pale); }
.guarantee-icon.gold-bg svg { fill: var(--gold); }
.guarantee-card h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.guarantee-card p { color: var(--muted); font-size: .9rem; line-height: 1.7; }
@media (max-width: 640px) { .guarantees-grid { grid-template-columns: 1fr; } }

/* ══ PROJECTS PAGE ══ */
.projects-category-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
  margin: 2.5rem 0 1.25rem;
  display: flex; align-items: center; gap: .75rem;
}
.projects-category-title span { background: var(--teal-pale); color: var(--teal-deep); padding: .3rem 1rem; border-radius: 100px; }
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.project-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: box-shadow .3s; }
.project-card:hover { box-shadow: var(--shadow-teal); }
.project-card img { width: 100%; height: 180px; object-fit: cover; transition: transform .4s; }
.project-card:hover img { transform: scale(1.04); }
.project-card-body { padding: 1.25rem 1.5rem; }
.project-tags { display: flex; gap: .5rem; flex-wrap: wrap; margin-bottom: .75rem; }
.tag-teal { background: var(--teal-pale); color: var(--teal-deep); font-size: .78rem; font-weight: 700; padding: .2rem .7rem; border-radius: 100px; }
.tag-gold { background: var(--gold-pale); color: var(--gold); font-size: .78rem; font-weight: 700; padding: .2rem .7rem; border-radius: 100px; }
.project-card-body h4 { font-size: 1rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.project-card-body p { font-size: .88rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
.project-meta { display: flex; gap: 1rem; flex-wrap: wrap; font-size: .8rem; font-weight: 700; color: var(--teal-dark); border-top: 1px solid var(--teal-border); padding-top: .75rem; }
@media (max-width: 900px) { .projects-grid { grid-template-columns: repeat(2,1fr); } }
@media (max-width: 600px) { .projects-grid { grid-template-columns: 1fr; } }

/* ══ TESTIMONIALS ══ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.testimonial-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(212,168,83,.1);
}
.testimonial-stars { color: var(--gold); font-size: 1.1rem; margin-bottom: .75rem; }
.testimonial-card p { color: var(--muted); font-size: .92rem; line-height: 1.8; margin-bottom: 1rem; font-style: italic; }
.testimonial-meta strong { display: block; font-size: .9rem; color: var(--text); }
.testimonial-meta span { font-size: .8rem; color: var(--teal-dark); }
@media (max-width: 900px) { .testimonials-grid { grid-template-columns: 1fr; } }

/* ══ REQUEST FORM ══ */
.request-grid { display: grid; grid-template-columns: 1fr 340px; gap: 3rem; align-items: start; }
.request-form-wrap h2 { font-size: 1.8rem; font-weight: 900; color: var(--text); margin-bottom: .4rem; }
.form-subtitle { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; line-height: 1.7; }
.request-form { display: flex; flex-direction: column; gap: 1.25rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group label { font-size: .9rem; font-weight: 700; color: var(--text); }
.req { color: var(--teal-dark); }
.form-group input, .form-group select, .form-group textarea {
  background: #fff;
  border: 1.5px solid var(--sand-dark);
  border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  font-family: var(--font);
  font-size: .95rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  direction: rtl;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(92,199,209,.15);
}
.form-group textarea { resize: vertical; min-height: 110px; }
.checkbox-group { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .25rem; }
.checkbox-label { display: flex; align-items: center; gap: .4rem; font-size: .9rem; color: var(--text-mid); cursor: pointer; }
.checkbox-label input { accent-color: var(--teal-dark); width: 16px; height: 16px; }
.form-submit { margin-top: .5rem; justify-content: center; gap: .5rem; }
.form-note { font-size: .82rem; color: var(--muted); text-align: center; }
.request-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow); }
.sidebar-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--text); margin-bottom: .4rem; }
.sidebar-card h4 { font-size: .95rem; font-weight: 800; color: var(--text); margin-bottom: .5rem; }
.sidebar-card p { font-size: .9rem; color: var(--muted); line-height: 1.7; margin-bottom: .75rem; }
@media (max-width: 900px) { .request-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }


/* ══ COMPARISON TABLE (financing.html) ══ */
.comparison-table { width: 100%; border-collapse: collapse; font-size: .9rem; background: #fff; }
.comparison-table th { background: var(--teal-deep); color: #fff; padding: .8rem 1rem; text-align: right; font-weight: 700; font-size: .88rem; }
.comparison-table td { padding: .75rem 1rem; border-bottom: 1px solid var(--sand-dark); color: var(--text-mid); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table tr:hover td { background: var(--cream); }
.comparison-table tr.highlight-row td { background: var(--teal-pale); font-weight: 600; color: var(--text); }
.comparison-table td:first-child { color: var(--text); font-weight: 600; }

/* ═══════════════════════════════════════════════════════
   DARK MODE
   ═══════════════════════════════════════════════════════ */
[data-theme="dark"] {
  --cream:       #0C1A27;
  --sand:        #112030;
  --sand-dark:   #18303E;
  --warm-50:     #0C1A27;
  --warm-100:    #112030;
  --warm-200:    #18303E;
  --text:        #D8E6EF;
  --text-mid:    #8AAABF;
  --muted:       #547A92;
  --muted-light: #354F62;
  --teal-pale:   rgba(92,199,209,.1);
  --teal-border: rgba(92,199,209,.18);
  --gold-pale:   rgba(212,168,83,.1);
  --gold-border: rgba(212,168,83,.18);
  --shadow:      0 4px 24px rgba(0,0,0,.45);
  --shadow-md:   0 8px 40px rgba(0,0,0,.55);
  --shadow-lg:   0 16px 64px rgba(0,0,0,.65);
}

[data-theme="dark"] body { background: var(--cream); }
[data-theme="dark"] h1,[data-theme="dark"] h2,[data-theme="dark"] h3,[data-theme="dark"] h4 { color: #D8E6EF; }

/* Header */
[data-theme="dark"] .site-header { background: rgba(12,26,39,.96); border-bottom-color: rgba(92,199,209,.1); }
[data-theme="dark"] .main-nav a { color: #547A92; }
[data-theme="dark"] .main-nav a:hover,[data-theme="dark"] .main-nav a.active { color: var(--teal); background: rgba(92,199,209,.1); }
[data-theme="dark"] .hamburger span { background: #8AAABF; }
[data-theme="dark"] .main-nav.open { background: #112030; border-color: rgba(92,199,209,.12); }

/* Cards / boxes with hardcoded white */
[data-theme="dark"] .service-card,
[data-theme="dark"] .service-card-wide,
[data-theme="dark"] .photo-card,
[data-theme="dark"] .photo-card-body,
[data-theme="dark"] .project-card,
[data-theme="dark"] .testi-card,
[data-theme="dark"] .step-item,
[data-theme="dark"] .deliverable-item,
[data-theme="dark"] .guarantee-card,
[data-theme="dark"] .fund-card,
[data-theme="dark"] .other-fund-card,
[data-theme="dark"] .sidebar-card,
[data-theme="dark"] .faq-item,
[data-theme="dark"] .req-item,
[data-theme="dark"] .comparison-table { background: #112030; }
[data-theme="dark"] .faq-item { border-color: #18303E; }
[data-theme="dark"] .faq-q { color: #D8E6EF; border-color: #18303E; }
[data-theme="dark"] .faq-a { border-color: #18303E; background: #0C1A27; color: #8AAABF; }
[data-theme="dark"] .req-item { border-color: #18303E; }
[data-theme="dark"] .comparison-table td { border-color: #18303E; }
[data-theme="dark"] .comparison-table tr:hover td { background: #0C1A27; }
[data-theme="dark"] .comparison-table tr.highlight-row td { background: rgba(92,199,209,.09); }

/* Section overrides */
[data-theme="dark"] .trust-bar    { background: #112030; border-color: rgba(92,199,209,.08); }
[data-theme="dark"] .trust-item   { color: #8AAABF; }
[data-theme="dark"] .trust-item strong { color: #D8E6EF; }
[data-theme="dark"] .about-section { background: #0C1A27; }
[data-theme="dark"] .why-section   { background: #112030; }
[data-theme="dark"] .numbers-section { background: #112030; }
[data-theme="dark"] .faq-section   { background: #0C1A27; }
[data-theme="dark"] .process-section { background: #0C1A27; }
[data-theme="dark"] .parent-banner-section { background: #112030; }
[data-theme="dark"] .parent-banner { background: #0C1A27; border-color: rgba(92,199,209,.12); }
[data-theme="dark"] .parent-banner strong { color: #D8E6EF; }

/* Footer */
[data-theme="dark"] .site-footer   { background: #060F18; }
[data-theme="dark"] .footer-bottom { border-color: rgba(92,199,209,.1); }
[data-theme="dark"] .footer-copy   { color: #354F62; }
[data-theme="dark"] .footer-badge  { background: rgba(92,199,209,.08); }

/* Forms (request page) */
[data-theme="dark"] .form-input,
[data-theme="dark"] .form-select,
[data-theme="dark"] .form-textarea {
  background: #0C1A27;
  border-color: #18303E;
  color: #D8E6EF;
}
[data-theme="dark"] .form-label { color: #8AAABF; }
[data-theme="dark"] .form-input:focus,
[data-theme="dark"] .form-select:focus,
[data-theme="dark"] .form-textarea:focus { border-color: var(--teal); }
[data-theme="dark"] .form-section  { background: #0C1A27; }

/* About float badges */
[data-theme="dark"] .about-float,
[data-theme="dark"] .about-float-2 { background: #112030; border-color: rgba(92,199,209,.15); }
[data-theme="dark"] .about-float strong,[data-theme="dark"] .about-float-2 strong { color: #D8E6EF; }

/* Secondary cards in sectors/services */
[data-theme="dark"] .sector-more-card { background: #112030; border-color: rgba(92,199,209,.12); }
[data-theme="dark"] .sector-more-card h3 { color: #D8E6EF; }

/* Highlight / Vision boxes */
[data-theme="dark"] .highlight-box { background: rgba(92,199,209,.07); border-color: rgba(92,199,209,.2); }
[data-theme="dark"] .highlight-box h3 { color: var(--teal); }
[data-theme="dark"] .vision-box { background: rgba(212,168,83,.07); border-color: rgba(212,168,83,.2); }

/* Steps on process page */
[data-theme="dark"] .step-num { background: rgba(92,199,209,.1); border-color: rgba(92,199,209,.25); }
[data-theme="dark"] .step-num span { color: var(--teal-dark); }

/* Photo cards */
[data-theme="dark"] .photo-card { border-color: rgba(92,199,209,.12); }

/* ═══════════════════════════════════════════════════════
   HEADER CONTROL BUTTONS (theme + lang toggle)
   ═══════════════════════════════════════════════════════ */
.header-controls {
  display: flex; align-items: center; gap: .3rem;
  flex-shrink: 0; margin-inline-start: .25rem;
}
.ctrl-btn {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--teal-pale);
  border: 1px solid var(--teal-border);
  color: var(--teal-dark);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  font-family: var(--font); font-size: .73rem; font-weight: 800;
  letter-spacing: .04em; line-height: 1;
}
.ctrl-btn:hover { background: var(--teal); border-color: var(--teal); color: #fff; transform: scale(1.06); }
.ctrl-btn svg { width: 15px; height: 15px; fill: currentColor; pointer-events: none; flex-shrink: 0; }

/* Moon hidden by default (light mode shows sun) */
.icon-moon { display: none; }
[data-theme="dark"] .icon-sun  { display: none; }
[data-theme="dark"] .icon-moon { display: inline-block; }

/* Dark mode button styles */
[data-theme="dark"] .ctrl-btn { background: rgba(92,199,209,.1); border-color: rgba(92,199,209,.2); color: var(--teal); }
[data-theme="dark"] .ctrl-btn:hover { background: var(--teal); color: var(--navy); }

/* ── English font supplement ── */
html[lang="en"] body { font-family: 'Inter', 'Tajawal', sans-serif; }
