/*
Theme Name: Vertix Advisors
Theme URI: https://lightseagreen-donkey-681646.hostingersite.com
Author: Evolv
Author URI: https://evolv-inc.org
Description: A custom WordPress theme for Vertix Advisors — an education & immigration consultancy. Editorial design with bold serif typography, red accents, and full ACF-driven content management.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vertix-advisors
Tags: custom-colors, custom-menu, featured-images, threaded-comments, translation-ready
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  --color-black: #0a0a0a;
  --color-near-black: #141414;
  --color-red: #d72027;
  --color-red-hover: #b81a20;
  --color-cream: #f7f5f0;
  --color-white: #ffffff;
  --color-text: #1a1a1a;
  --color-text-muted: #6b6b6b;
  --color-border: #e5e3de;
  --color-card: #ffffff;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1240px;
  --container-narrow: 1100px;

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.06), 0 2px 4px rgba(0, 0, 0, 0.04);

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* ============================================
   RESET / BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.2s var(--ease); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.15;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0 0 1em; }

/* ============================================
   UTILITIES
   ============================================ */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--color-red);
}
.text-italic-red { color: var(--color-red); font-style: italic; }
.text-italic-red-light { color: #ff6b6b; font-style: italic; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: all 0.25s var(--ease);
  white-space: nowrap;
  cursor: pointer;
}
.btn-primary {
  background: var(--color-red);
  color: var(--color-white);
}
.btn-primary:hover {
  background: var(--color-red-hover);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.25);
}
.btn-secondary:hover { border-color: var(--color-white); }
.btn-dark {
  background: var(--color-black);
  color: var(--color-white);
}
.btn-dark:hover { background: var(--color-near-black); }
.btn-arrow::after {
  content: "→";
  display: inline-block;
  transition: transform 0.2s var(--ease);
}
.btn-arrow:hover::after { transform: translateX(3px); }

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1400px;
  margin: 0 auto;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-white);
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.site-logo .logo-v {
  color: var(--color-red);
  font-style: italic;
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.main-nav a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  font-weight: 400;
}
.main-nav a:hover, .main-nav .current-menu-item a { color: var(--color-red); }
.nav-cta { padding: 11px 22px; font-size: 14px; transition: all 0.25s ease; }
.nav-cta:hover {
  background: var(--color-white);
  color: var(--color-red);
  transform: translateY(-1px);
  box-shadow: 0 0 20px rgba(215, 32, 39, 0.5), 0 0 40px rgba(215, 32, 39, 0.25);
}
.menu-toggle { display: none; color: var(--color-white); font-size: 24px; padding: 6px; }

/* ============================================
   HERO (Dark sections)
   ============================================ */
