/*
Theme Name: VO Expat Consulting
Description: Custom theme for VO Expat Consulting
Version: 4.0
*/

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

:root {
  --navy: #1a2744;
  --navy-light: #2c3e6b;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --cream: #faf8f4;
  --white: #ffffff;
  --muted: #5a6580;
  --border: #e4dfd6;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--navy);
  background: var(--white);
  font-size: 19px;
  line-height: 1.78;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--navy); }

/* =============================
   NAVIGATION
   ============================= */
.site-nav {
  position: sticky; top: 0; z-index: 200;
  background: rgba(255,255,255,0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 3.5rem;
}
.site-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600;
  color: var(--navy); text-decoration: none; letter-spacing: 0.01em;
}
.site-logo span { color: var(--gold); }
.nav-menu { display: flex; gap: 2.25rem; list-style: none; margin: 0; padding: 0; align-items: center; }
.nav-menu li a {
  text-decoration: none; font-size: 0.95rem; font-weight: 500;
  color: var(--navy); letter-spacing: 0.05em; text-transform: uppercase;
  transition: color 0.2s; padding-bottom: 2px;
  border-bottom: 2px solid transparent;
}
.nav-menu li a:hover { color: var(--gold); border-bottom-color: var(--gold); }
.nav-menu .current-menu-item > a { color: var(--gold); border-bottom-color: var(--gold); }
.nav-menu li:last-child > a {
  background: var(--navy); color: var(--white) !important;
  padding: 0.6rem 1.6rem; border-radius: 4px;
  border-bottom: none !important;
}
.nav-menu li:last-child > a:hover { background: var(--gold); color: var(--navy) !important; }
.footer-nav { display: flex; gap: 1.75rem; list-style: none; margin: 0; padding: 0; }
.footer-nav li a { color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-nav li a:hover { color: var(--gold); }

/* =============================
   BUTTONS
   ============================= */
.btn-gold {
  background: var(--gold); color: var(--navy);
  padding: 1rem 2.4rem; border-radius: 5px;
  font-weight: 600; font-size: 1rem; letter-spacing: 0.03em;
  text-decoration: none; transition: all 0.2s; display: inline-block;
  border: 2px solid var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); color: var(--navy); }
.btn-outline-white {
  background: transparent; color: var(--white);
  padding: 1rem 2.4rem; border-radius: 5px;
  font-size: 1rem; font-weight: 500;
  text-decoration: none; border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.2s; display: inline-block;
}
.btn-outline-white:hover { border-color: var(--white); color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy {
  background: var(--navy); color: var(--white);
  padding: 1rem 2.4rem; border-radius: 5px;
  font-weight: 600; font-size: 1rem;
  text-decoration: none; transition: all 0.2s; display: inline-block;
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-light); border-color: var(--navy-light); color: var(--white); }

/* =============================
   HOMEPAGE HERO — with bg photo
   ============================= */
.home-hero {
  position: relative; overflow: hidden;
  min-height: 92vh;
  display: flex; align-items: center;
  background: var(--navy);
}
.home-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
}
.home-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(26,39,68,0.98) 45%, rgba(26,39,68,0.7) 100%);
}
.home-hero-content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px; margin: 0 auto;
  padding: 6rem 3.5rem;
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 5rem; align-items: center;
}
.home-eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1.5px solid rgba(201,168,76,0.5);
  padding: 0.45rem 1.2rem; border-radius: 3px; margin-bottom: 2rem;
}
.home-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5.5vw, 4.8rem);
  font-weight: 500; line-height: 1.08;
  margin-bottom: 1.75rem; color: var(--white);
  letter-spacing: -0.01em;
}
.home-hero h1 em { font-style: italic; color: var(--gold-light); }
.home-hero-desc {
  font-size: 1.15rem; color: rgba(255,255,255,0.78);
  max-width: 500px; margin-bottom: 2.75rem; line-height: 1.82;
}
.home-hero-actions { display: flex; gap: 1.1rem; flex-wrap: wrap; }
.hero-stats { display: flex; flex-direction: column; gap: 1.1rem; }
.stat-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 10px; padding: 1.6rem 1.9rem;
  backdrop-filter: blur(4px);
}
.stat-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 2.6rem; font-weight: 500;
  color: var(--gold-light); line-height: 1; margin-bottom: 0.4rem;
}
.stat-card p { font-size: 1rem; color: rgba(255,255,255,0.62); line-height: 1.5; }
.stat-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* =============================
   SECTION SHARED
   ============================= */
