/* =============================================
   MASHURA LABS — Global Stylesheet
   ============================================= */

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  /* Brand palette — deep teal + warm gold on near-black */
  --ink:       #0E1A1F;
  --ink-mid:   #162229;
  --teal:      #1A7A6E;
  --teal-light:#22A090;
  --teal-pale: #E8F4F2;
  --gold:      #C9963A;
  --gold-light:#E0AF55;
  --white:     #FFFFFF;
  --off-white: #F6F9F8;
  --gray-100:  #EEF2F1;
  --gray-200:  #D5DEDC;
  --gray-500:  #7A9290;
  --gray-700:  #3D5452;
  --gray-900:  #0E1A1F;
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --shadow-sm: 0 2px 8px rgba(14,26,31,.08);
  --shadow-md: 0 6px 24px rgba(14,26,31,.12);
  --shadow-lg: 0 16px 48px rgba(14,26,31,.18);
  --transition: .25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--gray-900);
  background: var(--white);
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* --- Typography --- */
h1,h2,h3,h4 { line-height: 1.2; color: var(--ink); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); font-weight: 700; }
h3 { font-size: 1.2rem; font-weight: 600; }
p  { color: var(--gray-700); }

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .75rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .85rem 2rem;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,150,58,.35);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,122,110,.3);
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: var(--ink);
  box-shadow: var(--shadow-md);
  padding: .7rem 0;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
  line-height: 1;
}
.nav-logo span { color: var(--gold); }
.nav-logo sub {
  font-size: .55rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  vertical-align: middle;
  margin-left: .3rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  color: rgba(255,255,255,.8);
  font-weight: 500;
  font-size: .78rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-book-btn { padding: .6rem 1.4rem; font-size: .9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.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 */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--ink);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 600;
  transition: color var(--transition);
}
.mobile-menu a:hover { color: var(--gold); }

/* --- Hero --- */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 55%, #1a3030 100%);
  display: flex;
  align-items: center;
  padding: 7rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -8%;
  width: 65%; height: 120%;
  background: radial-gradient(circle, rgba(26,122,110,.16) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -5%;
  width: 50%; height: 80%;
  background: radial-gradient(circle, rgba(201,150,58,.1) 0%, transparent 70%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 4rem;
  position: relative;
  z-index: 1;
}
.hero-eyebrow {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 2px;
  background: var(--gold);
}
.hero h1 { color: var(--white); margin-bottom: 1.4rem; }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub {
  color: rgba(255,255,255,.7);
  font-size: 1.1rem;
  max-width: 580px;
  margin-bottom: 2.4rem;
  line-height: 1.8;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 3rem;
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.stat-num {
  font-size: 2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: .78rem; color: rgba(255,255,255,.45); margin-top: .35rem; letter-spacing: .05em; text-transform: uppercase; }

/* Arabic word hero card */
.hero-word-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  width: 260px;
  flex-shrink: 0;
}
.arabic-word {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: .75rem;
  direction: rtl;
  font-family: 'Georgia', serif;
}
.arabic-transliteration {
  font-size: .85rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.arabic-meaning {
  font-size: .9rem;
  color: rgba(255,255,255,.75);
  line-height: 1.65;
}

/* --- Section base --- */
section { padding: 5.5rem 0; }
.section-header { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-header p { margin-top: .75rem; font-size: 1.05rem; }

/* --- Pillars / why us --- */
.why-us { background: var(--off-white); }
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}
.pillar-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
  border-bottom: 3px solid transparent;
}
.pillar-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-bottom-color: var(--teal);
}
.pillar-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  background: linear-gradient(135deg, var(--teal), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  margin-bottom: 1.25rem;
}
.pillar-card h3 { margin-bottom: .5rem; }

/* --- Services preview --- */
.services-preview { background: var(--white); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.service-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  padding: 2rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
}
.service-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.service-icon { font-size: 2rem; margin-bottom: 1rem; }
.service-card h3 { margin-bottom: .6rem; }
.service-card p { font-size: .94rem; }