.hero {
  background: var(--color-black);
  color: var(--color-white);
  position: relative;
  overflow: hidden;
}
.hero-home {
  padding: 100px 0 120px;
  background-image:
    radial-gradient(ellipse 80% 60% at 70% 30%, rgba(215, 32, 39, 0.08), transparent 70%),
    linear-gradient(180deg, #0a0a0a 0%, #141414 100%);
}
.hero-inner { max-width: 1400px; margin: 0 auto; padding: 0 24px; }
.hero h1 {
  font-size: clamp(48px, 7vw, 88px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin-bottom: 28px;
}
.hero-page h1 {
  font-size: clamp(40px, 6vw, 72px);
}
.hero p.lead {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  max-width: 540px;
  line-height: 1.65;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero variant for inner pages — narrow, less padding */
.hero-page { padding: 80px 0 100px; }

/* Destinations strip below hero */
.dest-strip {
  background: var(--color-cream);
  border-bottom: 1px solid var(--color-border);
  overflow: hidden;
}
.dest-strip-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  padding: 18px 24px;
  max-width: 1400px;
  margin: 0 auto;
  font-size: 13px;
  overflow-x: auto;
  scrollbar-width: none;
}
.dest-strip-inner::-webkit-scrollbar { display: none; }
.dest-strip-label {
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.dest-strip-item {
  color: var(--color-text);
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 100px 0; }
.section-tight { padding: 70px 0; }
.section-cream { background: var(--color-cream); }
.section-white { background: var(--color-white); }
.section-dark { background: var(--color-black); color: var(--color-white); }

.section-header { margin-bottom: 56px; max-width: 720px; }
.section-header h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  margin-bottom: 18px;
}
.section-header p {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.section-dark .section-header p { color: rgba(255, 255, 255, 0.65); }

/* ============================================
   PATHWAY CARDS (Home — 3 columns)
   ============================================ */
.pathway-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pathway-card {
  background: var(--color-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  border: 1px solid var(--color-border);
}
.pathway-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pathway-image {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
  position: relative;
  overflow: hidden;
}
.pathway-image img { width: 100%; height: 100%; object-fit: cover; }
.pathway-image-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255, 255, 255, 0.2); font-size: 48px;
}
.pathway-body { padding: 28px; }
.pathway-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(215, 32, 39, 0.08);
  border-radius: 8px;
  color: var(--color-red);
  margin-bottom: 16px;
  font-size: 18px;
}
.pathway-body h3 { font-size: 22px; margin-bottom: 10px; }
.pathway-body p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.pathway-link {
  color: var(--color-text);
  font-size: 14px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.pathway-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.pathway-link:hover { color: var(--color-red); }
.pathway-link:hover::after { transform: translateX(3px); }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: var(--color-cream);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding: 56px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.stat-item { text-align: left; }
.stat-number {
  font-family: var(--font-serif);
  font-size: clamp(36px, 4vw, 56px);
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.stat-label {
  font-size: 13px;
  color: var(--color-text-muted);
  letter-spacing: 0.02em;
}

/* ============================================
   DESTINATIONS GRID
   ============================================ */
.dest-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  flex-wrap: wrap;
  gap: 24px;
}
.dest-header-row h2 {
  font-size: clamp(34px, 4.5vw, 52px);
  max-width: 600px;
}
.view-all-link {
  font-size: 14px;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}
.view-all-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.view-all-link:hover { color: var(--color-red); }
.view-all-link:hover::after { transform: translateX(3px); }

.dest-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.dest-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px;
  transition: all 0.25s var(--ease);
  display: block;
}
.dest-card:hover {
  border-color: var(--color-red);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.dest-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.dest-flag {
  width: 28px; height: 20px;
  border-radius: 3px;
  background: linear-gradient(135deg, #ddd, #bbb);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: #666;
  flex-shrink: 0;
}
.dest-card h4 { font-size: 16px; font-family: var(--font-sans); font-weight: 600; }
.dest-card p {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.55;
  margin-bottom: 14px;
}
.dest-explore {
  font-size: 13px;
  color: var(--color-text);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.dest-explore::after { content: "→"; }

/* ============================================
   PROCESS (How we work — dark section)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 56px;
}
.process-item { position: relative; }
.process-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 1px;
  background: var(--color-red);
}
.process-number {
  font-family: var(--font-serif);
  font-size: 56px;
  font-weight: 600;
  color: var(--color-red);
  line-height: 1;
  margin: 24px 0 18px;
  letter-spacing: -0.02em;
}
.process-item h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--color-white);
}
.process-item p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.65;
}

/* ============================================
   CTA BLOCK (Let's plan your next chapter)
   ============================================ */
.cta-block {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.cta-block::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -10%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(215, 32, 39, 0.12), transparent 60%);
  pointer-events: none;
}
.cta-block-content { position: relative; z-index: 1; }
.cta-block h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 18px;
}
.cta-block p {
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
  font-size: 15px;
}
.cta-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cta-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}
.cta-checklist li::before {
  content: "✓";
  color: var(--color-red);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--color-black);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 56px;
}
.footer-brand .site-logo { margin-bottom: 22px; }
.footer-brand p {
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.6);
  max-width: 360px;
  margin-bottom: 24px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-white);
  font-size: 14px;
  transition: background 0.2s var(--ease);
}
.footer-socials a:hover { background: var(--color-red); }
.footer-col h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 22px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
}
.footer-col a:hover { color: var(--color-red); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
}
.footer-contact-icon { color: var(--color-red); flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .pathway-grid, .dest-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
  .cta-block { grid-template-columns: 1fr; gap: 32px; padding: 40px; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    background: var(--color-black);
    flex-direction: column;
    padding: 30px 24px;
    gap: 20px;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s var(--ease);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .main-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .main-nav ul { flex-direction: column; gap: 20px; width: 100%; }
  .pathway-grid, .dest-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); padding: 40px 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-home { padding: 70px 0 80px; }
  .hero h1 { font-size: 42px; }
  .dest-header-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================================
   PHASE 2 — ADDITIONAL COMPONENTS
   ============================================================ */

/* ============ VALUES GRID (About page) ============ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.value-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px 24px;
  transition: all 0.25s var(--ease);
}
.value-card:hover { border-color: var(--color-red); transform: translateY(-2px); }
.value-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(215, 32, 39, 0.08);
  border-radius: 8px;
  color: var(--color-red);
  margin-bottom: 18px;
}
.value-card h4 {
  font-family: var(--font-sans);
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
}
.value-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin: 0;
}

/* ============ TWO COLUMN (story + stats) ============ */
.two-col-story {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
}
.two-col-story h2 { font-size: clamp(30px, 4vw, 44px); margin-bottom: 22px; }
.two-col-story p {
  font-size: 15px;
  color: var(--color-text-muted);
  line-height: 1.75;
}
.story-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.story-stat-box {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 28px;
}
.story-stat-box .stat-number {
  font-size: clamp(32px, 3.5vw, 44px);
  margin-bottom: 6px;
}

/* ============ TEAM GRID ============ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-photo {
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.2);
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 600;
  overflow: hidden;
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; }
.team-body { padding: 26px 28px 28px; }
.team-name {
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 14px;
}
.team-bio {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.65;
  margin-bottom: 18px;
}
.team-init {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--color-black);
  color: var(--color-white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 500;
}

/* ============ MEET CTA STRIP ============ */
.meet-strip {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 38px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.meet-strip h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 6px;
}
.meet-strip p {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  margin: 0;
  max-width: 480px;
}

/* ============ FLAG CHIPS ROW (PR/CBI/Study top strip) ============ */
.flag-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 60px;
}
.flag-chip {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.2s var(--ease);
}
.flag-chip:hover { border-color: var(--color-red); }