.section-wrap { max-width: 1200px; margin: 0 auto; }
.eyebrow {
  font-size: 0.82rem; font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.9rem;
  display: block;
}
.eyebrow.light { color: var(--gold-light); }
.section-h {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 500; line-height: 1.14; margin-bottom: 1.1rem;
  color: var(--navy);
}
.section-h.light { color: var(--white); }
.section-p {
  font-size: 1.1rem; color: var(--muted);
  max-width: 620px; line-height: 1.82;
}
.section-p.light { color: rgba(255,255,255,0.7); }

/* =============================
   APPROACH
   ============================= */
.approach { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 3.5rem; }
.approach-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 2fr; gap: 5rem; align-items: start; }
.approach-pillars { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; }
.pillar-n { font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--gold); font-weight: 400; line-height: 1; margin-bottom: 0.6rem; opacity: 0.7; }
.pillar h4 { font-size: 1rem; font-weight: 600; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.6rem; }
.pillar p { font-size: 1rem; color: var(--muted); line-height: 1.72; }

/* =============================
   SERVICES HOMEPAGE STRIP
   ============================= */
.services-strip { padding: 5.5rem 3.5rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3.5rem; }
.svc-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 2.5rem;
  position: relative; overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
}
.svc-card::after {
  content: ''; position: absolute;
  bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--gold); transform: scaleX(0);
  transform-origin: left; transition: transform 0.3s;
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 16px 45px rgba(26,39,68,0.12); }
.svc-card:hover::after { transform: scaleX(1); }
.svc-n { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(201,168,76,0.18); font-weight: 400; line-height: 1; margin-bottom: 1.1rem; }
.svc-card h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); margin-bottom: 0.85rem; line-height: 1.2; }
.svc-card p { font-size: 1rem; color: var(--muted); line-height: 1.78; margin-bottom: 1.5rem; }
.svc-link { font-size: 0.95rem; color: var(--gold); font-weight: 600; text-decoration: none; letter-spacing: 0.02em; }
.svc-link:hover { color: var(--navy); }

/* =============================
   ABOUT STRIP
   ============================= */
.about-strip { background: var(--navy); padding: 5.5rem 3.5rem; }
.about-strip-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.about-strip-text p { color: rgba(255,255,255,0.73); font-size: 1.08rem; line-height: 1.85; margin-bottom: 1.3rem; }
.about-photo-wrap { position: relative; }
.about-photo {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: 12px;
  filter: grayscale(100%) contrast(1.05);
}
.about-photo-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(26,39,68,0.95));
  padding: 2rem 1.75rem 1.75rem;
  border-radius: 0 0 12px 12px;
}
.about-photo-name { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); font-weight: 500; }
.about-photo-role { font-size: 0.9rem; color: var(--gold-light); margin-top: 0.2rem; }

/* =============================
   GUIDES STRIP
   ============================= */
.guides-strip { background: var(--cream); border-top: 1px solid var(--border); padding: 5.5rem 3.5rem; }
.guides-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.1rem; margin-top: 3.5rem; }
.guide-tile {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 10px; padding: 1.5rem 1.75rem;
  display: flex; align-items: center; gap: 1.25rem;
  text-decoration: none; transition: border-color 0.2s, transform 0.2s;
}
.guide-tile:hover { border-color: var(--gold); transform: translateX(5px); }
.guide-tile-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: rgba(201,168,76,0.3); font-weight: 400; line-height: 1; min-width: 40px; }
.guide-tile h4 { font-size: 1rem; font-weight: 600; color: var(--navy); margin-bottom: 0.25rem; line-height: 1.35; }
.guide-tile p { font-size: 0.88rem; color: var(--muted); line-height: 1.45; }