/* --- Testimonials --- */
.testimonials { background: var(--ink); }
.testimonials .section-label { color: var(--gold); }
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header p { color: rgba(255,255,255,.55); }
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.testi-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-md);
  padding: 2rem;
}
.testi-stars { color: var(--gold); font-size: .9rem; margin-bottom: 1rem; }
.testi-quote {
  color: rgba(255,255,255,.82);
  font-size: .97rem;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testi-author { display: flex; align-items: center; gap: .9rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--white); font-size: 1rem;
}
.testi-name { font-weight: 600; color: var(--white); font-size: .9rem; }
.testi-title { font-size: .8rem; color: rgba(255,255,255,.45); }

/* --- CTA --- */
.cta-section {
  background: linear-gradient(135deg, var(--teal) 0%, var(--ink) 100%);
  text-align: center;
  padding: 5.5rem 0;
}
.cta-section h2 { color: var(--white); margin-bottom: 1rem; }
.cta-section p { color: rgba(255,255,255,.7); max-width: 520px; margin: 0 auto 2rem; font-size: 1.05rem; }

/* --- Page Hero (inner pages) --- */
.page-hero {
  background: linear-gradient(135deg, var(--ink) 0%, var(--ink-mid) 100%);
  padding: 9rem 0 5.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -30%; right: -10%;
  width: 60%; height: 160%;
  background: radial-gradient(circle, rgba(26,122,110,.12) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero h1 { color: var(--white); margin-bottom: .75rem; position: relative; }
.page-hero p {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  max-width: 580px;
  margin: 0 auto;
  position: relative;
}

/* --- About --- */
.about-story { background: var(--white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4.5rem;
  align-items: start;
}
/* Mashura meaning panel */
.mashura-panel {
  background: linear-gradient(160deg, var(--ink) 0%, #1a3030 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  color: var(--white);
  position: sticky;
  top: 7rem;
}
.mashura-panel .arabic-big {
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  direction: rtl;
  font-family: 'Georgia', serif;
  line-height: 1;
  margin-bottom: .5rem;
  text-align: center;
}
.mashura-panel .latin {
  text-align: center;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 2rem;
}
.meaning-line {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.meaning-line:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.meaning-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: .55rem;
}
.meaning-line strong { display: block; color: var(--gold); font-size: .82rem; letter-spacing: .06em; text-transform: uppercase; margin-bottom: .2rem; }
.meaning-line p { color: rgba(255,255,255,.72); font-size: .9rem; line-height: 1.65; }

.about-text h2 { margin-bottom: 1.2rem; }
.about-text p { margin-bottom: 1.1rem; line-height: 1.85; }
.marwan-signature {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--gray-200);
  display: flex;
  align-items: center;
  gap: 1.25rem;
}
.signature-avatar {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--white);
  flex-shrink: 0;
}
.signature-name { font-size: 1rem; font-weight: 700; color: var(--ink); }
.signature-title { font-size: .84rem; color: var(--gray-500); margin-top: .15rem; }

.values-section { background: var(--off-white); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 2rem;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--teal);
}
.value-card h3 { margin-bottom: .6rem; }

/* Marwan bio section */
.bio-section { background: var(--white); }
.bio-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 3.5rem;
  align-items: start;
}
.bio-portrait {
  width: 280px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  flex-shrink: 0;
}
.bio-portrait-inner {
  height: 340px;
  background: linear-gradient(160deg, var(--ink) 0%, var(--teal) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  font-weight: 800;
  color: var(--white);
}
.bio-portrait-info {
  padding: 1.5rem;
  background: var(--ink);
  text-align: center;
}
.bio-portrait-info h3 { color: var(--white); font-size: 1rem; margin-bottom: .3rem; }
.bio-portrait-info p { color: var(--gold); font-size: .8rem; font-weight: 600; letter-spacing: .06em; }

.bio-content .section-label { display: block; }
.bio-content h2 { margin-bottom: 1.2rem; }
.bio-content p { margin-bottom: 1rem; line-height: 1.85; }
.bio-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.75rem;
}
.credential-tag {
  background: var(--teal-pale);
  color: var(--teal);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 99px;
  border: 1px solid rgba(26,122,110,.2);
}