/* ============ PROGRAM ACCORDION ============ */
.program-section-title {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 36px);
  margin: 50px 0 24px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.program-section-title .count {
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 400;
  color: var(--color-text-muted);
}
.program-list { display: flex; flex-direction: column; gap: 14px; }
.program-item {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.2s var(--ease);
}
.program-item:hover { border-color: rgba(215,32,39,0.4); }
.program-summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 26px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.program-summary::-webkit-details-marker { display: none; }
.program-summary-main { flex: 1; }
.program-summary h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 4px;
}
.program-summary .program-country {
  font-size: 12px;
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
.program-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--color-cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  color: var(--color-text);
  transition: transform 0.2s var(--ease);
  flex-shrink: 0;
}
details[open] .program-toggle { transform: rotate(45deg); background: var(--color-red); color: var(--color-white); }
.program-body {
  padding: 0 26px 26px;
  border-top: 1px solid var(--color-border);
  margin-top: 0;
  padding-top: 24px;
}
.program-body p { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 20px; }
.program-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}
.program-highlight {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--color-cream);
  border-radius: var(--radius-pill);
  padding: 7px 14px;
  font-size: 13px;
  color: var(--color-text);
}
.program-highlight::before { content: "✓"; color: var(--color-red); font-weight: 700; }
.program-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 22px;
}
.program-detail-block h5 {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 14px;
}
.program-detail-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-detail-block li {
  font-size: 13px;
  color: var(--color-text);
  line-height: 1.55;
  padding-left: 18px;
  position: relative;
}
.program-detail-block li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 6px; height: 6px;
  background: var(--color-red);
  border-radius: 50%;
}