/* =============================
   CONTACT STRIP (HOMEPAGE)
   ============================= */
.contact-strip { padding: 5.5rem 3.5rem; }
.contact-strip-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.vo-form { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 3rem; text-align: left; margin-top: 2.75rem; box-shadow: 0 4px 30px rgba(26,39,68,0.06); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.2rem; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--navy); letter-spacing: 0.07em; text-transform: uppercase; }
.form-group input,
.form-group select,
.form-group textarea {
  border: 1.5px solid var(--border); border-radius: 7px;
  padding: 0.95rem 1.1rem; font-family: 'DM Sans', sans-serif;
  font-size: 1rem; color: var(--navy); background: var(--cream);
  outline: none; width: 100%; transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); background: var(--white); }
.form-group textarea { min-height: 140px; resize: vertical; }
.form-submit {
  background: var(--navy); color: var(--white);
  border: none; padding: 1.1rem 2rem; border-radius: 7px;
  font-family: 'DM Sans', sans-serif; font-size: 1.05rem; font-weight: 600;
  cursor: pointer; width: 100%; transition: background 0.2s; margin-top: 0.5rem;
  letter-spacing: 0.02em;
}
.form-submit:hover { background: var(--gold); color: var(--navy); }
.form-note { font-size: 0.88rem; color: var(--muted); text-align: center; margin-top: 1.1rem; }
.form-note a { color: var(--gold); font-weight: 500; }

/* =============================
   CTA STRIP
   ============================= */
.cta-strip { background: var(--navy); padding: 6rem 3.5rem; text-align: center; }
.cta-strip h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 500; color: var(--white); margin-bottom: 1.1rem; line-height: 1.14; }
.cta-strip p { color: rgba(255,255,255,0.68); font-size: 1.1rem; max-width: 560px; margin: 0 auto 2.5rem; line-height: 1.8; }
.cta-actions { display: flex; gap: 1.1rem; justify-content: center; flex-wrap: wrap; }

/* =============================
   PAGE HERO
   ============================= */
.page-hero {
  background: var(--navy); padding: 6.5rem 3.5rem 5.5rem;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute;
  right: -100px; top: -100px;
  width: 550px; height: 550px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.1); pointer-events: none;
}
.page-hero::before {
  content: ''; position: absolute;
  right: 60px; top: 60px;
  width: 320px; height: 320px; border-radius: 50%;
  border: 1px solid rgba(201,168,76,0.06); pointer-events: none;
}
.page-hero-inner { max-width: 900px; margin: 0 auto; position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block; font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); border: 1.5px solid rgba(201,168,76,0.45);
  padding: 0.45rem 1.2rem; border-radius: 3px; margin-bottom: 1.75rem;
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 500; color: var(--white);
  line-height: 1.1; margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.page-hero h1 em { font-style: italic; color: var(--gold-light); }
.page-hero .hero-sub {
  font-size: 1.15rem; color: rgba(255,255,255,0.72);
  max-width: 680px; line-height: 1.82;
}

/* =============================
   DEFAULT PAGE CONTENT
   ============================= */
.page-body { max-width: 880px; margin: 0 auto; padding: 5.5rem 3.5rem; }
.page-body h2 { font-family: 'Playfair Display', serif; font-size: 2.3rem; font-weight: 500; color: var(--navy); margin: 2.75rem 0 1.1rem; line-height: 1.2; }
.page-body h3 { font-family: 'Playfair Display', serif; font-size: 1.65rem; font-weight: 500; color: var(--navy); margin: 2.25rem 0 0.9rem; }
.page-body h4 { font-size: 1.1rem; font-weight: 600; color: var(--navy); margin: 1.75rem 0 0.6rem; text-transform: uppercase; letter-spacing: 0.06em; }
.page-body p { font-size: 1.08rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.35rem; }
.page-body ul, .page-body ol { margin: 1.1rem 0 1.75rem 1.9rem; }
.page-body li { font-size: 1.08rem; color: var(--muted); line-height: 1.82; margin-bottom: 0.7rem; }
.page-body strong { color: var(--navy); font-weight: 600; }
.page-body a { color: var(--gold); }
.page-body a:hover { color: var(--navy); }
.page-body blockquote { border-left: 4px solid var(--gold); background: var(--cream); padding: 1.6rem 2rem; margin: 2.25rem 0; border-radius: 0 10px 10px 0; }
.page-body blockquote p { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-style: italic; color: var(--navy); margin: 0; line-height: 1.65; }
.page-body .info-box { background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px; padding: 1.6rem 2rem; margin: 2rem 0; }
.page-body .info-box p { margin: 0; font-size: 1rem; }
.page-body img { border-radius: 10px; margin: 2rem 0; width: 100%; }
.page-body .bw-img { filter: grayscale(100%) contrast(1.05); }