/* --- Services --- */
.services-list { background: var(--white); }
.service-full {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2.5rem;
  padding: 2.5rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 2rem;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.service-full:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.service-full-icon {
  width: 64px; height: 64px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--teal), var(--ink));
  display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
  align-self: flex-start;
}
.service-full h3 { font-size: 1.3rem; margin-bottom: .6rem; }
.service-full > .service-body > p { margin-bottom: 1rem; }
.service-tags { display: flex; flex-wrap: wrap; gap: .5rem; }
.service-tag {
  background: var(--gray-100);
  color: var(--ink);
  font-size: .8rem;
  font-weight: 600;
  padding: .3rem .85rem;
  border-radius: 99px;
}

.pricing-section { background: var(--off-white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pricing-card.featured {
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}
.pricing-card:hover { box-shadow: var(--shadow-md); }
.pricing-badge {
  position: absolute;
  top: -14px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .08em;
  padding: .35rem 1.1rem;
  border-radius: 99px;
}
.pricing-tier { font-size: .78rem; font-weight: 700; color: var(--teal); letter-spacing: .12em; text-transform: uppercase; margin-bottom: .5rem; }
.pricing-name { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: .5rem; }
.pricing-price { font-size: 2.2rem; font-weight: 800; color: var(--ink); line-height: 1; margin-bottom: .25rem; }
.pricing-price sub { font-size: 1rem; font-weight: 500; color: var(--gray-500); }
.pricing-desc { font-size: .88rem; color: var(--gray-500); margin-bottom: 1.75rem; }
.pricing-features { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 2rem; }
.pricing-feature {
  display: flex; align-items: flex-start; gap: .7rem;
  font-size: .9rem; color: var(--gray-700);
}
.pricing-feature .check { color: var(--teal); flex-shrink: 0; }

/* Process steps */
.process-section { background: var(--off-white); }
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  position: relative;
}
.process-steps::before {
  content: '';
  position: absolute;
  top: 36px; left: 10%; right: 10%;
  height: 2px;
  background: linear-gradient(to right, var(--teal), var(--gold));
  z-index: 0;
}
.process-step {
  text-align: center;
  padding: 0 1.25rem 2rem;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--ink);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.25rem;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
}
.process-step h3 { margin-bottom: .5rem; font-size: 1rem; }
.process-step p { font-size: .87rem; }

/* Industries */
.industries-section { background: var(--white); }
.industries-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1rem;
}
.industry-pill {
  background: var(--gray-100);
  border-radius: var(--radius-md);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: background var(--transition), transform var(--transition);
  cursor: default;
}
.industry-pill:hover { background: var(--ink); transform: translateY(-3px); }
.industry-pill:hover .industry-name { color: var(--white); }
.industry-icon { font-size: 1.5rem; margin-bottom: .5rem; }
.industry-name { font-size: .82rem; font-weight: 600; color: var(--ink); transition: color var(--transition); }