/* ============ PROGRAM CARDS GRID (PR page top items) ============ */
.program-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 50px;
}
.program-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.program-card:hover { border-color: var(--color-red); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.program-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.program-card-country {
  font-size: 11px;
  color: var(--color-text-muted);
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.program-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin-bottom: 10px;
  line-height: 1.25;
}
.program-card-desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
  flex-grow: 1;
}
.program-card-highlights-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}
.program-card-highlights {
  list-style: none;
  padding: 0;
  margin: 0 0 22px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.program-card-highlights li {
  font-size: 13px;
  padding-left: 16px;
  position: relative;
  color: var(--color-text);
}
.program-card-highlights li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-red);
  font-weight: 700;
}
.program-card-cta {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: auto;
}
.program-card-cta::after { content: "→"; transition: transform 0.2s var(--ease); }
.program-card-cta:hover { color: var(--color-red); }
.program-card-cta:hover::after { transform: translateX(3px); }

/* ============ VISIT VISA GRID ============ */
.visit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.visit-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.25s var(--ease);
}
.visit-card:hover { border-color: var(--color-red); transform: translateY(-2px); }
.visit-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}
.visit-card h4 { font-family: var(--font-serif); font-size: 17px; font-weight: 600; }
.visit-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

/* ============ STUDY: LEVELS GRID ============ */
.levels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.level-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 26px 22px;
}
.level-icon {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(215,32,39,0.08);
  color: var(--color-red);
  border-radius: 8px;
  margin-bottom: 16px;
}
.level-card h4 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; margin-bottom: 8px; }
.level-card p { font-size: 13px; color: var(--color-text-muted); line-height: 1.6; margin: 0; }

/* ============ STUDY: PROGRAMS ACCORDION (single line items) ============ */
.programs-line-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.program-line {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.program-line-summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.program-line-summary::-webkit-details-marker { display: none; }
.program-line-tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  background: rgba(215,32,39,0.08);
  padding: 5px 10px;
  border-radius: 4px;
  flex-shrink: 0;
}
.program-line-title { font-family: var(--font-serif); font-size: 17px; font-weight: 600; flex: 1; }
.program-line-body { padding: 0 24px 22px; color: var(--color-text-muted); font-size: 14px; line-height: 1.65; }

/* ============ STUDY: DESTINATIONS LARGER CARDS ============ */
.study-dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.study-dest-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: all 0.25s var(--ease);
  display: block;
}
.study-dest-card:hover { border-color: var(--color-red); transform: translateY(-2px); }
.study-dest-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.study-dest-card h4 { font-family: var(--font-serif); font-size: 18px; font-weight: 600; }
.study-dest-card .programs {
  font-size: 12px;
  color: var(--color-text-muted);
  margin-bottom: 14px;
}
.study-dest-card .desc {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.study-dest-tags-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 10px;
}
.study-dest-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 18px;
}
.study-dest-tag {
  font-size: 12px;
  background: var(--color-cream);
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--color-text);
}
.study-dest-link {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.study-dest-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.study-dest-link:hover { color: var(--color-red); }
.study-dest-link:hover::after { transform: translateX(3px); }

/* ============ INSIGHTS / BLOG CARDS ============ */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.insight-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  transition: all 0.25s var(--ease);
  display: flex;
  flex-direction: column;
}
.insight-card:hover { border-color: var(--color-red); transform: translateY(-2px); }
.insight-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
  font-size: 11px;
}
.insight-cat {
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-red);
}
.insight-date { color: var(--color-text-muted); display: inline-flex; align-items: center; gap: 5px; }
.insight-card h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.3;
  margin-bottom: 12px;
}
.insight-card p {
  font-size: 13.5px;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 20px;
  flex-grow: 1;
}
.insight-link {
  font-size: 13px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-text);
}
.insight-link::after { content: "→"; transition: transform 0.2s var(--ease); }
.insight-link:hover { color: var(--color-red); }
.insight-link:hover::after { transform: translateX(3px); }

.section-subtitle {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 38px);
  margin-bottom: 28px;
}