/* Document list styling */
.doc-list { background: var(--cream); border: 1.5px solid var(--border); border-radius: 10px; padding: 1.75rem 2rem; margin: 1.5rem 0; }
.doc-list h4 { font-size: 0.9rem; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1rem; }
.doc-list ul { margin: 0; padding: 0; list-style: none; }
.doc-list ul li { font-size: 1rem; color: var(--muted); padding: 0.5rem 0; border-bottom: 1px solid var(--border); display: flex; align-items: flex-start; gap: 0.75rem; line-height: 1.6; }
.doc-list ul li:last-child { border-bottom: none; }
.doc-list ul li::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

/* Fee box */
.fee-box { background: var(--navy); color: var(--white); border-radius: 10px; padding: 1.6rem 2rem; margin: 1.5rem 0; }
.fee-box h4 { font-size: 0.9rem; font-weight: 700; color: var(--gold); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0.85rem; }
.fee-box p { color: rgba(255,255,255,0.75); font-size: 1rem; margin: 0; line-height: 1.7; }

/* Warning box */
.warn-box { background: rgba(201,168,76,0.1); border: 1.5px solid rgba(201,168,76,0.4); border-radius: 10px; padding: 1.4rem 1.75rem; margin: 1.5rem 0; }
.warn-box p { color: var(--navy); font-size: 1rem; margin: 0; line-height: 1.7; }
.warn-box strong { color: #8a6200; }

/* =============================
   ABOUT PAGE
   ============================= */
.about-layout { max-width: 1200px; margin: 0 auto; padding: 5.5rem 3.5rem; display: grid; grid-template-columns: 1fr 380px; gap: 5.5rem; align-items: start; }
.about-main h2 { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 500; color: var(--navy); margin: 2.25rem 0 1.1rem; line-height: 1.22; }
.about-main h2 em { font-style: italic; color: var(--gold); }
.about-main p { font-size: 1.08rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.35rem; }
.about-main strong { color: var(--navy); font-weight: 600; }
.pull-quote { background: var(--cream); border-left: 4px solid var(--gold); border-radius: 0 10px 10px 0; padding: 1.9rem 2.1rem; margin: 2.5rem 0; }
.pull-quote p { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-style: italic; color: var(--navy); line-height: 1.62; margin: 0 !important; }
.pull-quote cite { display: block; font-family: 'DM Sans', sans-serif; font-size: 0.88rem; font-style: normal; color: var(--muted); margin-top: 0.85rem; }
.about-sidebar { position: sticky; top: 6.5rem; }
.founder-card { background: var(--navy); border-radius: 14px; padding: 2.5rem; color: var(--white); }
.founder-photo { width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 10px; filter: grayscale(100%) contrast(1.05); margin-bottom: 1.5rem; }
.founder-card h3 { font-family: 'Playfair Display', serif; font-size: 1.45rem; font-weight: 500; color: var(--white); margin-bottom: 0.25rem; }
.founder-card .role { font-size: 0.9rem; color: var(--gold-light); margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid rgba(255,255,255,0.1); }
.timeline { display: flex; flex-direction: column; }
.tl-item { display: flex; gap: 1rem; padding-bottom: 1.4rem; position: relative; }
.tl-item:not(:last-child)::before { content: ''; position: absolute; left: 16px; top: 32px; bottom: 0; width: 1px; background: rgba(255,255,255,0.1); }
.tl-dot { width: 32px; height: 32px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 1.5px solid rgba(201,168,76,0.4); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 0.82rem; color: var(--gold); font-weight: 600; }
.tl-year { font-size: 0.8rem; color: var(--gold-light); font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; margin-bottom: 0.2rem; }
.tl-desc { font-size: 0.95rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.mission-strip { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 3.5rem; }
.mission-inner { max-width: 1200px; margin: 0 auto; }
.mission-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.25rem; margin-top: 3.5rem; }
.mission-card { background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; padding: 2.5rem; }
.mission-n { font-family: 'Playfair Display', serif; font-size: 3.5rem; color: rgba(201,168,76,0.22); font-weight: 400; line-height: 1; margin-bottom: 1.1rem; }
.mission-card h3 { font-family: 'Playfair Display', serif; font-size: 1.35rem; font-weight: 500; color: var(--navy); margin-bottom: 0.8rem; }
.mission-card p { font-size: 1rem; color: var(--muted); line-height: 1.78; }

/* =============================
   SERVICES PAGE
   ============================= */
.services-page { padding: 5.5rem 3.5rem; }
.services-page-inner { max-width: 1200px; margin: 0 auto; }
.service-full { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 3rem; margin-bottom: 2.5rem; position: relative; overflow: hidden; transition: box-shadow 0.25s; }
.service-full::before { content: ''; position: absolute; top: 0; left: 0; bottom: 0; width: 5px; background: var(--gold); border-radius: 14px 0 0 14px; }
.service-full:hover { box-shadow: 0 12px 40px rgba(26,39,68,0.1); }
.service-full-header { display: flex; align-items: flex-start; gap: 2rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1.5px solid var(--border); }
.service-full-num { font-family: 'Playfair Display', serif; font-size: 4rem; color: rgba(201,168,76,0.2); font-weight: 400; line-height: 1; flex-shrink: 0; min-width: 70px; }
.service-full-header h2 { font-family: 'Playfair Display', serif; font-size: 2rem; font-weight: 500; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.18; }
.service-tagline { font-size: 1.05rem; color: var(--muted); line-height: 1.6; }
.service-full-body > p { font-size: 1.08rem; color: var(--muted); line-height: 1.88; margin-bottom: 1.75rem; }
.service-topics { display: grid; grid-template-columns: 1fr 1fr; gap: 0.75rem; }
.topic-item { display: flex; align-items: flex-start; gap: 0.75rem; font-size: 1rem; color: var(--muted); line-height: 1.55; padding: 0.75rem 1rem; background: var(--cream); border-radius: 7px; }
.topic-item::before { content: '→'; color: var(--gold); font-weight: 700; flex-shrink: 0; }
.how-it-works { background: var(--cream); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 5.5rem 3.5rem; }
.how-inner { max-width: 1200px; margin: 0 auto; }
.steps-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2.5rem; margin-top: 3.5rem; }
.step-item { text-align: center; padding: 2.5rem 2rem; background: var(--white); border: 1.5px solid var(--border); border-radius: 12px; }
.step-num { width: 56px; height: 56px; border-radius: 50%; background: var(--navy); color: var(--gold); font-family: 'Playfair Display', serif; font-size: 1.4rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1.25rem; }
.step-item h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 500; color: var(--navy); margin-bottom: 0.65rem; }
.step-item p { font-size: 1rem; color: var(--muted); line-height: 1.75; }

