/* ============================================================
   ASHA 360 Pro — Main Stylesheet
   ============================================================ */

/* ── CSS Variables ── */
:root {
  --primary:      #2563eb;
  --primary-dark: #1e40af;
  --primary-light:#3b82f6;
  --accent:       #f59e0b;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --bg:           #ffffff;
  --bg-light:     #f8fafc;
  --bg-dark:      #0f172a;
  --border:       #e2e8f0;
  --radius:       12px;
  --radius-lg:    20px;
  --shadow:       0 4px 24px rgba(0,0,0,.08);
  --shadow-md:    0 8px 40px rgba(0,0,0,.12);
  --transition:   .25s ease;
  --container:    1200px;
  --font:         'Inter', 'Segoe UI', system-ui, sans-serif;
}

/* ── Reset / Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font); color: var(--text); background: var(--bg); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Utility ── */
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.section-hd { margin-bottom: 56px; }
.section-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; color: var(--text); margin-bottom: 12px; }
.section-sub { font-size: 1.0625rem; color: var(--text-muted); max-width: 660px; margin: 0 auto; }
.section-sub p { margin: 0; color: inherit; font-size: inherit; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 28px; border-radius: 9999px;
  font-size: .9375rem; font-weight: 600; cursor: pointer;
  border: 2px solid transparent; transition: var(--transition);
  text-decoration: none;
}
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline:hover { background: rgba(255,255,255,.15); }
.btn-white { background: #fff; color: var(--primary); border-color: #fff; }
.btn-white:hover { background: #eff6ff; border-color: #eff6ff; transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: #fff; border-color: rgba(255,255,255,.6); }
.btn-outline-white:hover { background: rgba(255,255,255,.15); border-color: rgba(255,255,255,.9); }
.btn-arr { width: 16px; height: 16px; flex-shrink: 0; }


/* ============================================================
   TOP BAR
   ============================================================ */
.site-topbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1001;
  height: 40px; font-size: .8125rem;
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 16px;
}
.topbar-left { display: flex; align-items: center; min-width: 0; overflow: hidden; }
.topbar-cta  {
  display: flex; align-items: center; gap: 6px;
  font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  text-decoration: none; opacity: .9; transition: opacity var(--transition);
}
.topbar-cta:hover { opacity: 1; }
.topbar-right { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.topbar-item  {
  display: flex; align-items: center; gap: 5px;
  font-weight: 500; opacity: .85; transition: opacity var(--transition);
  text-decoration: none; white-space: nowrap;
}
.topbar-item:hover { opacity: 1; }
.topbar-icon  { width: 13px; height: 13px; flex-shrink: 0; }
.topbar-socials { display: flex; align-items: center; gap: 10px; border-left: 1px solid rgba(255,255,255,.2); padding-left: 14px; }
.topbar-social  {
  display: flex; align-items: center; justify-content: center;
  width: 22px; height: 22px; border-radius: 4px;
  opacity: .75; transition: opacity var(--transition);
  text-decoration: none;
}
.topbar-social:hover { opacity: 1; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,.95); backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: box-shadow var(--transition), border-color var(--transition);
}
.site-header.scrolled { box-shadow: var(--shadow); border-color: var(--border); }

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

.nav-logo { display: flex; align-items: center; gap: 10px; font-weight: 800; font-size: 1.2rem; color: var(--primary); }
.nav-logo img { height: 44px; width: auto; }
.nav-logo-text { color: var(--primary); }

/* nav-menu is now the <nav> wrapper; nav-menu-list is the <ul> */
.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu-list {
  display: flex; align-items: center; gap: 32px;
  list-style: none; margin: 0; padding: 0;
}
/* WordPress wp_nav_menu generates <li><a> — style those anchors too */
.nav-menu-list li a,
.nav-link {
  font-size: .9375rem; font-weight: 500; color: var(--text-muted);
  padding: 4px 0; position: relative; transition: color var(--transition);
  text-decoration: none; display: block;
}
.nav-menu-list li a::after,
.nav-link::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--primary); transform: scaleX(0);
  transition: transform var(--transition); border-radius: 2px;
}
.nav-menu-list li a:hover,
.nav-link:hover { color: var(--primary); }
.nav-menu-list li a:hover::after,
.nav-link:hover::after { transform: scaleX(1); }
.nav-menu-list li.current-menu-item > a { color: var(--primary); }
.nav-menu-list li.current-menu-item > a::after { transform: scaleX(1); }

