/* ═══════════════════════════════════════════
   عزل المباني - Global Stylesheet
   Colors: Blue #1e56a0 | Gold #e8a820 | Teal #0d9488
═══════════════════════════════════════════ */

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

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

:root {
  --navy: #1e56a0;
  --navy-dark: #153d73;
  --navy-light: #3b82d6;
  --gold: #e8a820;
  --gold-light: #fbbf24;
  --gold-dark: #b8860b;
  --teal: #0d9488;
  --teal-light: #14b8a6;
  --gray-light: #f0f5ff;
  --gray-mid: #e8eef8;
  --text-gray: #475569;
  --white: #ffffff;
}

html { direction: rtl; scroll-behavior: smooth; }

body {
  font-family: 'Cairo', sans-serif;
  color: #1f2937;
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { cursor: pointer; border: none; font-family: 'Cairo', sans-serif; }

/* ── Container ── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

/* ── Buttons ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: all .3s; border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(200,151,42,.35); }

.btn-navy {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--navy); color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: all .3s; border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); transform: translateY(-2px); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: #fff;
  padding: 14px 32px; border-radius: 10px;
  font-weight: 700; font-size: 15px;
  transition: all .3s; border: 2px solid rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.1); border-color: #fff; }

/* ── Section Badge ── */
.badge {
  display: inline-block;
  background: rgba(200,151,42,.12); color: var(--gold);
  border: 1px solid rgba(200,151,42,.3);
  padding: 6px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.badge-white {
  display: inline-block;
  background: rgba(200,151,42,.15); color: var(--gold-light);
  border: 1px solid rgba(200,151,42,.35);
  padding: 6px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}

/* ── Gold Underline ── */
.gold-line { position: relative; display: inline-block; }
.gold-line::after {
  content: ''; position: absolute; bottom: -8px; right: 0;
  width: 60px; height: 3px; border-radius: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}
.gold-line-center::after { right: 50%; transform: translateX(50%); }

/* ── Card Hover ── */
.card { transition: all .3s; }
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(11,37,69,.12); }

/* ── BG Grid Pattern ── */
.bg-grid {
  background-image: linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ── Scroll Animation ── */
.anim { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }

/* ─────────────────────────────────────────
   NAVBAR
───────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
  transition: all .3s;
  padding: 12px 0;
}
#navbar.scrolled { padding: 8px 0; box-shadow: 0 4px 20px rgba(0,0,0,.12); border-bottom-color: transparent; }

.nav-inner { display: flex; align-items: center; justify-content: space-between; }

.nav-logo {
  display: flex; align-items: center;
  padding: 4px 0;
  transition: opacity .3s;
}
.nav-logo:hover { opacity: .8; }
.nav-logo img { height: 90px; width: auto; object-fit: contain; filter: brightness(1.15) contrast(1.1); }

.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-links a {
  position: relative; padding: 8px 16px; border-radius: 8px;
  font-size: 14px; font-weight: 600; color: #374151;
  transition: all .2s;
}
.nav-links a:hover { color: var(--navy); background: rgba(14,48,96,.06); }
.nav-links a.active { color: var(--navy); font-weight: 700; }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: 0; right: 12px; left: 12px;
  height: 2px; border-radius: 999px; background: var(--gold);
}

.nav-cta {
  display: flex; align-items: center; gap: 10px;
}
.nav-call {
  display: flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff;
  padding: 10px 20px; border-radius: 10px;
  font-weight: 700; font-size: 14px; transition: all .3s;
}
.nav-call:hover { background: var(--gold-light); transform: scale(1.05); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; padding: 8px; border-radius: 8px;
  transition: background .2s;
}
.hamburger:hover { background: rgba(14,48,96,.06); }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: all .3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none; flex-direction: column; gap: 4px;
  border-top: 1px solid #e5e7eb;
  padding: 16px 0 12px; margin-top: 12px;
  overflow: hidden; max-height: 0; opacity: 0;
  transition: max-height .35s ease, opacity .35s ease;
  background: #fff;
}
.mobile-menu.open { max-height: 500px; opacity: 1; }
.mobile-menu a {
  padding: 12px 16px; border-radius: 10px; font-size: 14px;
  font-weight: 600; color: #374151; transition: all .2s;
}
.mobile-menu a:hover { background: rgba(14,48,96,.05); color: var(--navy); }
.mobile-menu a.active { background: rgba(200,151,42,.08); color: var(--navy); border-right: 3px solid var(--gold); }
.mobile-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 12px 16px;
  border-radius: 10px; font-weight: 700; font-size: 14px;
  margin-top: 8px; transition: background .2s;
}
.mobile-cta:hover { background: var(--gold-light); }

/* ─────────────────────────────────────────
   PAGE HERO
───────────────────────────────────────── */
.page-hero {
  position: relative; overflow: hidden;
  padding: 140px 0 80px;
  background: linear-gradient(135deg, #153d73 0%, #1e56a0 50%, #3b82d6 85%, #60a5fa 100%);
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
}
.page-hero .container { position: relative; z-index: 2; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: #fff; margin-bottom: 16px; }
.page-hero p { color: #d1d5db; font-size: 1.1rem; max-width: 600px; margin: 0 auto 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; }
.breadcrumb a { color: rgba(255,255,255,.6); transition: color .2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb .sep, .breadcrumb .current { color: var(--gold); }

/* ─────────────────────────────────────────
   FOOTER
───────────────────────────────────────── */
footer { background: var(--navy-dark); color: #fff; }
.footer-main { padding: 64px 0; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.4fr; gap: 40px; }

.footer-brand-logo {
  display: inline-flex; align-items: center;
  background: none;
  border-radius: 0;
  padding: 0;
  margin-bottom: 24px;
  box-shadow: none;
}
.footer-brand-logo img { height: 80px; width: auto; object-fit: contain; }
.footer-brand p { color: #9ca3af; font-size: 14px; line-height: 1.8; margin-bottom: 24px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: rgba(200,151,42,.15); color: var(--gold);
  border: 1px solid rgba(200,151,42,.25); transition: all .2s;
}
.socials a:hover { background: var(--gold); color: #fff; transform: scale(1.1); }

.footer-col h4 {
  font-size: 15px; font-weight: 700; color: var(--gold-light);
  padding-bottom: 12px; margin-bottom: 20px;
  border-bottom: 1px solid rgba(200,151,42,.3);
}
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a {
  display: flex; align-items: center; gap: 8px;
  color: #9ca3af; font-size: 14px; transition: color .2s;
}
.footer-col ul li a::before { content: '‹'; color: var(--gold); font-size: 16px; }
.footer-col ul li a:hover { color: #facc15; }

.contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 16px; }
.contact-icon {
  width: 36px; height: 36px; border-radius: 8px; flex-shrink: 0;
  background: rgba(200,151,42,.15); display: flex; align-items: center; justify-content: center;
  font-size: 16px; margin-top: 2px; color: var(--gold);
}
.contact-item-text .label { font-size: 11px; color: #6b7280; margin-bottom: 2px; }
.contact-item-text .value { font-size: 14px; color: #d1d5db; font-weight: 600; }
.contact-item a { text-decoration: none; color: inherit; }
.contact-item a:hover .value { color: #fff; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 20px 0;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { color: #6b7280; font-size: 13px; }

/* ─────────────────────────────────────────
   WHATSAPP BUTTON
───────────────────────────────────────── */
.wa-btn {
  position: fixed; bottom: 28px; left: 28px; z-index: 999;
  width: 60px; height: 60px; border-radius: 50%;
  background: #25d366; display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform .3s, box-shadow .3s;
  animation: wa-pulse 2s infinite;
}
.wa-btn:hover { transform: scale(1.1); box-shadow: 0 8px 30px rgba(37,211,102,.6); }
.wa-btn svg { width: 32px; height: 32px; fill: #fff; }
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.4); }
  50% { box-shadow: 0 4px 20px rgba(37,211,102,.4), 0 0 0 12px rgba(37,211,102,.15); }
}

/* ─────────────────────────────────────────
   HOME – HERO
───────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden; min-height: 100vh;
  display: flex; align-items: center;
  background: linear-gradient(135deg, #153d73 0%, #1e56a0 40%, #3b82d6 80%, #60a5fa 100%);
  padding-top: 88px;
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold) 30%, var(--gold-light) 50%, var(--gold) 70%, transparent);
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(200,151,42,.15); color: var(--gold-light); border: 1px solid rgba(200,151,42,.3); padding: 8px 20px; border-radius: 999px; font-size: 14px; font-weight: 700; margin-bottom: 24px; }
.hero-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:.3} }
.hero h1 { font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 20px; }
.hero h1 span { color: var(--gold-light); }
.hero p { color: rgba(255,255,255,.85); font-size: 1.05rem; line-height: 1.8; margin-bottom: 36px; }
.hero-btns { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 44px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat .num { font-size: 1.8rem; font-weight: 900; color: var(--gold-light); }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,.55); }

.hero-visual { position: relative; }
.hero-card {
  background: rgba(255,255,255,.07); backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 20px;
  padding: 36px; position: relative; overflow: hidden;
}
.hero-card::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.hero-card h3 { font-size: 1.3rem; font-weight: 800; color: #fff; margin-bottom: 8px; }
.hero-card p { color: rgba(255,255,255,.6); font-size: 14px; margin-bottom: 28px; }
.service-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip { background: rgba(200,151,42,.15); color: var(--gold-light); border: 1px solid rgba(200,151,42,.25); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }
.quality-bars { display: flex; flex-direction: column; gap: 12px; }
.q-bar-row { display: flex; align-items: center; gap: 10px; font-size: 13px; color: rgba(255,255,255,.7); }
.q-bar-track { flex: 1; height: 6px; background: rgba(255,255,255,.1); border-radius: 3px; overflow: hidden; }
.q-bar-fill { height: 100%; border-radius: 3px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); width: 0; transition: width 1.2s ease; }
.hero-float {
  position: absolute; background: rgba(255,255,255,.1); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15); border-radius: 14px;
  padding: 14px 18px; font-size: 13px; color: #fff;
}
.hero-float.f1 { bottom: -20px; right: -20px; }
.hero-float.f2 { top: -16px; left: -16px; }
.float-num { font-size: 1.3rem; font-weight: 900; color: var(--gold-light); }
.float-lbl { font-size: 11px; color: rgba(255,255,255,.6); }

/* ─────────────────────────────────────────
   STATS BAR
───────────────────────────────────────── */
.stats-bar { background: linear-gradient(135deg, #e8eef8 0%, #f0f5ff 100%); padding: 48px 0; border-bottom: 1px solid #d0daf0; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat-num { font-size: 2.5rem; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
.stat-lbl { font-weight: 700; font-size: 14px; color: #1f2937; margin-bottom: 2px; }
.stat-sub { font-size: 12px; color: var(--text-gray); }

/* ─────────────────────────────────────────
   ABOUT SNIPPET
───────────────────────────────────────── */
.about-sec { padding: 90px 0; background: #fff; }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-visual {
  background: var(--gray-light);
  border-radius: 20px; padding: 40px; position: relative; overflow: hidden;
  border: 1px solid #dde4f0;
}
.about-visual::before { content: ''; position: absolute; top: 0; right: 0; width: 100%; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light)); }
.about-icon-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 28px; }
.about-icon-item { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 14px; padding: 20px; text-align: center; }
.about-icon-item .icon { font-size: 2rem; margin-bottom: 8px; color: var(--gold); }
.about-icon-item .num { font-size: 1.5rem; font-weight: 900; color: var(--navy); }
.about-icon-item .lbl { font-size: 12px; color: var(--text-gray); }
.about-quote { background: rgba(200,151,42,.08); border: 1px solid rgba(200,151,42,.2); border-radius: 12px; padding: 20px; color: #374151; font-size: 14px; line-height: 1.7; }
.about-text h2 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.about-text p { color: var(--text-gray); line-height: 1.9; margin-bottom: 20px; font-size: 15px; }
.values-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.val-item { display: flex; align-items: center; gap: 10px; color: var(--navy); font-weight: 600; font-size: 14px; }
.val-item::before { content: '✓'; width: 24px; height: 24px; border-radius: 50%; background: rgba(200,151,42,.15); color: var(--gold); display: flex; align-items: center; justify-content: center; font-weight: 900; flex-shrink: 0; }

/* ─────────────────────────────────────────
   SERVICES GRID (Home)
───────────────────────────────────────── */
.services-sec { padding: 90px 0; background: var(--gray-light); }
.sec-header { text-align: center; margin-bottom: 56px; }
.sec-header h2 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.sec-header p { color: var(--text-gray); max-width: 600px; margin: 0 auto; font-size: 15px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  border-radius: 18px; padding: 32px; background: #ffffff;
  border: 1px solid #e5e7eb; position: relative; overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 20px 60px rgba(30,86,160,.12); border-color: transparent; }
.service-card::after { content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 3px; opacity: 0; background: linear-gradient(90deg, var(--navy-light), var(--gold), var(--teal)); transition: opacity .3s; border-radius: 0 0 18px 18px; }
.service-card:hover::after { opacity: 1; }
.service-card.wide { grid-column: span 2; }
.service-card.consult { background: linear-gradient(135deg, #153d73, #1e56a0, #3b82d6); color: #fff; border-color: transparent; }
.svc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; background: linear-gradient(135deg, rgba(30,86,160,.08), rgba(59,130,214,.12)); color: var(--navy); }
.service-card.consult .svc-icon { background: rgba(232,168,32,.2); }
.svc-name { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.service-card.consult .svc-name { color: var(--gold-light); }
.svc-desc { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.service-card.consult .svc-desc { color: rgba(255,255,255,.7); }
.svc-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 16px; font-size: 14px; font-weight: 700; color: var(--gold); transition: gap .2s; }
.svc-link:hover { gap: 10px; }
.service-card.consult .svc-link { color: var(--gold-light); }

/* ─────────────────────────────────────────
   METHODOLOGY (Home)
───────────────────────────────────────── */
.method-sec {
  padding: 90px 0;
  background: linear-gradient(180deg, #ffffff 0%, #f0f5ff 100%);
  position: relative; overflow: hidden;
}
.method-sec .container { position: relative; z-index: 2; }
.method-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.method-card {
  background: var(--gray-light); border: 1px solid #dde4f0;
  border-radius: 18px; padding: 28px; transition: all .3s;
}
.method-card:hover { background: #fff; box-shadow: 0 12px 40px rgba(14,48,96,.1); transform: translateY(-4px); border-color: transparent; }
.method-num { font-size: 2.5rem; font-weight: 900; color: rgba(59,130,214,.25); margin-bottom: 4px; }
.method-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(30,86,160,.08), rgba(59,130,214,.15)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; color: var(--navy-light); }
.method-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.method-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

/* ─────────────────────────────────────────
   WHY US (Home)
───────────────────────────────────────── */
.why-sec { padding: 90px 0; background: var(--gray-light); }
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e5e7eb; transition: all .3s; }
.why-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(11,37,69,.1); border-color: transparent; }
.why-icon { width: 48px; height: 48px; border-radius: 12px; background: linear-gradient(135deg, rgba(232,168,32,.08), rgba(251,191,36,.15)); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; margin-bottom: 16px; color: var(--gold); }
.why-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.why-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

/* ─────────────────────────────────────────
   CTA SECTION
───────────────────────────────────────── */
.cta-sec { padding: 90px 0; background: linear-gradient(135deg, #b8860b 0%, #e8a820 40%, #fbbf24 75%, #fde68a 100%); }
.cta-inner { text-align: center; max-width: 700px; margin: 0 auto; }
.cta-inner h2 { font-size: 2rem; font-weight: 900; color: #fff; margin-bottom: 16px; }
.cta-inner p { color: rgba(255,255,255,.85); margin-bottom: 36px; font-size: 1rem; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.btn-white { display: inline-flex; align-items: center; gap: 8px; background: #fff; color: var(--navy); padding: 14px 32px; border-radius: 10px; font-weight: 800; font-size: 15px; transition: all .3s; }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.2); }
.btn-white-outline { display: inline-flex; align-items: center; gap: 8px; background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.6); padding: 14px 32px; border-radius: 10px; font-weight: 700; font-size: 15px; transition: all .3s; }
.btn-white-outline:hover { background: rgba(255,255,255,.15); border-color: #fff; }

/* ─────────────────────────────────────────
   ABOUT PAGE
───────────────────────────────────────── */
.intro-sec { padding: 90px 0; background: #fff; }
.intro-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: center; }
.intro-vis {
  background: var(--gray-light);
  border: 1px solid #dde4f0;
  border-radius: 20px; padding: 40px; text-align: center;
}
.intro-vis .big-num { font-size: 5rem; font-weight: 900; color: var(--navy); line-height: 1; margin-bottom: 4px; }
.intro-vis .big-lbl { color: var(--text-gray); font-size: 15px; margin-bottom: 28px; }
.intro-vis-chips { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.intro-chip { background: #ffffff; border: 1px solid #dde4f0; border-radius: 999px; padding: 8px 16px; font-size: 13px; color: var(--navy); font-weight: 600; }
.intro-text h2 { font-size: 2rem; font-weight: 900; color: var(--navy); margin-bottom: 20px; }
.intro-text p { font-size: 15px; color: var(--text-gray); line-height: 1.9; margin-bottom: 16px; }

.vmv-sec { padding: 90px 0; background: var(--gray-light); }
.vmv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.vmv-card { background: #fff; border-radius: 20px; padding: 36px; border: 1px solid #e5e7eb; transition: all .3s; }
.vmv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(11,37,69,.1); border-color: transparent; }
.vmv-icon { width: 60px; height: 60px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; color: var(--gold); }
.vmv-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 12px; }
.vmv-card p { font-size: 14px; color: var(--text-gray); line-height: 1.8; }

.timeline-sec { padding: 90px 0; background: #fff; }
.timeline { display: flex; flex-direction: column; gap: 0; max-width: 800px; margin: 0 auto; }
.tl-item { display: grid; grid-template-columns: 1fr 60px 1fr; gap: 0; }
.tl-item:nth-child(even) .tl-left { order: 3; }
.tl-item:nth-child(even) .tl-right { order: 1; }
.tl-content { padding: 0 24px 40px; }
.tl-content.right-side { text-align: left; }
.tl-item:nth-child(even) .tl-content { text-align: left; }
.tl-year { font-size: 1.2rem; font-weight: 900; color: var(--gold); margin-bottom: 6px; }
.tl-title { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.tl-desc { font-size: 13px; color: var(--text-gray); line-height: 1.7; }
.tl-center { display: flex; flex-direction: column; align-items: center; }
.tl-dot { width: 20px; height: 20px; border-radius: 50%; background: var(--gold); border: 4px solid #fff; box-shadow: 0 0 0 3px var(--gold); flex-shrink: 0; margin-top: 4px; }
.tl-line { flex: 1; width: 2px; background: linear-gradient(180deg, var(--gold), rgba(200,151,42,.2)); }

.values-sec { padding: 90px 0; background: var(--gray-light); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.val-card { background: #fff; border-radius: 16px; padding: 28px; border: 1px solid #e5e7eb; display: flex; gap: 16px; align-items: flex-start; transition: all .3s; }
.val-card:hover { transform: translateY(-3px); box-shadow: 0 12px 40px rgba(11,37,69,.08); border-color: transparent; }
.val-card-icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(200,151,42,.1); display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; color: var(--gold); }
.val-card h4 { font-size: 15px; font-weight: 800; color: var(--navy); margin-bottom: 6px; }
.val-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

/* ─────────────────────────────────────────
   SERVICES PAGE
───────────────────────────────────────── */
.services-nav { background: #fff; padding: 0; position: sticky; top: 74px; z-index: 100; border-bottom: 2px solid #e5e7eb; box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.services-nav-inner { display: flex; overflow-x: auto; gap: 0; }
.services-nav-inner::-webkit-scrollbar { height: 3px; }
.services-nav-inner::-webkit-scrollbar-thumb { background: var(--gold); }
.snav-link { padding: 16px 24px; font-size: 14px; font-weight: 700; color: var(--text-gray); white-space: nowrap; border-bottom: 3px solid transparent; transition: all .2s; }
.snav-link:hover { color: var(--navy); }
.snav-link.active { color: var(--navy); border-bottom-color: var(--gold); }

.svc-section { padding: 90px 0; }
.svc-section:nth-child(even) { background: var(--gray-light); }
.svc-section-inner { display: grid; grid-template-columns: 1fr 1.3fr; gap: 60px; align-items: start; }
.svc-section-inner.rev { grid-template-columns: 1.3fr 1fr; }
.svc-section-inner.rev .svc-vis { order: 2; }
.svc-section-inner.rev .svc-text { order: 1; }
.svc-vis {
  background: var(--gray-light);
  border: 1px solid #dde4f0;
  border-radius: 20px; padding: 40px;
}
.svc-vis h3 { font-size: 1.5rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.svc-vis p { color: var(--text-gray); font-size: 14px; margin-bottom: 28px; }
.svc-types-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.svc-type-item { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 10px; padding: 14px; font-size: 13px; color: #374151; font-weight: 600; }
.svc-type-item::before { content: '✓ '; color: var(--gold); }
.svc-text h2 { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.svc-text p { font-size: 15px; color: var(--text-gray); line-height: 1.9; margin-bottom: 20px; }
.svc-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.svc-feat { display: flex; align-items: flex-start; gap: 10px; }
.svc-feat-icon { width: 28px; height: 28px; border-radius: 8px; background: rgba(200,151,42,.15); display: flex; align-items: center; justify-content: center; font-size: 13px; flex-shrink: 0; color: var(--gold); }
.svc-feat-text { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.svc-feat-text strong { color: var(--navy); }

/* ─────────────────────────────────────────
   METHODOLOGY PAGE
───────────────────────────────────────── */
.meth-steps { padding: 90px 0; background: #fff; }
.meth-step { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 64px; }
.meth-step:last-child { margin-bottom: 0; }
.meth-step.rev .meth-step-vis { order: 2; }
.meth-step.rev .meth-step-text { order: 1; }
.meth-step-vis {
  background: var(--gray-light);
  border: 1px solid #dde4f0;
  border-radius: 20px; padding: 40px;
}
.meth-step-num { font-size: 4rem; font-weight: 900; color: rgba(200,151,42,.25); line-height: 1; margin-bottom: -10px; }
.meth-step-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(200,151,42,.12); display: flex; align-items: center; justify-content: center; font-size: 1.6rem; margin-bottom: 20px; color: var(--gold); }
.meth-step-vis h3 { font-size: 1.3rem; font-weight: 900; color: var(--navy); margin-bottom: 12px; }
.meth-step-vis p { font-size: 14px; color: var(--text-gray); line-height: 1.8; margin-bottom: 24px; }
.meth-details { background: #ffffff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 20px; }
.meth-detail-item { display: flex; align-items: center; gap: 10px; font-size: 13px; color: #374151; padding: 6px 0; border-bottom: 1px solid #f0f0f0; }
.meth-detail-item:last-child { border-bottom: none; }
.meth-detail-item::before { content: '›'; color: var(--gold); font-size: 16px; }
.meth-step-text h2 { font-size: 1.8rem; font-weight: 900; color: var(--navy); margin-bottom: 16px; }
.meth-step-text p { font-size: 15px; color: var(--text-gray); line-height: 1.9; margin-bottom: 20px; }
.meth-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.meth-tag { background: rgba(14,48,96,.06); color: var(--navy); border: 1px solid rgba(14,48,96,.12); padding: 6px 14px; border-radius: 999px; font-size: 13px; font-weight: 600; }

/* ─────────────────────────────────────────
   WHY US PAGE
───────────────────────────────────────── */
.adv-sec { padding: 90px 0; background: #fff; }
.adv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.adv-card {
  background: var(--gray-light); border-radius: 20px; padding: 28px;
  border: 1px solid #e5e7eb; position: relative; overflow: hidden; transition: all .3s;
}
.adv-card:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(11,37,69,.1); border-color: transparent; }
.adv-card::after { content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 3px; opacity: 0; background: linear-gradient(90deg, var(--gold), var(--gold-light)); transition: opacity .3s; border-radius: 0 0 20px 20px; }
.adv-card:hover::after { opacity: 1; }
.adv-highlight { position: absolute; top: 16px; left: 16px; background: rgba(200,151,42,.12); color: var(--gold); border: 1px solid rgba(200,151,42,.2); padding: 4px 12px; border-radius: 999px; font-size: 12px; font-weight: 700; }
.adv-icon { width: 56px; height: 56px; border-radius: 14px; background: rgba(14,48,96,.06); display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin-bottom: 20px; margin-top: 32px; transition: transform .3s; color: var(--navy); }
.adv-card:hover .adv-icon { transform: scale(1.1); }
.adv-card h3 { font-size: 1rem; font-weight: 800; color: var(--navy); margin-bottom: 10px; }
.adv-card p { font-size: 13px; color: var(--text-gray); line-height: 1.7; }

.compare-sec { padding: 90px 0; background: var(--gray-light); }
.compare-sec .container { position: relative; z-index: 2; }
.compare-table { border-radius: 16px; overflow: hidden; border: 1px solid #dde4f0; max-width: 800px; margin: 0 auto; box-shadow: 0 4px 24px rgba(14,48,96,.08); }
.compare-header { display: grid; grid-template-columns: 2fr 1fr 1fr; background: var(--navy); padding: 16px 24px; }
.compare-header div { font-size: 14px; font-weight: 700; text-align: center; }
.compare-header div:first-child { text-align: right; color: rgba(255,255,255,.7); }
.compare-header div:nth-child(2) { color: var(--gold-light); }
.compare-header div:nth-child(3) { color: rgba(255,255,255,.6); }
.compare-row { display: grid; grid-template-columns: 2fr 1fr 1fr; padding: 14px 24px; border-top: 1px solid #e5e7eb; align-items: center; }
.compare-row:nth-child(even) { background: var(--gray-light); }
.compare-row:nth-child(odd) { background: #ffffff; }
.compare-row .feat { font-size: 14px; color: #374151; font-weight: 600; }
.compare-row .check { text-align: center; font-size: 1.1rem; }
.check-yes { color: #16a34a; }
.check-no { color: #d1d5db; }

/* ─────────────────────────────────────────
   CONTACT PAGE
───────────────────────────────────────── */
.contact-strip { background: var(--gray-mid); padding: 28px 0; border-bottom: 1px solid #dde4f0; }
.contact-strip-inner { display: flex; justify-content: center; gap: 48px; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: 12px; }
.strip-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(200,151,42,.12); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; color: var(--gold); }
.strip-label { font-size: 11px; color: var(--text-gray); margin-bottom: 2px; }
.strip-value { font-size: 15px; font-weight: 700; color: var(--navy); }

.contact-sec { padding: 90px 0; background: var(--gray-light); }
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; }
.contact-form-wrap { background: #fff; border-radius: 20px; padding: 40px; box-shadow: 0 4px 30px rgba(11,37,69,.06); }
.contact-form-wrap h2 { font-size: 1.6rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 14px; color: var(--text-gray); margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border: 2px solid #e5e7eb;
  border-radius: 10px; font-family: 'Cairo', sans-serif; font-size: 14px;
  color: #1f2937; background: #fff; transition: border-color .2s;
  outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--gold); }
.form-group textarea { height: 140px; resize: vertical; }
.form-group select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236b7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 16px center; }
.form-submit { width: 100%; background: var(--gold); color: #fff; padding: 16px; border-radius: 10px; font-weight: 800; font-size: 16px; transition: all .3s; }
.form-submit:hover { background: var(--gold-light); transform: translateY(-2px); }
.form-success { text-align: center; padding: 40px 20px; display: none; }
.form-success.show { display: block; }
.form-success .check-big { font-size: 4rem; margin-bottom: 16px; color: #16a34a; }
.form-success h3 { font-size: 1.4rem; font-weight: 900; color: var(--navy); margin-bottom: 8px; }
.form-success p { color: var(--text-gray); font-size: 15px; }

.contact-sidebar { display: flex; flex-direction: column; gap: 24px; }
.info-card { background: #fff; border-radius: 20px; padding: 32px; box-shadow: 0 4px 30px rgba(11,37,69,.06); }
.info-card h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gray-light); }
.info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 20px; }
.info-item:last-child { margin-bottom: 0; }
.info-icon { width: 40px; height: 40px; border-radius: 10px; background: rgba(200,151,42,.1); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.info-label { font-size: 11px; color: var(--text-gray); margin-bottom: 2px; }
.info-value { font-size: 14px; font-weight: 700; color: var(--navy); }
.info-value a { color: var(--navy); transition: color .2s; }
.info-value a:hover { color: var(--gold); }

.hours-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.hours-item { background: var(--gray-light); border-radius: 10px; padding: 12px; }
.hours-item .day { font-size: 12px; color: var(--text-gray); margin-bottom: 2px; }
.hours-item .time { font-size: 13px; font-weight: 700; color: var(--navy); }

.map-placeholder {
  background: var(--gray-light);
  border: 1px solid #dde4f0;
  border-radius: 20px; padding: 40px; text-align: center; margin-top: 24px;
}
.map-placeholder .map-icon { font-size: 3rem; margin-bottom: 16px; color: var(--gold); }
.map-placeholder h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.map-placeholder p { font-size: 14px; color: var(--text-gray); margin-bottom: 20px; }
.map-placeholder a { display: inline-flex; align-items: center; gap: 8px; background: var(--gold); color: #fff; padding: 10px 24px; border-radius: 10px; font-weight: 700; font-size: 14px; transition: all .2s; }
.map-placeholder a:hover { background: var(--gold-light); }

/* ─────────────────────────────────────────
   IMAGE SECTIONS & PLACEHOLDERS
───────────────────────────────────────── */
.img-frame {
  border-radius: 16px; overflow: hidden;
  border: 1px solid #dde4f0;
  box-shadow: 0 8px 30px rgba(30,86,160,.1);
  position: relative;
}
.img-frame img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.img-placeholder {
  width: 100%; min-height: 280px;
  border-radius: 16px; overflow: hidden;
  background: linear-gradient(135deg, #e8eef8 0%, #d0daf0 50%, #e0e8f4 100%);
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
  border: 2px dashed #b0c4e8;
  color: var(--navy-light); font-size: 14px; font-weight: 600;
  position: relative;
}
.img-placeholder i { font-size: 3rem; opacity: .4; }
.img-placeholder span { opacity: .6; }

/* Hero with background image support */
.hero-bg-img {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg-img img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero-bg-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(21,61,115,.92) 0%, rgba(30,86,160,.85) 40%, rgba(59,130,214,.78) 80%);
}

/* Service section images */
.svc-img-wrap {
  border-radius: 20px; overflow: hidden;
  position: relative; min-height: 300px;
}
.svc-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  min-height: 300px;
}
.svc-img-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 24px;
  background: linear-gradient(0deg, rgba(21,61,115,.9) 0%, transparent 100%);
  color: #fff;
}
.svc-img-overlay h4 { font-size: 1.1rem; font-weight: 800; margin-bottom: 4px; }
.svc-img-overlay p { font-size: 13px; opacity: .8; }

/* About page image */
.about-img-frame {
  border-radius: 20px; overflow: hidden;
  position: relative;
  box-shadow: 0 12px 40px rgba(30,86,160,.12);
}
.about-img-frame img {
  width: 100%; height: auto; display: block;
  min-height: 350px; object-fit: cover;
}
.about-img-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: rgba(30,86,160,.9); backdrop-filter: blur(10px);
  color: #fff; padding: 12px 20px; border-radius: 12px;
  font-weight: 800; font-size: 14px;
  border: 1px solid rgba(255,255,255,.2);
}

/* Gallery grid */
.gallery-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-top: 40px;
}
.gallery-item {
  border-radius: 14px; overflow: hidden;
  position: relative; cursor: pointer;
  height: 220px;
}
.gallery-item img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .4s;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(21,61,115,.6) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s;
}
.gallery-item:hover::after { opacity: 1; }

/* ─────────────────────────────────────────
   TEAL ACCENT ELEMENTS
───────────────────────────────────────── */
.badge-teal {
  display: inline-block;
  background: rgba(13,148,136,.1); color: var(--teal);
  border: 1px solid rgba(13,148,136,.25);
  padding: 6px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 700; margin-bottom: 16px;
}
.svc-icon-teal { background: rgba(13,148,136,.1) !important; color: var(--teal) !important; }
.why-icon-teal { background: rgba(13,148,136,.1) !important; color: var(--teal) !important; }

/* ─────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .about-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.wide { grid-column: span 1; }
  .intro-grid { grid-template-columns: 1fr; }
  .svc-section-inner, .svc-section-inner.rev { grid-template-columns: 1fr; }
  .svc-section-inner.rev .svc-vis, .svc-section-inner.rev .svc-text { order: unset; }
  .meth-step, .meth-step.rev { grid-template-columns: 1fr; }
  .meth-step.rev .meth-step-vis, .meth-step.rev .meth-step-text { order: unset; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-item { height: 180px; }
  .nav-links { display: none; }
  .nav-call { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .method-grid { grid-template-columns: 1fr; }
  .why-grid, .adv-grid { grid-template-columns: 1fr 1fr; }
  .vmv-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .tl-item { grid-template-columns: 1fr; }
  .tl-center { display: none; }
  .tl-item:nth-child(even) .tl-left { order: unset; }
  .tl-item:nth-child(even) .tl-right { order: unset; }
  .tl-content { padding: 0 0 24px; border-right: 3px solid var(--gold); padding-right: 16px; }
  .contact-strip-inner { gap: 24px; }
  .hero-stats { gap: 20px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .why-grid, .adv-grid { grid-template-columns: 1fr; }
  .btn-primary, .btn-navy, .btn-outline { padding: 12px 20px; font-size: 14px; }
  .hero h1 { font-size: 1.8rem; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { height: 200px; }
}
