/* ===================================================
   BAWAR SALAH SAEED — IR PERSONAL WEBSITE
   Design: Dark Navy + Warm Gold, Scholarly & Premium
   =================================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Inter:wght@300;400;500;600&family=Cormorant+Garamond:ital,wght@0,400;1,400&display=swap');

/* ─── CSS Variables ─── */
:root {
  --navy:        #0a0f1e;
  --navy-mid:    #0f1729;
  --navy-light:  #16213e;
  --navy-card:   #1a2744;
  --gold:        #c9a84c;
  --gold-light:  #e8c97a;
  --gold-pale:   #f5e6b8;
  --cream:       #f8f4ec;
  --text-main:   #e8e4da;
  --text-muted:  #9a9080;
  --text-dim:    #6a6058;
  --accent-teal: #4a9e8e;
  --border:      rgba(201,168,76,0.2);
  --glass:       rgba(255,255,255,0.04);
  --shadow:      0 20px 60px rgba(0,0,0,0.5);
  --shadow-gold: 0 0 40px rgba(201,168,76,0.12);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection { background: var(--gold); color: var(--navy); }

/* ─── Scrollbar ─── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy-mid); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ─── Typography ─── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--cream);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.1rem; }

p { color: var(--text-main); font-size: 0.97rem; }

a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }

img { max-width: 100%; display: block; }

/* ─── Utility ─── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.gold { color: var(--gold); }
.italic { font-style: italic; }
.serif { font-family: 'Playfair Display', serif; }

.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.75rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(201,168,76,0.06);
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}

.text-center { text-align: center; }
.text-center .divider { margin: 1.2rem auto; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), #b8922e);
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201,168,76,0.45);
  color: var(--navy);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ─── Navigation ─── */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--transition);
  border-bottom: 1px solid transparent;
}

#navbar.scrolled {
  background: rgba(10, 15, 30, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: var(--border);
  padding: 0.8rem 0;
}

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

.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1.5px solid rgba(201,168,76,0.4);
  object-fit: cover;
  flex-shrink: 0;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.nav-logo:hover .nav-logo-img {
  border-color: var(--gold);
  box-shadow: 0 0 10px rgba(201,168,76,0.3);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  transition: color var(--transition);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

.nav-cta {
  padding: 0.5rem 1.2rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 4px !important;
  color: var(--gold) !important;
}
.nav-cta:hover { background: rgba(201,168,76,0.1); }

/* ─── Mobile Nav ─── */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--gold);
  transition: all var(--transition);
}

/* ─── Hero Section ─── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.06) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(74,158,142,0.05) 0%, transparent 50%),
    linear-gradient(160deg, #0a0f1e 0%, #0d1628 50%, #0a1020 100%);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1.5rem;
}

.hero-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}

.hero-eyebrow-text {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
}

.hero-title { margin-bottom: 0.5rem; }
.hero-title-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.stat-item {}
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 0.3rem;
}

/* Hero Image Card */
.hero-image-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-image-card {
  position: relative;
  width: 380px;
  height: 440px;
}

.hero-image-frame {
  width: 100%;
  height: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-gold);
  background: var(--navy-card);
}

.hero-image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.9) brightness(0.95);
}

.hero-card-badge {
  position: absolute;
  bottom: -1.5rem;
  left: -1.5rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.hero-card-badge-title {
  font-size: 0.72rem;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.3rem;
}

.hero-card-badge-val {
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  color: var(--cream);
}

.hero-deco-ring {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.12);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

/* ─── Section Headings ─── */
.section-head { margin-bottom: 3.5rem; }
.section-head .badge { margin-bottom: 1rem; }

/* ─── About Snapshot ─── */
#about-snap {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.snap-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.snap-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.snap-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); }
.snap-card:hover::before { transform: scaleX(1); }

.snap-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}
.snap-card h3 { font-size: 1.15rem; margin-bottom: 0.6rem; }
.snap-card p { font-size: 0.88rem; color: var(--text-muted); }

/* ─── Featured Topics ─── */
#topics {}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.topic-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
  transition: all var(--transition);
  cursor: default;
}
.topic-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(201,168,76,0.08);
  transform: translateY(-3px);
}

.topic-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.25rem 0.7rem;
  border-radius: 3px;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  margin-bottom: 1rem;
}

.topic-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.7rem;
  line-height: 1.4;
}
.topic-card p {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ─── Quote Block ─── */
#quote-block {
  background: linear-gradient(135deg, var(--navy-light), var(--navy-card));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.quote-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.4;
  display: block;
  margin-bottom: 1rem;
}

blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-style: italic;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}

.quote-attr {
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.1em;
}

/* ─── Blog Preview ─── */
#blog-preview {}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.8rem;
}

.blog-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(201,168,76,0.35);
}

.blog-card-header {
  padding: 1.5rem 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.blog-cat {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
}

.blog-date {
  font-size: 0.75rem;
  color: var(--text-dim);
}

.blog-card-body { padding: 1rem 1.5rem 1.5rem; }
.blog-card-body h3 { font-size: 1.08rem; margin-bottom: 0.6rem; line-height: 1.45; }
.blog-card-body p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1rem; }

.blog-read-more {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}
.blog-read-more:hover { gap: 0.7rem; color: var(--gold-light); }

/* ─── Contact Teaser ─── */
#contact-teaser {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
}

.contact-teaser-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}
.contact-teaser-inner p { color: var(--text-muted); margin: 1rem 0 2rem; }

/* ─── Footer ─── */
footer {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  padding: 2.5rem 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--cream);
}
.footer-logo span { color: var(--gold); }