.nav-cta { font-size: .875rem; padding: 10px 22px; margin-left: 8px; }

.menu-toggle {
  display: none; background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 6px; color: var(--text);
}
.menu-toggle svg { display: block; width: 24px; height: 24px; }


/* ============================================================
   HERO
   ============================================================ */
.hero-section {
  position: relative;
  background: linear-gradient(135deg, #1e3a8a 0%, #1d4ed8 50%, #2563eb 100%);
  padding: 140px 0 0;
  overflow: hidden;
  min-height: 100vh;
  display: flex; flex-direction: column;
}

.hero-bg-blob {
  position: absolute; inset: 0; pointer-events: none; overflow: hidden;
}
.hero-bg-blob::before {
  content: ''; position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  top: -100px; right: -100px; border-radius: 50%;
}
.hero-bg-blob::after {
  content: ''; position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(59,130,246,.3) 0%, transparent 70%);
  bottom: 100px; left: -80px; border-radius: 50%;
}

.hero-inner {
  flex: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px;
  padding-bottom: 60px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.15); color: rgba(255,255,255,.9);
  padding: 6px 16px; border-radius: 9999px;
  font-size: .8125rem; font-weight: 600; letter-spacing: .04em;
  margin-bottom: 20px; border: 1px solid rgba(255,255,255,.2);
}
.hero-badge-dot { width: 6px; height: 6px; background: #34d399; border-radius: 50%; }

.hero-title {
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 900; color: #fff; line-height: 1.15;
  margin-bottom: 16px;
}
.hero-title span { color: #93c5fd; }

.hero-subtitle {
  font-size: 1.25rem; font-weight: 600; color: rgba(255,255,255,.85);
  margin-bottom: 12px;
}

.hero-desc {
  font-size: 1.0625rem; color: rgba(255,255,255,.7);
  margin-bottom: 32px; max-width: 480px;
}
.hero-desc p { margin: 0; color: inherit; }

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; gap: 28px; margin-top: 40px;
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: #fff; }
.hero-stat-lbl { font-size: .8125rem; color: rgba(255,255,255,.65); }

/* Hero image column */
.hero-img-col { position: relative; display: flex; justify-content: flex-end; }
.hero-img-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: 0 24px 80px rgba(0,0,0,.35);
  max-width: 520px; width: 100%;
}
.hero-img-wrap img { width: 100%; height: 480px; object-fit: cover; }

.hero-img-card {
  position: absolute; bottom: 24px; left: -24px;
  background: #fff; border-radius: 14px; padding: 16px 20px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: 12px;
  min-width: 200px;
}
.hero-img-card__ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: #dbeafe; color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.hero-img-card__ico svg { width: 22px; height: 22px; }
.hero-img-card__num { font-size: 1.5rem; font-weight: 800; color: var(--text); }
.hero-img-card__lbl { font-size: .8125rem; color: var(--text-muted); }

/* Wave divider */
.hero-wave {
  position: relative; line-height: 0; margin-top: auto;
}
.hero-wave svg { display: block; width: 100%; }


/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 96px 0; background: var(--bg); }

.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