/* =============================
   GUIDES PAGE
   ============================= */
.guides-page { padding: 5.5rem 3.5rem; }
.guides-page-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 4.5rem; }
.guide-category-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding-bottom: 1rem; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; display: block; }
.guide-cards { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.25rem; }
.guide-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 2rem 2.25rem;
  text-decoration: none; display: flex; gap: 1.5rem; align-items: flex-start;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.guide-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,39,68,0.08); }
.guide-card-num { font-family: 'Playfair Display', serif; font-size: 2rem; color: rgba(201,168,76,0.28); font-weight: 400; line-height: 1; flex-shrink: 0; min-width: 40px; }
.guide-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.55rem; line-height: 1.3; }
.guide-card p { font-size: 0.95rem; color: var(--muted); line-height: 1.65; margin-bottom: 0.75rem; }
.guide-card-link { font-size: 0.9rem; color: var(--gold); font-weight: 600; }

/* =============================
   INDIVIDUAL GUIDE
   ============================= */
.guide-layout { max-width: 1200px; margin: 0 auto; padding: 5.5rem 3.5rem; display: grid; grid-template-columns: 1fr 300px; gap: 5rem; align-items: start; }
.guide-body h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 500; color: var(--navy); margin: 2.5rem 0 1rem; line-height: 1.22; }
.guide-body h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 500; color: var(--navy); margin: 2rem 0 0.85rem; }
.guide-body p { font-size: 1.08rem; color: var(--muted); line-height: 1.9; margin-bottom: 1.3rem; }
.guide-body ul, .guide-body ol { margin: 1rem 0 1.75rem 1.9rem; }
.guide-body li { font-size: 1.08rem; color: var(--muted); line-height: 1.82; margin-bottom: 0.7rem; }
.guide-body strong { color: var(--navy); font-weight: 600; }
.guide-body img { border-radius: 10px; margin: 2rem 0; width: 100%; }
.guide-body .bw-img { filter: grayscale(100%) contrast(1.05); }
.guide-sidebar { position: sticky; top: 7rem; display: flex; flex-direction: column; gap: 1.25rem; }
.sidebar-box { background: var(--navy); border-radius: 12px; padding: 2rem; }
.sidebar-box-title { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; display: block; }
.sidebar-box p { font-size: 0.97rem; color: rgba(255,255,255,0.65); line-height: 1.65; margin-bottom: 1.25rem; }
.sidebar-guide-links { display: flex; flex-direction: column; gap: 0.4rem; }
.sidebar-guide-links a { font-size: 0.95rem; color: rgba(255,255,255,0.62); padding: 0.5rem 0; border-bottom: 1px solid rgba(255,255,255,0.08); transition: color 0.2s; display: block; }
.sidebar-guide-links a:hover { color: var(--gold); }
.sidebar-guide-links a.active { color: var(--gold-light); font-weight: 500; }