.footer-copy {
  font-size: 0.8rem;
  color: var(--text-dim);
}

.footer-socials {
  display: flex;
  gap: 1rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.social-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
}

/* ─── Page Hero (inner pages) ─── */
.page-hero {
  padding: 10rem 0 4rem;
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-mid) 100%);
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(201,168,76,0.06) 0%, transparent 60%);
  pointer-events: none;
}

.page-hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

/* ─── About Page ─── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 5rem;
  align-items: start;
}

.about-image-col {
  position: sticky;
  top: 100px;
}

.about-image-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow), var(--shadow-gold);
  margin-bottom: 2rem;
}

.about-image-wrap img { width: 100%; height: auto; filter: saturate(0.85); }

.about-quick-info {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.info-row:last-child { border-bottom: none; }
.info-label { font-size: 0.8rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.info-val { font-size: 0.88rem; color: var(--cream); }

.about-content-col p { color: var(--text-muted); margin-bottom: 1.2rem; line-height: 1.85; }

.skills-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 1.5rem 0;
}

.skill-tag {
  padding: 0.4rem 1rem;
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 0.82rem;
  color: var(--text-muted);
  transition: all var(--transition);
}
.skill-tag:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.06); }

.interest-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.interest-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.2rem;
  transition: all var(--transition);
}
.interest-card:hover { border-color: var(--gold); transform: translateY(-2px); }
.interest-card .icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.interest-card h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 0.3rem; }
.interest-card p { font-size: 0.82rem; color: var(--text-dim); }

/* ─── Blog Page ─── */
.blog-full-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 2rem;
}

.blog-full-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-full-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.4), 0 0 0 1px rgba(201,168,76,0.25);
}

.blog-full-card-banner {
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--accent-teal));
}

.blog-full-card-body { padding: 2rem; flex: 1; display: flex; flex-direction: column; }

.blog-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.blog-full-card-body h2 { font-size: 1.25rem; margin-bottom: 0.8rem; line-height: 1.45; }
.blog-full-card-body p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.75; flex: 1; margin-bottom: 1.5rem; }

.blog-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: auto; }
.blog-tag {
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: 999px;
  background: rgba(201,168,76,0.08);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.2);
}

/* ─── Contact Page ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.contact-info-col h3 { margin-bottom: 1rem; }
.contact-info-col p { color: var(--text-muted); font-size: 0.93rem; line-height: 1.8; margin-bottom: 2rem; }

.contact-methods { display: flex; flex-direction: column; gap: 1rem; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--transition);
  color: var(--text-main);
}
.contact-method:hover { border-color: var(--gold); color: var(--text-main); transform: translateX(4px); }

.contact-method-icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: rgba(201,168,76,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-method-info {}
.contact-method-label { font-size: 0.75rem; color: var(--text-dim); text-transform: uppercase; letter-spacing: 0.1em; }
.contact-method-val { font-size: 0.9rem; color: var(--cream); }

/* ─── Contact Form ─── */
.contact-form {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 0.75rem 1rem;
  color: var(--text-main);
  font-family: 'Inter', sans-serif;
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.08);
}

.form-group textarea { resize: vertical; min-height: 140px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-submit-msg {
  display: none;
  background: rgba(74,158,142,0.12);
  border: 1px solid rgba(74,158,142,0.3);
  border-radius: 6px;
  padding: 1rem;
  color: var(--accent-teal);
  font-size: 0.9rem;
  margin-top: 1rem;
  text-align: center;
}

/* ─── Hero: Full-width centered version ─── */
.hero-centered {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-centered .hero-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  animation: fadeUp 0.7s ease 0.2s both;
}

.hero-centered .hero-title { margin-bottom: 0.6rem; }

.hero-globe-wrap {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: min(600px, 55vw);
  height: min(600px, 55vw);
  opacity: 0.55;
  pointer-events: none;
  z-index: 1;
  animation: globeSpin 90s linear infinite;
}

@keyframes globeSpin {
  from { transform: translateY(-50%) rotate(0deg); }
  to   { transform: translateY(-50%) rotate(360deg); }
}

.hero-globe-svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  .hero-globe-wrap {
    right: -20%;
    width: min(380px, 80vw);
    height: min(380px, 80vw);
    opacity: 0.3;
    top: 30%;
  }
}

/* ─── Particles Canvas ─── */
#particles-canvas {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}

/* ─── Responsive ─── */
@media (max-width: 900px) {
  .hero-grid, .about-grid, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-image-wrap { order: -1; }
  .hero-image-card { width: 280px; height: 320px; }
  .snap-grid { grid-template-columns: 1fr; }
  .about-image-col { position: static; }
  .interest-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(10,15,30,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border);
    gap: 1.5rem;
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-stats { gap: 1.5rem; }
  .footer-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .blog-full-grid { grid-template-columns: 1fr; }
}

/* ─── Multilingual Captions ─── */
.caption-lang {
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed rgba(201,168,76,0.18);
  color: var(--text-muted);
  font-size: 0.85rem;
  line-height: 1.75;
  font-family: 'Segoe UI', 'Tahoma', sans-serif;
}

.caption-lang[lang="ckb"],
.caption-lang[lang="ar"] {
  font-size: 0.88rem;
  letter-spacing: 0;
}

.lang-label {
  display: inline-block;
  margin-inline-start: 0.5rem;
  padding: 0.08rem 0.45rem;
  background: rgba(201,168,76,0.12);
  color: var(--gold);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