/* Image column — two overlapping images */
.about-imgs {
  position: relative;
  height: 480px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.about-img {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.about-img--a {
  left: 0; top: 0;
  width: 74%; height: 84%;
  z-index: 1;
}
.about-img--b {
  right: 0; bottom: 0;
  width: 56%; height: 56%;
  border: 4px solid #fff;
  z-index: 2;
}

/* Text column */
.about-body { display: flex; flex-direction: column; }
.about-para { color: var(--text-muted); margin-bottom: 14px; line-height: 1.75; font-size: .9375rem; }
.about-para p { margin: 0; color: inherit; font-size: inherit; line-height: inherit; }

/* Mission / Vision cards */
.mv-cards {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; margin: 24px 0;
}
.mv-card {
  background: var(--bg-light); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 20px;
}
.mv-card__hd {
  display: flex; align-items: center; gap: 10px; margin-bottom: 10px;
}
.mv-card__hd strong { font-size: .9375rem; font-weight: 700; color: var(--text); }

/* Icon bubble */
.mv-icon {
  width: 36px; height: 36px; border-radius: 10px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
}
.mv-icon svg { width: 18px; height: 18px; display: block; }
.mv-icon--blue { background: #dbeafe; color: var(--primary); }
.mv-icon--teal { background: #ccfbf1; color: #0d9488; }

.mv-card--blue { border-left: 3px solid var(--primary); }
.mv-card--teal { border-left: 3px solid #0d9488; }
.mv-card p,
.mv-card-text,
.mv-card-text p { font-size: .875rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Quote banner */
.quote-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: var(--radius-lg);
  padding: 24px 28px; margin-top: 24px;
}
.quote-banner p,
.quote-banner-text,
.quote-banner-text p {
  font-size: 1.0625rem; font-style: italic; line-height: 1.7;
  margin: 0; opacity: .95;
}


/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 96px 0; background: var(--bg-light); }

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 28px;
  transition: transform var(--transition), box-shadow var(--transition);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.svc-icon {
  width: 56px; height: 56px; border-radius: 16px;
  display: flex; align-items: center; justify-content: center; margin-bottom: 20px;
}
.svc-icon svg { width: 26px; height: 26px; }

.icon--orange { background: #fff7ed; color: #f97316; }
.icon--sky    { background: #e0f2fe; color: #0284c7; }
.icon--blue   { background: #dbeafe; color: #2563eb; }
.icon--violet { background: #ede9fe; color: #7c3aed; }
.icon--rose   { background: #fff1f2; color: #e11d48; }
.icon--green  { background: #dcfce7; color: #16a34a; }
.icon--indigo { background: #e0e7ff; color: #4338ca; }
.icon--teal   { background: #ccfbf1; color: #0d9488; }
.icon--amber  { background: #fef3c7; color: #d97706; }

.svc-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 6px; }
.svc-age   { font-size: .8125rem; font-weight: 600; color: var(--primary); background: #dbeafe; padding: 2px 10px; border-radius: 9999px; display: inline-block; margin-bottom: 10px; }
.svc-desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }
.svc-desc p { margin: 0; }

/* Service card as link */
a.svc-card {
  text-decoration: none; color: inherit; display: block;
  cursor: pointer;
}
a.svc-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
a.svc-card .svc-title { color: var(--text); }
.svc-read-more {
  display: inline-flex; align-items: center; gap: 5px;
  margin-top: 14px; font-size: .8125rem; font-weight: 600;
  color: var(--primary); transition: gap var(--transition);
}
a.svc-card:hover .svc-read-more { gap: 8px; }

/* Section tag pill */
.section-tag {
  display: inline-block; background: #dbeafe; color: var(--primary);
  font-size: .8rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 9999px; margin-bottom: 12px;
}


/* ============================================================
   TEAM
   ============================================================ */
.team-section { padding: 96px 0; background: var(--bg); }

.team-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: center;
}

.team-photo-col { position: relative; }
.team-photo {
  width: 100%; height: 480px; object-fit: cover;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

.roles-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 20px; }
.role-row  { display: flex; align-items: center; gap: 10px; }
.role-dot  { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.dot--blue   { background: #2563eb; }
.dot--teal   { background: #0d9488; }
.dot--purple { background: #7c3aed; }
.dot--sky    { background: #0284c7; }
.dot--orange { background: #f97316; }
.dot--green  { background: #16a34a; }
.dot--indigo { background: #4338ca; }
.dot--rose   { background: #e11d48; }
.role-lbl  { font-size: .9375rem; font-weight: 500; color: var(--text); }
.role-lbl--link {
  text-decoration: none; color: var(--primary);
  border-bottom: 1px dotted var(--primary);
  transition: color var(--transition), border-color var(--transition);
}
.role-lbl--link:hover { color: var(--primary-dark); border-color: var(--primary-dark); }

.expert-banner {
  display: flex; gap: 20px; align-items: flex-start;
  background: #dbeafe; border: 1px solid #93c5fd;
  border-radius: var(--radius-lg); padding: 28px 32px;
  margin-top: 48px;
}
.expert-banner__ico {
  width: 48px; height: 48px; border-radius: 12px;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.expert-banner__ico svg { width: 24px; height: 24px; }
.expert-banner strong { display: block; font-size: 1rem; font-weight: 700; margin-bottom: 6px; color: var(--primary-dark); }
.expert-banner p,
.expert-banner-text,
.expert-banner-text p { font-size: .9375rem; color: var(--text-muted); line-height: 1.7; margin: 0; }


/* ============================================================
   ABA APPROACH
   ============================================================ */
.aba-section { padding: 96px 0; background: var(--bg-light); }

.aba-pillars {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; margin-bottom: 48px;
}

.aba-pillar {
  background: #fff; border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 32px 24px;
  transition: transform var(--transition), box-shadow var(--transition);
  text-align: center;
}
.aba-pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.pillar-ico {
  width: 64px; height: 64px; border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.pillar-ico svg { width: 30px; height: 30px; }
.pillar-ico--rose   { background: #fff1f2; color: #e11d48; }
.pillar-ico--blue   { background: #dbeafe; color: #2563eb; }
.pillar-ico--amber  { background: #fef3c7; color: #d97706; }
.pillar-ico--teal   { background: #ccfbf1; color: #0d9488; }

.pillar-title { font-size: 1.0625rem; font-weight: 700; margin-bottom: 10px; }
.pillar-desc  { font-size: .9rem; color: var(--text-muted); line-height: 1.65; }

.belief-banner {
  /* background set via Theme Options → ABA Approach → Our Belief Banner */
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 36px 40px;
  display: flex; gap: 24px; align-items: flex-start;
}
.belief-banner strong { font-size: 1rem; font-weight: 700; display: block; margin-bottom: 8px; opacity: .9; }
.belief-banner p,
.belief-text,
.belief-text p { font-size: 1.0625rem; line-height: 1.7; opacity: .85; margin: 0; }


/* ============================================================
   VOCATIONAL
   ============================================================ */
.voc-section { padding: 96px 0; background: var(--bg); }

.voc-heading { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.voc-sub,
.voc-sub p   { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 48px; max-width: 700px; }

.skills-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-bottom: 56px;
}

.skills-hd {
  display: flex; align-items: center; gap: 12px;
  font-size: 1.125rem; font-weight: 700; margin-bottom: 20px;
}
.skills-ico { width: 22px; height: 22px; color: var(--primary); flex-shrink: 0; }

.skills-list { display: flex; flex-direction: column; gap: 12px; }
.skill-item  {
  display: flex; align-items: center; gap: 12px;
  font-size: .9375rem; color: var(--text);
}
.skill-item svg { width: 18px; height: 18px; color: var(--primary); flex-shrink: 0; }

.coaching-box {
  background: #eff6ff; border: 1px solid #bfdbfe;
  border-radius: var(--radius); padding: 22px 24px; margin-top: 4px;
}
.coaching-box strong { display: block; font-size: .9375rem; font-weight: 700; color: var(--primary-dark); margin-bottom: 8px; }
.coaching-box p,
.coaching-text,
.coaching-text p { font-size: .9rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* Initiatives */
.initiatives { }
.init-heading { font-size: 1.375rem; font-weight: 800; margin-bottom: 24px; }
.init-box {
  /* background set via Theme Options → Vocational → Future Initiatives */
  background: linear-gradient(135deg, var(--primary) 0%, #1d4ed8 100%);
  color: #fff; border-radius: var(--radius-lg); padding: 36px 40px;
}
.init-box__title { font-size: 1.125rem; font-weight: 700; display: block; margin-bottom: 8px; }
.init-box__lead,
.init-box__lead p  { font-size: .9375rem; opacity: .85; margin-bottom: 20px; }
.init-list { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.init-item {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; opacity: .9; line-height: 1.5;
}
.init-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; }


/* ============================================================
   CONTACT
   ============================================================ */
.contact-section { padding: 96px 0; background: var(--bg-light); }

.contact-grid {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 56px; align-items: start;
}

.contact-name { font-size: 1.375rem; font-weight: 800; margin-bottom: 24px; color: var(--text); }
.contact-list { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 14px; }
.contact-ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: #dbeafe; color: var(--primary);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-ico svg { width: 20px; height: 20px; }
.contact-item strong { display: block; font-size: .8125rem; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .05em; margin-bottom: 3px; }
.contact-item span:last-child { font-size: .9375rem; color: var(--text); }

/* Form */
.contact-form-wrap {
  background: linear-gradient(135deg, #1e3a8a 0%, var(--primary) 100%);
  border-radius: var(--radius-lg); padding: 40px;
}
.contact-form__ttl { font-size: 1.25rem; font-weight: 700; color: #fff; margin-bottom: 24px; }
.contact-form { display: flex; flex-direction: column; gap: 14px; }

.f-input {
  width: 100%; padding: 13px 16px;
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.25);
  border-radius: 10px; color: #fff; font-size: .9375rem;
  outline: none; transition: border-color var(--transition), background var(--transition);
  font-family: var(--font);
}
.f-input::placeholder { color: rgba(255,255,255,.55); }
.f-input:focus { border-color: rgba(255,255,255,.6); background: rgba(255,255,255,.18); }
.f-textarea { resize: vertical; min-height: 120px; }

.f-btn {
  background: #fff; color: var(--primary);
  border: none; border-radius: 9999px;
  padding: 14px 32px; font-size: .9375rem; font-weight: 700;
  cursor: pointer; transition: var(--transition);
  align-self: flex-start;
}
.f-btn:hover { background: #eff6ff; transform: translateY(-1px); }
.f-btn:disabled { opacity: .6; cursor: not-allowed; transform: none; }

.f-response { font-size: .9rem; padding-top: 4px; }
.f-response--ok  { color: #86efac; }
.f-response--err { color: #fca5a5; }


/* ============================================================
   DUAL-IMAGE FRAME  (hero, about, team)
   ============================================================ */

/* Shared container */
.duo-frame {
  position: relative;
  width: 100%;
}

/* Decorative radial blob behind both images */
.duo-blob {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 65% 35%, rgba(37,99,235,.14) 0%, rgba(13,148,136,.08) 55%, transparent 75%);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  pointer-events: none;
  z-index: 0;
}

/* Main large image */
.duo-main {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 64px rgba(0,0,0,.22);
  z-index: 1;
}

/* Smaller offset image */
.duo-secondary {
  position: absolute;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: 0 14px 40px rgba(0,0,0,.2);
  border: 5px solid #fff;
  z-index: 2;
}

/* ── Hero duo-frame sizing & position ── */
.hero-duo-wrap {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin-left: auto;
}
.hero-duo-wrap .hero-img-card {
  position: absolute;
  bottom: 52%;
  left: 46%;
  transform: translate(-50%, 50%);
  z-index: 3;
}
.hero-duo {
  height: 500px;
}
.hero-duo .duo-main      { top: 0; right: 0; width: 84%; height: 84%; }
.hero-duo .duo-secondary { bottom: 0; left: 0; width: 50%; height: 50%; }

/* ── Team duo-frame sizing & position ── */
.team-duo {
  height: 520px;
}
.team-duo .duo-main      { top: 0; left: 0; width: 80%; height: 84%; }
.team-duo .duo-secondary { bottom: 0; right: 0; width: 52%; height: 50%; }

/* ── Float animation ── */
@keyframes a360float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
.a360-float { animation: a360float 4s ease-in-out infinite; }

/* ── Scroll-reveal ── */
.a360-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .8s cubic-bezier(.4,0,.2,1), transform .8s cubic-bezier(.4,0,.2,1);
}
.a360-reveal.a360-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── About section: duo-blob inside existing .about-imgs ── */
.about-imgs .duo-blob { border-radius: var(--radius-lg); }

/* Responsive — collapse duo-frame on small screens */
@media (max-width: 1024px) {
  .hero-duo, .team-duo { height: 420px; }
  .hero-duo-wrap { max-width: 100%; }
}
@media (max-width: 640px) {
  .hero-duo  { height: 320px; }
  .team-duo  { height: 320px; }
  .hero-duo-wrap .hero-img-card { display: none; }
}


/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--bg-dark); color: rgba(255,255,255,.75); padding: 72px 0 0; }

.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.footer-logo { display: inline-flex; align-items: center; gap: 8px; margin-bottom: 16px; }
.footer-logo-text { font-size: 1.25rem; font-weight: 800; color: #fff; }
.footer-desc { font-size: .9375rem; line-height: 1.75; color: rgba(255,255,255,.6); max-width: 320px; margin-bottom: 24px; }

.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,255,255,.08); color: rgba(255,255,255,.75);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition), color var(--transition);
}
.footer-social:hover { background: var(--primary); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }

.footer-col__hd { font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: .9375rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-links a:hover { color: #fff; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-list li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.5;
}
.footer-contact-list svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--primary-light); }
.footer-contact-list a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-contact-list a:hover { color: #fff; }

.footer-links span { font-size: .9375rem; color: rgba(255,255,255,.6); }

/* wp_nav_menu output inside footer */
.footer-nav-menu { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-nav-menu li { margin: 0; }
.footer-nav-menu a { font-size: .9375rem; color: rgba(255,255,255,.6); transition: color var(--transition); text-decoration: none; }
.footer-nav-menu a:hover { color: #fff; }

.footer-col-text { font-size: .9375rem; color: rgba(255,255,255,.6); line-height: 1.75; }
.footer-col-text p { margin: 0 0 10px; color: inherit; }
.footer-col-text p:last-child { margin-bottom: 0; }
.footer-col-text a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col-text a:hover { color: #fff; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; font-size: .875rem; color: rgba(255,255,255,.45);
}

/* ============================================================
   BLOG / INDEX
   ============================================================ */
.posts-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.post-card { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; }
.post-thumb img { width: 100%; height: 220px; object-fit: cover; }
.post-body { padding: 24px; }
.post-date { font-size: .8125rem; color: var(--text-muted); display: block; margin-bottom: 8px; }
.post-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 10px; }
.post-title a:hover { color: var(--primary); }
.post-excerpt { font-size: .9rem; color: var(--text-muted); margin-bottom: 16px; }

.no-posts { text-align: center; padding: 60px 0; }
.no-posts h2 { font-size: 1.5rem; margin-bottom: 12px; }
.no-posts p  { color: var(--text-muted); margin-bottom: 24px; }

.pagination { margin-top: 48px; text-align: center; }
.pagination .nav-links { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; }
.pagination a, .pagination span { padding: 8px 16px; border-radius: 8px; font-size: .9rem; border: 1px solid var(--border); }
.pagination .current { background: var(--primary); color: #fff; border-color: var(--primary); }


/* ============================================================
   RESPONSIVE — Tablet (≤1024px)
   ============================================================ */
@media (max-width: 1024px) {
  .hero-inner     { grid-template-columns: 1fr; text-align: center; }
  .hero-img-col   { justify-content: center; }
  .hero-desc      { margin: 0 auto 32px; }
  .hero-actions   { justify-content: center; }
  .hero-stats     { justify-content: center; }
  .hero-img-wrap  { max-width: 420px; }
  .hero-img-card  { display: none; }

  .about-grid   { grid-template-columns: 1fr; }
  .about-imgs   { height: 320px; margin-bottom: 24px; }

  .aba-pillars  { grid-template-columns: repeat(2, 1fr); }

  .team-grid    { grid-template-columns: 1fr; }
  .team-photo   { height: 360px; }

  .contact-grid { grid-template-columns: 1fr; }
}


/* ============================================================
   RESPONSIVE — Tablet + Mobile nav (≤991px)
   Desktop nav hides; hamburger menu appears
   ============================================================ */
@media (max-width: 991px) {
  .nav-menu { display: none; flex-direction: column; gap: 0; }
  .nav-menu.is-open {
    display: flex; position: absolute; left: 0; right: 0;
    top: 72px; /* overridden per header height via dynamic CSS */
    background: #fff; padding: 16px 24px; border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow); z-index: 999;
  }
  .nav-menu-list { flex-direction: column; align-items: flex-start; gap: 0; width: 100%; }
  .nav-menu-list li { width: 100%; border-bottom: 1px solid var(--border); }
  .nav-menu-list li a,
  .nav-link { padding: 13px 0; }
  .nav-cta  { margin-top: 12px; margin-left: 0; width: 100%; justify-content: center; }
  .menu-toggle { display: flex; }
}


/* ============================================================
   RESPONSIVE — Footer collapses (≤778px)
   ============================================================ */
@media (max-width: 778px) {
  .footer-grid   { grid-template-columns: 1fr !important; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}


/* ============================================================
   RESPONSIVE — Mobile (≤640px)
   ============================================================ */
@media (max-width: 640px) {
  .svc-grid    { grid-template-columns: 1fr; }
  .mv-cards    { grid-template-columns: 1fr; }
  .skills-grid { grid-template-columns: 1fr; }
  .aba-pillars { grid-template-columns: 1fr; }
  .roles-grid  { grid-template-columns: 1fr; }
  .init-list   { grid-template-columns: 1fr; }
  .posts-grid  { grid-template-columns: 1fr; }

  .about-imgs { height: 280px; }
  .about-img--a { width: 80%; height: 82%; }
  .about-img--b { width: 58%; height: 55%; }

  .hero-section { padding-top: 100px; }
  .hero-title   { font-size: 2rem; }

  .belief-banner { flex-direction: column; padding: 28px 24px; }
  .quote-banner  { padding: 20px 24px; }

  .contact-form-wrap { padding: 28px 24px; }
  .init-box { padding: 28px 24px; }

  .section-hd { margin-bottom: 36px; }
}