/* =============================
   CONTACT PAGE
   ============================= */
.contact-layout { max-width: 1200px; margin: 0 auto; padding: 5.5rem 3.5rem; display: grid; grid-template-columns: 1fr 1.5fr; gap: 5.5rem; align-items: start; }
.contact-info h2 { font-family: 'Playfair Display', serif; font-size: 2.1rem; font-weight: 500; color: var(--navy); margin-bottom: 1.1rem; }
.contact-info p { font-size: 1.08rem; color: var(--muted); line-height: 1.88; margin-bottom: 1.25rem; }
.contact-meta { margin-top: 2.75rem; display: flex; flex-direction: column; gap: 1.6rem; }
.meta-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.28rem; display: block; }
.meta-value { font-size: 1.05rem; color: var(--muted); }
.meta-value a { color: var(--navy); font-weight: 600; }
.meta-value a:hover { color: var(--gold); }
.contact-form-box { background: var(--white); border: 1.5px solid var(--border); border-radius: 14px; padding: 3rem; box-shadow: 0 4px 30px rgba(26,39,68,0.06); }

/* =============================
   RESOURCES PAGE
   ============================= */
.resources-page { padding: 5.5rem 3.5rem; }
.resources-inner { max-width: 1200px; margin: 0 auto; display: flex; flex-direction: column; gap: 4.5rem; }
.resource-category-label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); padding-bottom: 1rem; border-bottom: 2px solid var(--border); margin-bottom: 1.5rem; display: block; }
.resource-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.resource-card {
  background: var(--white); border: 1.5px solid var(--border);
  border-radius: 12px; padding: 2rem 2.25rem;
  text-decoration: none; display: block;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}