/* Newsletter signup */
.newsletter-box {
  background: var(--color-cream);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  text-align: center;
  max-width: 540px;
  margin: 70px auto 30px;
}
.newsletter-box h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 8px;
}
.newsletter-box p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 22px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 6px 6px 6px 22px;
  align-items: center;
  border: 1px solid var(--color-border);
}
.newsletter-form input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 8px 0;
  color: var(--color-text);
}
.newsletter-form button {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 11px 22px;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--color-near-black); }

.insights-tail-link {
  text-align: center;
  font-size: 14px;
  color: var(--color-text-muted);
  margin: 20px 0 0;
}
.insights-tail-link a { color: var(--color-red); font-weight: 500; }

/* ============ CONTACT (Book Consultation) ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 48px;
  align-items: start;
}
.contact-side h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin-bottom: 24px;
}
.contact-info-card {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  margin-bottom: 12px;
}
.contact-info-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.contact-info-icon {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(215,32,39,0.08);
  color: var(--color-red);
  border-radius: 6px;
}
.contact-info-card h4 { font-family: var(--font-sans); font-size: 15px; font-weight: 600; }
.contact-info-card p { font-size: 13.5px; color: var(--color-text-muted); margin: 0 0 4px; line-height: 1.55; }
.contact-info-card .accent { color: var(--color-red); font-weight: 500; }

.contact-socials-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin: 30px 0 14px;
}
.contact-socials-row {
  display: flex;
  gap: 10px;
}
.contact-socials-row a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-text);
  transition: all 0.2s var(--ease);
}
.contact-socials-row a:hover { background: var(--color-red); border-color: var(--color-red); color: var(--color-white); }

.inquiry-form {
  background: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 36px 40px;
}
.inquiry-form h3 {
  font-family: var(--font-serif);
  font-size: 24px;
  margin-bottom: 6px;
}
.inquiry-form .form-intro {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-field { display: flex; flex-direction: column; }
.form-field-full { grid-column: 1 / -1; }
.form-field label {
  font-size: 12.5px;
  font-weight: 500;
  margin-bottom: 6px;
  color: var(--color-text);
}
.form-field input,
.form-field select,
.form-field textarea {
  font-family: var(--font-sans);
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  background: var(--color-white);
  color: var(--color-text);
  outline: none;
  transition: border-color 0.2s var(--ease);
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--color-red); }
.form-field textarea { min-height: 96px; resize: vertical; font-family: var(--font-sans); }
.form-submit {
  width: 100%;
  background: var(--color-red);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  padding: 14px;
  font-size: 14px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  cursor: pointer;
  transition: background 0.2s var(--ease);
}
.form-submit:hover { background: var(--color-red-hover); }
.form-plugin-note {
  font-size: 12px;
  color: var(--color-text-muted);
  text-align: center;
  margin-top: 14px;
  font-style: italic;
}

/* ============ FREE ASSESSMENT BOTTOM CTA (used on PR & CBI & Study) ============ */
.assessment-cta {
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-lg);
  padding: 44px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.assessment-cta h3 {
  font-family: var(--font-serif);
  font-size: 26px;
  margin-bottom: 6px;
}
.assessment-cta p { color: rgba(255,255,255,0.65); font-size: 14px; margin: 0; max-width: 460px; }

/* ============ RESPONSIVE: PHASE 2 ============ */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .two-col-story { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: 1fr; }
  .program-cards-grid, .visit-grid, .study-dest-grid, .insights-grid, .levels-grid { grid-template-columns: repeat(2, 1fr); }
  .program-detail-grid { grid-template-columns: 1fr; gap: 22px; }
  .flag-chips { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 640px) {
  .values-grid, .program-cards-grid, .visit-grid, .study-dest-grid, .insights-grid, .levels-grid, .story-stats { grid-template-columns: 1fr; }
  .flag-chips { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form { padding: 26px 22px; }
  .meet-strip, .assessment-cta { padding: 30px 24px; flex-direction: column; align-items: flex-start; }
  .program-line-summary, .program-summary { flex-wrap: wrap; }
}