/* --- Contact --- */
.contact-section { background: var(--off-white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.contact-info h2 { margin-bottom: 1rem; }
.contact-info p { margin-bottom: 1.5rem; }
.contact-details { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-item-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-item-text strong { display: block; font-size: .84rem; color: var(--ink); font-weight: 600; }
.contact-item-text span { font-size: .92rem; color: var(--gray-700); }

.contact-form-wrap {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}
.form-title { font-size: 1.3rem; font-weight: 700; color: var(--ink); margin-bottom: 1.75rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .45rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .8rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-900);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(26,122,110,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23455e5c' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}
.form-submit-row { display: flex; justify-content: flex-end; margin-top: .5rem; }
.form-submit-row .btn { width: 100%; justify-content: center; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { color: var(--ink); margin-bottom: .5rem; }

/* FAQ */
.faq-section { background: var(--white); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 1.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .faq-icon { font-size: .85rem; color: var(--teal); transition: transform var(--transition); flex-shrink: 0; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer-inner { padding: 0 1.5rem 1.25rem; color: var(--gray-700); font-size: .95rem; line-height: 1.75; }

/* Offices */
.map-section { background: var(--off-white); }
.offices-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}
.office-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}
.office-flag { font-size: 2rem; margin-bottom: .75rem; }
.office-card h3 { margin-bottom: .4rem; }
.office-card address { font-style: normal; color: var(--gray-700); font-size: .9rem; line-height: 1.7; margin-bottom: 1rem; }
.office-contact a {
  display: flex; align-items: center; gap: .5rem;
  color: var(--teal); font-size: .88rem; font-weight: 500; margin-bottom: .4rem;
  transition: color var(--transition);
}
.office-contact a:hover { color: var(--ink); }

/* --- Booking modal --- */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,26,31,.7);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  backdrop-filter: blur(4px);
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  width: 100%;
  max-width: 520px;
  box-shadow: var(--shadow-lg);
  position: relative;
  animation: slideUp .3s ease;
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.modal-close {
  position: absolute;
  top: 1.2rem; right: 1.2rem;
  background: var(--gray-100);
  border: none;
  border-radius: 50%;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--gray-700);
  transition: background var(--transition);
}
.modal-close:hover { background: var(--gray-200); }
.modal-header { text-align: center; margin-bottom: 1.75rem; }
.modal-header .modal-icon { font-size: 2.5rem; margin-bottom: .75rem; }
.modal-header h2 { font-size: 1.45rem; margin-bottom: .4rem; }
.modal-header p { font-size: .92rem; color: var(--gray-700); }
.time-slots { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.time-slot {
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  text-align: center;
  cursor: pointer;
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: all var(--transition);
}
.time-slot:hover { border-color: var(--teal); color: var(--teal); background: rgba(26,122,110,.05); }
.time-slot.selected { border-color: var(--teal); background: var(--teal); color: var(--white); }
.modal-success { display: none; text-align: center; padding: 1.5rem 0; }
.modal-success .success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.modal-success h3 { color: var(--ink); margin-bottom: .5rem; font-size: 1.3rem; }
.modal-success p { color: var(--gray-500); font-size: .95rem; }

/* --- Footer --- */
.footer { background: var(--ink); padding: 4rem 0 2rem; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand p { color: rgba(255,255,255,.45); font-size: .9rem; margin: .75rem 0 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: .75rem; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .9rem;
  transition: background var(--transition), color var(--transition);
}
.social-btn:hover { background: var(--gold); color: var(--white); }
.footer-col h4 { color: var(--white); font-size: .85rem; font-weight: 700; margin-bottom: 1.2rem; letter-spacing: .07em; text-transform: uppercase; }
.footer-col ul { display: flex; flex-direction: column; gap: .7rem; }
.footer-col ul li a { color: rgba(255,255,255,.45); font-size: .9rem; transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p { color: rgba(255,255,255,.3); font-size: .84rem; }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { color: rgba(255,255,255,.3); font-size: .84rem; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--white); }

/* Fade-in utility */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .mashura-panel { position: static; }
  .contact-grid { grid-template-columns: 1fr; }
  .bio-grid { grid-template-columns: 1fr; }
  .bio-portrait { width: 100%; max-width: 320px; margin: 0 auto; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-word-card { display: none; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-stats { gap: 2rem; flex-wrap: wrap; }
  .form-row { grid-template-columns: 1fr; }
  .service-full { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .pricing-card.featured { transform: none; }
  .process-steps::before { display: none; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .time-slots { grid-template-columns: 1fr; }
}
