@import url('https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;1,9..40,300&display=swap');

:root {
  --navy: #0a1628;
  --navy-mid: #112240;
  --navy-light: #1a3a6b;
  --accent: #00b8d9;
  --accent-glow: #00d4f5;
  --accent-dim: rgba(0,184,217,0.12);
  --white: #ffffff;
  --off-white: #f0f4f8;
  --text-muted: #7a8ba6;
  --text-body: #c8d8e8;
  --border: rgba(255,255,255,0.08);
  --border-accent: rgba(0,184,217,0.3);
  --card-bg: rgba(17,34,64,0.7);
  --card-bg-solid: #112240;
  --gradient-hero: linear-gradient(135deg, #0a1628 0%, #0d1f3c 50%, #0f2847 100%);
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.3);
  --shadow-accent: 0 0 40px rgba(0,184,217,0.15);
}

/* ── Light mode ── */
body.light-mode {
  --navy: #f5f7fa;
  --navy-mid: #eaecf0;
  --navy-light: #d6dae2;
  --accent: #4a78a8;
  --accent-glow: #5489bb;
  --accent-dim: rgba(74, 120, 168, 0.08);
  --white: #0d1b2a;
  --off-white: #1a2e42;
  --text-muted: #4a5568;
  --text-body: #2d3748;
  --border: rgba(0,0,0,0.09);
  --border-accent: rgba(74,120,168,0.3);
  --card-bg: rgba(255,255,255,0.9);
  --card-bg-solid: #ffffff;
  --gradient-hero: linear-gradient(135deg, #eef1f5 0%, #f5f7fa 50%, #edf0f4 100%);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-accent: 0 0 40px rgba(74,120,168,0.08);
}

/* Hero */
body.light-mode .hero-overlay {
  background: linear-gradient(90deg, rgba(245,247,250,0.96) 40%, rgba(245,247,250,0.4) 100%);
}
body.light-mode .hero-grid-lines { opacity: 0.03; }
body.light-mode .hero-badge { background: rgba(74,120,168,0.08); border-color: rgba(74,120,168,0.25); }

/* Page hero */
body.light-mode .page-hero {
  background: linear-gradient(135deg, #e8ecf1 0%, #f0f4f8 100%);
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
body.light-mode .page-hero::after { opacity: 0.03; }

/* Nav */
body.light-mode .nav.scrolled { background: rgba(245,247,250,0.96); border-bottom: 1px solid rgba(0,0,0,0.08); }
body.light-mode .dropdown-menu { background: #ffffff; border: 1px solid rgba(0,0,0,0.08); }
body.light-mode #theme-toggle { border-color: rgba(0,0,0,0.15); color: var(--text-body); }

/* Buttons — body buttons: dark navy; nav CTA: accent cyan */
body.light-mode .btn-primary { background: var(--accent); color: #ffffff; }
body.light-mode .btn-primary:hover { background: var(--accent-glow); color: #ffffff; box-shadow: 0 8px 24px rgba(74,120,168,0.3); }
body.light-mode .btn-outline { background: transparent; border: 1.5px solid rgba(13,27,42,0.3); color: #0d1b2a; }
body.light-mode .btn-outline:hover { background: rgba(13,27,42,0.05); border-color: #0d1b2a; }
body.light-mode .btn-ghost { color: var(--accent); }

/* Marquee — cyan bg, white text */
body.light-mode .marquee-section { background: var(--accent); border-top: none; border-bottom: none; }
body.light-mode .marquee-item { color: #ffffff; font-weight: 600; }
body.light-mode .marquee-item::after { color: rgba(255,255,255,0.5); }

/* Section rhythm */
body.light-mode section:nth-child(even) { background: #eef1f5; }
body.light-mode section:nth-child(odd) { background: #f5f7fa; }
body.light-mode .why-egypt { background: #eef1f5; }
body.light-mode .testimonials-section { background: #e8ecf1; }
body.light-mode .marquee-section { background: var(--accent); }
body.light-mode .section { border-top: 1px solid rgba(0,0,0,0.05); }

/* Cards */
body.light-mode .card { background: #ffffff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 12px rgba(0,0,0,0.05); }
body.light-mode .card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.09); border-color: var(--border-accent); }
body.light-mode .stat-card { background: #ffffff; border: 1px solid rgba(0,0,0,0.07); box-shadow: 0 2px 8px rgba(0,0,0,0.04); }
body.light-mode .testimonial-card { background: #ffffff; border-color: rgba(0,0,0,0.08); }
body.light-mode .testimonial-card::before { color: var(--accent); }
body.light-mode .pricing-card.featured { background: rgba(74,120,168,0.06); border-color: var(--accent); }

/* CTA banner — light */
body.light-mode .cta-banner { background: linear-gradient(135deg, #e2e8f0 0%, #eef1f5 100%); border: 1px solid rgba(0,0,0,0.08); }
body.light-mode .cta-banner h2 { color: #0d1b2a; }
body.light-mode .cta-banner p { color: #4a5568; }

/* Footer — light */
body.light-mode .footer { background: #e8ecf1; border-top: 1px solid rgba(0,0,0,0.08); }
body.light-mode .footer h5,
body.light-mode .footer .nav-logo,
body.light-mode .footer p,
body.light-mode .footer a { color: #2d3748; }
body.light-mode .footer a:hover { color: var(--accent); }
body.light-mode .footer-bottom { border-top: 1px solid rgba(0,0,0,0.08); }
body.light-mode .footer-bottom p,
body.light-mode .footer-bottom a { color: #6b7280; }
body.light-mode .social-btn { background: rgba(0,0,0,0.06); border-color: rgba(0,0,0,0.12); color: #2d3748; }
body.light-mode .social-btn img { filter: brightness(0); opacity: 0.6; }
body.light-mode .social-btn:hover { background: var(--accent); color: #ffffff; }
body.light-mode .social-btn:hover img { filter: brightness(0) invert(1); opacity: 1; }

/* Misc */
body.light-mode .egypt-fact { background: rgba(74,120,168,0.06); border-color: rgba(74,120,168,0.18); }
body.light-mode .why-egypt::before { -webkit-text-stroke: 1px rgba(74,120,168,0.05); }
body.light-mode .step-num { background: #ffffff; border-color: var(--accent); }
body.light-mode .service-tag { background: rgba(74,120,168,0.08); color: var(--accent); border-color: rgba(74,120,168,0.22); }
body.light-mode .section-label::before { background: var(--accent); }
body.light-mode .blog-pull-quote { background: rgba(74,120,168,0.05); border-left-color: var(--accent); }
body.light-mode .faq-answer-inner { color: var(--text-muted); }
body.light-mode .hero-badge { background: rgba(74,120,168,0.08); border-color: rgba(74,120,168,0.25); }

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text-body);
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--white);
  line-height: 1.2;
}
h1 { font-size: clamp(2rem, 3.5vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.45rem, 2.5vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 1.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: clamp(1rem, 1vw, 1.3rem); font-weight: 600; }
p { font-size: clamp(0.9rem, 0.9vw, 1.05rem); font-weight: 300; }
a { text-decoration: none; color: inherit; }

.accent { color: var(--accent); }
.muted { color: var(--text-muted); }

/* ── Layout ── */
.container { max-width: 1400px; margin: 0 auto; padding: 0 clamp(1rem, 4vw, 2.5rem); }
.section { padding: clamp(3rem, 7vw, 6rem) 0; }
.section-sm { padding: clamp(2rem, 4vw, 4rem) 0; }
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 3vw, 3rem); align-items: center; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2vw, 2rem); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(1rem, 1.5vw, 1.5rem); }

/* ── Section Label ── */
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1rem;
}
.section-label::before {
  content: ''; display: block;
  width: 24px; height: 2px; background: var(--accent);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 0.85rem 2rem; border-radius: 4px;
  font-family: var(--font-body); font-size: 0.9rem; font-weight: 500;
  cursor: pointer; transition: var(--transition); border: none;
}
.btn-primary {
  background: var(--accent); color: #000000 !important;
}
.btn-primary:hover { background: var(--accent-glow); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,184,217,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid var(--border-accent);
}
.btn-outline:hover { background: var(--accent-dim); border-color: var(--accent); transform: translateY(-2px); }
.btn-ghost { background: transparent; color: var(--accent); padding: 0; font-weight: 500; }
.btn-ghost:hover { gap: 12px; }
.btn svg { width: 16px; height: 16px; flex-shrink: 0; transition: transform 0.3s; }
.btn-ghost:hover svg { transform: translateX(4px); }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.nav.scrolled {
  background: rgba(10,22,40,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 0;
}
.nav-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.nav-logo {
  font-family: var(--font-display); font-size: 1rem; font-weight: 800;
  color: var(--white); letter-spacing: -0.01em; white-space: nowrap;
  width: fit-content;
}
.nav-links {
  display: flex; align-items: center; gap: clamp(1.2rem, 1.8vw, 2rem); list-style: none;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 400; color: var(--text-body);
  transition: color 0.2s; position: relative; white-space: nowrap;
}
.nav-links a:hover, .nav-links a.active { color: var(--white); }
.nav-links a.active::after {
  content: ''; position: absolute; bottom: -4px; left: 0; right: 0;
  height: 2px; background: var(--accent); border-radius: 99px;
}
.dropdown-menu a.active::after { display: none; }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: 0.7rem; }
.dropdown-menu {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  background: var(--navy-mid); border: 1px solid var(--border);
  border-radius: 8px; padding: 0.5rem; min-width: 200px;
  box-shadow: var(--shadow-card);
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block; padding: 0.6rem 1rem; border-radius: 4px;
  font-size: 0.85rem; white-space: nowrap;
}
.dropdown-menu a:hover { background: var(--accent-dim); color: var(--accent); }

.nav-right {
  display: flex; align-items: center; gap: 0.75rem;
  justify-content: flex-end;
}
/* In-ul CTA: mobile panel only — hidden on desktop */
.nav-cta-item { list-style: none; display: none; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--white); border-radius: 99px; transition: var(--transition); }

/* ── Hero ── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden;
  background: var(--gradient-hero);
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.18;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(10,22,40,0.97) 45%, rgba(10,22,40,0.5) 100%);
}
.hero-grid-lines {
  position: absolute; inset: 0; z-index: 0; opacity: 0.04;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px;
}
.hero-content { position: relative; z-index: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  padding: 0.4rem 1rem; border-radius: 99px;
  font-size: 0.78rem; font-weight: 500; color: var(--accent);
  margin-bottom: 1.5rem; letter-spacing: 0.05em;
}
.hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--accent); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(2rem, 3.5vw, 5rem); margin-bottom: 1.2rem; }
.hero h1 em { font-style: normal; color: var(--accent); }
.hero-sub { font-size: 1.1rem; color: var(--text-body); max-width: 560px; margin-bottom: 2.5rem; font-weight: 300; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats { display: flex; gap: clamp(1.5rem, 3vw, 2.5rem); flex-wrap: wrap; }
.hero-stat-num { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 800; color: var(--white); line-height: 1; }
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); margin-top: 4px; text-transform: uppercase; letter-spacing: 0.08em; }

/* ── Marquee ── */
.marquee-section {
  padding: 1.5rem 0; background: var(--accent); overflow: hidden;
}
.marquee-track {
  display: flex; gap: 3rem; animation: marquee 25s linear infinite; width: max-content;
}
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  white-space: nowrap; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--navy); display: flex; align-items: center; gap: 1rem;
}
.marquee-item::after { content: '✦'; opacity: 0.5; }

/* ── Cards ── */
.card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: clamp(1.2rem, 2.5vw, 2rem); transition: var(--transition);
  backdrop-filter: blur(8px);
}
.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-4px);
  box-shadow: var(--shadow-accent);
}
.card-icon {
  width: 48px; height: 48px; border-radius: 10px;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
}
.card-icon svg { width: 22px; height: 22px; stroke: var(--accent); fill: none; stroke-width: 1.8; }

/* ── Stat Cards ── */
.stat-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1rem, 2vw, 1.5rem);
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stat-num {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.4;
}

/* ── Section Header ── */
.section-header { max-width: 740px; margin-bottom: 3.5rem; }
.section-header.center { margin: 0 auto 3.5rem; text-align: center; }
.section-header.center .section-label { justify-content: center; }
.section-header.center .section-label::before { display: none; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--text-muted); font-size: 1.05rem; }

/* ── Why Egypt ── */
.why-egypt {
  background: var(--navy-mid); position: relative; overflow: hidden;
}
.why-egypt::before {
  content: 'EGYPT'; position: absolute; right: -2rem; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display); font-size: 18rem; font-weight: 800;
  color: transparent; -webkit-text-stroke: 1px rgba(0,184,217,0.06);
  pointer-events: none; white-space: nowrap;
}
.egypt-facts { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; }
.egypt-fact {
  padding: 1.5rem; background: var(--accent-dim);
  border: 1px solid var(--border-accent); border-radius: 8px;
}
.egypt-fact-num { font-family: var(--font-display); font-size: 2rem; font-weight: 800; color: var(--accent); }
.egypt-fact-label { font-size: 0.85rem; color: var(--text-muted); margin-top: 4px; }

/* ── Testimonials ── */
.testimonials-section { background: var(--navy-mid); }
.testimonial-card {
  background: var(--card-bg-solid); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; position: relative;
}
.testimonial-card::before {
  content: '\201C'; position: absolute; top: 1rem; right: 1.5rem;
  font-family: var(--font-display); font-size: 4rem; color: var(--accent);
  opacity: 0.3; line-height: 1;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-body); margin-bottom: 1.5rem; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--accent-dim); border: 1.5px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 0.85rem; font-weight: 700; color: var(--accent);
}
.testimonial-name { font-size: 0.9rem; font-weight: 500; color: var(--white); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── Process Steps ── */
.process-steps { counter-reset: step; display: grid; grid-template-columns: repeat(4,1fr); gap: 0; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 24px; left: 12.5%; right: 12.5%;
  height: 1px; background: var(--border-accent); z-index: 0;
}
.process-step { text-align: center; padding: 0 1rem; position: relative; z-index: 1; }
.step-num {
  width: 48px; height: 48px; border-radius: 50%; margin: 0 auto 1.2rem;
  background: var(--navy-mid); border: 2px solid var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 800; color: var(--accent);
}
.process-step h4 { margin-bottom: 0.5rem; font-size: 0.95rem; }
.process-step p { font-size: 0.82rem; color: var(--text-muted); }

/* ── CTA Banner ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  border: 1px solid var(--border-accent);
  border-radius: 16px; padding: clamp(2rem, 5vw, 4rem) clamp(1.5rem, 5vw, 4rem); text-align: center;
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at 50% 50%, rgba(0,184,217,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.cta-banner h2 { margin-bottom: 1rem; }
.cta-banner p { color: var(--text-muted); max-width: 520px; margin: 0 auto 2rem; }
.cta-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Forms ── */
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text-muted); margin-bottom: 0.4rem; text-transform: uppercase; letter-spacing: 0.06em; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 6px; color: var(--white);
  font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
  background: rgba(0,184,217,0.04);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select option { background: var(--navy-mid); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Team Cards ── */
.team-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 1.5rem; text-align: center;
  transition: var(--transition);
}
.team-card:hover { border-color: var(--border-accent); transform: translateY(-4px); }
.team-avatar {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--accent-dim); border: 2px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.4rem; font-weight: 800; color: var(--accent);
}
.team-card h4 { margin-bottom: 0.25rem; }
.team-card .role { font-size: 0.82rem; color: var(--accent); margin-bottom: 0.5rem; }
.team-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ── Page Hero (inner pages) ── */
.page-hero {
  background: var(--gradient-hero); padding: clamp(6rem, 10vw, 9rem) 0 clamp(3rem, 5vw, 5rem);
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(var(--accent) 1px, transparent 1px),
    linear-gradient(90deg, var(--accent) 1px, transparent 1px);
  background-size: 60px 60px; opacity: 0.03; pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.78rem; color: var(--text-muted); margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--text-muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--accent); }
.breadcrumb span { color: var(--accent); }

/* ── Service Detail ── */
.service-detail {
  background: var(--card-bg-solid); border: 1px solid var(--border);
  border-radius: 12px; padding: clamp(1.5rem, 3vw, 2.5rem); margin-bottom: 1.5rem;
}
.service-detail h3 { margin-bottom: 0.8rem; }
.service-detail p { color: var(--text-muted); margin-bottom: 1.5rem; }
.service-includes { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.service-tag {
  font-size: 0.78rem; padding: 0.3rem 0.8rem;
  background: var(--accent-dim); color: var(--accent);
  border: 1px solid var(--border-accent); border-radius: 99px;
}

/* ── Case Study ── */
.case-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; overflow: hidden; transition: var(--transition);
  position: relative;
}
.case-card:hover { border-color: var(--border-accent); transform: translateY(-4px); box-shadow: var(--shadow-accent); cursor: pointer; }
.case-card .btn::after { content: ''; position: absolute; inset: 0; z-index: 1; }
.case-img {
  height: 200px; background: linear-gradient(135deg, var(--navy-light), var(--navy-mid));
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 3rem; font-weight: 800;
  color: var(--accent); overflow: hidden;
}
.case-img svg { opacity: 0.4; }
.case-img img { opacity: 0.75; width: 100%; height: 100%; object-fit: cover; }
.case-body { padding: 1.5rem; }
.case-industry {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 0.5rem;
}
.case-body h3 { font-size: 1.1rem; margin-bottom: 0.7rem; }
.case-body p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 1.2rem; }
.case-metric { font-size: 1.8rem; font-weight: 800; color: var(--accent); font-family: var(--font-display); }
.case-metric-label { font-size: 0.75rem; color: var(--text-muted); }

/* ── Pricing ── */
.pricing-card {
  background: var(--card-bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 2rem; transition: var(--transition);
}
.pricing-card.featured {
  border-color: var(--accent); background: var(--accent-dim);
  position: relative;
}
.pricing-card.featured::before {
  content: 'Most Popular'; position: absolute; top: -1px; left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background: var(--accent); color: var(--navy);
  font-size: 0.72rem; font-weight: 700; padding: 0.25rem 1rem;
  border-radius: 99px; letter-spacing: 0.08em; white-space: nowrap;
}
.pricing-name { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; color: var(--white); margin-bottom: 0.5rem; }
.pricing-desc { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.5rem; }
.pricing-price { font-family: var(--font-display); font-size: 2.2rem; font-weight: 800; color: var(--accent); margin-bottom: 1.5rem; }
.pricing-price span { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; }
.pricing-features { list-style: none; margin-bottom: 2rem; }
.pricing-features li {
  font-size: 0.85rem; color: var(--text-body); padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
}
.pricing-features li::before { content: '✓'; color: var(--accent); font-weight: 700; flex-shrink: 0; }

/* ── FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border); overflow: hidden;
}
.faq-question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 0; cursor: pointer;
  font-weight: 500; color: var(--white); font-size: 0.95rem;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-icon { font-size: 1.2rem; color: var(--accent); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
/* FAQ answers visible by default — JS collapses them when available */
.faq-answer { max-height: none; overflow: visible; }
.js-loaded .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.js-loaded .faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 0 1.2rem; font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

/* ── Footer ── */
.footer {
  background: var(--navy-mid); border-top: 1px solid var(--border);
  padding: clamp(2.5rem, 5vw, 4rem) 0 2rem;
}
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr; gap: clamp(1rem, 2vw, 2rem); margin-bottom: 2rem; }
.footer-brand p { font-size: 0.88rem; color: var(--text-muted); margin: 1rem 0 1.5rem; max-width: 280px; }
.footer-col h5 { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.88rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-socials { display: flex; gap: 12px; }
.social-btn {
  width: 36px; height: 36px; border-radius: 6px;
  background: var(--accent-dim); border: 1px solid var(--border-accent);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); color: var(--accent);
  font-size: 0.85rem; font-weight: 700;
}
.social-btn img { width: 16px; height: 16px; object-fit: contain; filter: brightness(0) invert(1); opacity: 0.8; transition: var(--transition); }
.social-btn:hover { background: var(--accent); color: var(--navy); }
.social-btn:hover img { filter: brightness(0); opacity: 1; }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--text-muted); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: 0.8rem; color: var(--text-muted); transition: color 0.2s; }
.footer-bottom-links a:hover { color: var(--accent); }

/* ── Certifications ── */
.cert-badges { display: flex; flex-wrap: wrap; gap: 1rem; }
.cert-badge {
  display: flex; align-items: center; gap: 8px;
  padding: 0.6rem 1.2rem; border: 1px solid var(--border-accent);
  border-radius: 8px; background: var(--accent-dim);
  font-size: 0.8rem; font-weight: 600; color: var(--accent);
}
.cert-badge svg { width: 16px; height: 16px; }

/* ── Animations ── */
/* Visible by default — JS adds .js-loaded to enable animations (progressive enhancement) */
.fade-up { opacity: 1; transform: translateY(0); }
.js-loaded .fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.js-loaded .fade-up.visible { opacity: 1; transform: translateY(0); }
.js-loaded .fade-up:nth-child(2) { transition-delay: 0.1s; }
.js-loaded .fade-up:nth-child(3) { transition-delay: 0.2s; }
.js-loaded .fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */

/* Switch to hamburger at 900px */
@media (max-width: 900px) {
  .nav-inner { grid-template-columns: 1fr auto; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta-desktop { display: none !important; }
  .nav-cta-item { display: list-item; }
}

/* Mobile menu open state — dropdown panel below nav bar */
.nav.mobile-open .nav-links {
  display: flex !important; flex-direction: column;
  position: absolute; top: 100%; left: 0; right: 0;
  background: rgba(10,22,40,0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-accent);
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  align-items: stretch; gap: 0; font-size: 0.95rem; z-index: 999;
  overflow-y: auto; max-height: calc(100vh - 70px);
  padding-bottom: 0.5rem;
}
.nav.mobile-open .nav-links > li {
  border-bottom: 1px solid var(--border);
}
.nav.mobile-open .nav-links > li > a {
  display: block; padding: 0.9rem 1.5rem; width: 100%;
}
/* CTA button inside mobile panel */
.nav.mobile-open .nav-cta-item {
  border-bottom: none !important;
  padding: 0.75rem 1.5rem 0.25rem;
}
.nav.mobile-open .nav-cta-item .nav-cta {
  width: 100%;
  justify-content: center;
}

/* Mobile dropdowns — tap to open */
.nav.mobile-open .nav-dropdown .dropdown-menu {
  display: none; position: static; transform: none;
  background: rgba(0,184,217,0.05);
  border: none; border-top: 1px solid var(--border);
  border-radius: 0; padding: 0; min-width: unset;
  box-shadow: none; margin: 0; width: 100%;
}
.nav.mobile-open .nav-dropdown .dropdown-menu a {
  padding: 0.75rem 1.5rem 0.75rem 2.5rem;
  font-size: 0.85rem; display: block; width: 100%;
}
.nav.mobile-open .nav-dropdown.open .dropdown-menu { display: block; }
.nav.mobile-open .nav-dropdown.open > a::after { content: ' ▴'; }

@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .process-steps { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .process-steps::before { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .egypt-facts { grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .pricing-card.featured { margin-top: 1rem; }
  #theme-toggle { display: none; }
}

@media (max-width: 480px) {
  /* Hero — stop it filling the whole screen on phones */
  .hero { min-height: auto; padding: 90px 0 2.5rem; align-items: flex-start; }
  .hero-badge { margin-bottom: 1rem; font-size: 0.72rem; }
  .hero h1 { font-size: 1.75rem; margin-bottom: 0.9rem; }
  .hero-sub { font-size: 0.9rem; margin-bottom: 1.5rem; }
  .hero-actions { margin-bottom: 2rem; flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .hero-stats { flex-direction: row; flex-wrap: wrap; gap: 1rem 2rem; }

  .cta-actions { flex-direction: column; align-items: center; }
  .cta-actions .btn { width: 100%; justify-content: center; max-width: 320px; }
  .egypt-facts { grid-template-columns: 1fr 1fr; }
  .btn { padding: 0.75rem 1.5rem; font-size: 0.85rem; }
  .section-header { margin-bottom: 2.5rem; }
  h4 { font-size: 1rem; }
  p { font-size: 0.92rem; }
  .egypt-facts { gap: 0.75rem; }
  .egypt-fact { padding: 1rem; }
  .egypt-fact-num { font-size: 1.6rem; }
}