.resource-card:hover { border-color: var(--gold); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(26,39,68,0.08); }
.resource-card-tag { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem; display: block; }
.resource-card h3 { font-family: 'Playfair Display', serif; font-size: 1.15rem; font-weight: 500; color: var(--navy); margin-bottom: 0.6rem; line-height: 1.3; }
.resource-card p { font-size: 0.97rem; color: var(--muted); line-height: 1.7; margin-bottom: 1rem; }
.resource-card-link { font-size: 0.9rem; color: var(--gold); font-weight: 600; }

/* =============================
   LIVING IN SERBIA — VIDEO HERO
   ============================= */
.video-hero {
  position: relative; overflow: hidden;
  height: 60vh; min-height: 400px;
  display: flex; align-items: center;
  background: var(--navy);
}
.video-hero video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: grayscale(100%) contrast(1.1);
  opacity: 0.35;
}
.video-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(26,39,68,0.6), rgba(26,39,68,0.85));
}
.video-hero-content {
  position: relative; z-index: 2;
  max-width: 900px; margin: 0 auto;
  padding: 3rem 3.5rem; text-align: center;
}
.video-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem,5vw,4.5rem); font-weight: 500; color: var(--white); line-height: 1.1; margin-bottom: 1.25rem; }
.video-hero-content p { font-size: 1.15rem; color: rgba(255,255,255,0.75); line-height: 1.8; }

/* =============================
   FOOTER
   ============================= */
.site-footer { background: #0d1520; color: rgba(255,255,255,0.45); padding: 3rem 3.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.25rem; font-size: 0.92rem; }
.site-footer a { color: rgba(255,255,255,0.45); }
.site-footer a:hover { color: var(--gold); }

/* =============================
   RESPONSIVE
   ============================= */
@media (max-width: 1100px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .resource-grid { grid-template-columns: 1fr 1fr; }
  .guide-cards { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .site-nav { padding: 1.1rem 1.75rem; }
  .nav-menu { display: none; }
  .home-hero-content { grid-template-columns: 1fr; padding: 5rem 1.75rem 4rem; gap: 3rem; }
  .home-hero { min-height: auto; }
  .stat-row { grid-template-columns: 1fr 1fr; }
  .approach { padding: 4rem 1.75rem; }
  .approach-inner { grid-template-columns: 1fr; gap: 2.75rem; }
  .approach-pillars { grid-template-columns: 1fr 1fr; }
  .services-strip { padding: 4rem 1.75rem; }
  .services-grid { grid-template-columns: 1fr; }
  .about-strip { padding: 4rem 1.75rem; }
  .about-strip-inner { grid-template-columns: 1fr; gap: 3rem; }
  .guides-strip { padding: 4rem 1.75rem; }
  .guides-grid { grid-template-columns: 1fr 1fr; }
  .contact-strip { padding: 4rem 1.75rem; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 5rem 1.75rem 4rem; }
  .page-body { padding: 4rem 1.75rem; }
  .about-layout { grid-template-columns: 1fr; padding: 4rem 1.75rem; }
  .about-sidebar { position: static; }
  .mission-strip { padding: 4rem 1.75rem; }
  .mission-grid { grid-template-columns: 1fr; }
  .services-page { padding: 4rem 1.75rem; }
  .service-full-header { flex-direction: column; gap: 1rem; }
  .service-topics { grid-template-columns: 1fr; }
  .how-it-works { padding: 4rem 1.75rem; }
  .steps-grid { grid-template-columns: 1fr; }
  .guides-page { padding: 4rem 1.75rem; }
  .guide-cards { grid-template-columns: 1fr; }
  .guide-layout { grid-template-columns: 1fr; padding: 4rem 1.75rem; }
  .guide-sidebar { position: static; }
  .contact-layout { grid-template-columns: 1fr; padding: 4rem 1.75rem; }
  .resources-page { padding: 4rem 1.75rem; }
  .resource-grid { grid-template-columns: 1fr; }
  .cta-strip { padding: 4.5rem 1.75rem; }
  .site-footer { flex-direction: column; text-align: center; padding: 2.5rem 1.75rem; }
  .video-hero-content { padding: 3rem 1.75rem; }
}
@media (max-width: 600px) {
  .guides-grid { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: 1fr; }
  .approach-pillars { grid-template-columns: 1fr; }
}
