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

:root {
  --blue-900: #0a1628;
  --blue-800: #0f2744;
  --blue-700: #163560;
  --teal:     #0e9f8a;
  --teal-dk:  #0b8574;
  --teal-lt:  #12c4aa;
  --gold:     #e8b84b;
  --white:    #ffffff;
  --gray-50:  #f4f7fa;
  --gray-100: #e8edf3;
  --gray-400: #94a3b8;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --radius:   10px;
  --shadow:   0 4px 24px rgba(10, 22, 40, 0.08);
  --font:     system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.65;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-100);
  transition: box-shadow 0.3s;
}

.site-header.scrolled { box-shadow: var(--shadow); }

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

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  color: var(--blue-900);
}

.brand-logo {
  height: 46px;
  width: auto;
  display: block;
}

.brand-mark {
  width: 34px;
  height: 34px;
  color: var(--teal);
  flex-shrink: 0;
}

.brand-text strong { color: var(--teal); font-weight: 700; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.site-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: color 0.2s;
}

.site-nav a:hover { color: var(--teal); }

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 0.55rem 1.15rem;
  border-radius: 8px;
  font-weight: 600 !important;
}

.nav-cta:hover { background: var(--teal-dk) !important; }

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}

.menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--blue-900);
  border-radius: 2px;
  transition: 0.3s;
}

.menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn.open span:nth-child(2) { opacity: 0; }
.menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  font-size: 0.95rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}

.btn-fill {
  background: var(--teal);
  color: var(--white);
}

.btn-fill:hover {
  background: var(--teal-dk);
  transform: translateY(-1px);
}

.btn-ghost {
  border-color: rgba(255,255,255,0.45);
  color: var(--white);
  background: transparent;
}

.btn-ghost:hover { background: rgba(255,255,255,0.12); }

.btn-light {
  background: var(--white);
  color: var(--blue-900);
}

.btn-light:hover { background: var(--gray-50); }

.btn-full { width: 100%; }

/* ===== Hero ===== */
.hero {
  position: relative;
  padding: 120px 0 80px;
  background: linear-gradient(145deg, var(--blue-900) 0%, var(--blue-700) 55%, var(--teal-dk) 100%);
  color: var(--white);
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background-image:
    radial-gradient(circle at 20% 50%, var(--white) 1px, transparent 1px),
    radial-gradient(circle at 80% 20%, var(--white) 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.1rem);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 1rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--gold);
}

.lead {
  font-size: 1.08rem;
  opacity: 0.88;
  max-width: 520px;
  margin-bottom: 1.75rem;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.social-row { display: flex; gap: 0.65rem; flex-wrap: wrap; }

.social-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 0.85rem;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.82rem;
  font-weight: 500;
  transition: background 0.2s;
}

.social-chip:hover { background: rgba(255,255,255,0.2); }

.hero-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1.75rem;
  backdrop-filter: blur(8px);
}

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

.stat-box {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}

.stat-num {
  display: block;
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.78rem;
  opacity: 0.75;
  margin-top: 0.25rem;
  display: block;
}

.hero-card-footer {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.9rem;
  opacity: 0.8;
  text-align: center;
}

/* ===== Sections ===== */
.section { padding: 5rem 0; }
.section-muted { background: var(--gray-50); }

.section-head { margin-bottom: 2.75rem; }
.section-head.center { text-align: center; }

.section-head h2 {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-top: 0.5rem;
}

.section-head .sub {
  color: var(--gray-600);
  margin-top: 0.5rem;
  max-width: 520px;
}

.section-head.center .sub { margin-left: auto; margin-right: auto; }

.tag {
  display: inline-block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== About ===== */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about-copy p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.ticks { margin-top: 1.5rem; }

.ticks li {
  position: relative;
  padding-left: 1.6rem;
  margin-bottom: 0.65rem;
  font-weight: 500;
  font-size: 0.95rem;
}

.ticks li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 8px;
  height: 8px;
  background: var(--teal);
  border-radius: 50%;
}

.feature-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.feature {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.feature:hover { transform: translateY(-3px); }

.feature-icon {
  width: 42px;
  height: 42px;
  background: rgba(14, 159, 138, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  color: var(--teal);
}

.feature-icon svg { width: 22px; height: 22px; }

.feature h3 {
  font-size: 1rem;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.feature p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ===== Director ===== */
.directors-grid {
  display: grid;
  gap: 4rem;
}

.director-layout {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 3rem;
  align-items: center;
}

.director-layout--reverse {
  direction: rtl;
}

.director-layout--reverse > * {
  direction: ltr;
}

.director-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
}

.director-tags span {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.director-photo {
  position: relative;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.14);
  border: 1px solid var(--gray-100);
}

.director-photo img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  background: var(--gray-50);
}

.director-links {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.25rem;
  padding: 1rem 1.1rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
}

.director-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue-800);
  transition: color 0.2s;
  word-break: break-all;
}

.director-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--teal);
}

.director-link:hover { color: var(--teal); }

.director-badge {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  background: var(--teal);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.45rem 0.85rem;
  border-radius: 6px;
  box-shadow: 0 4px 12px rgba(14, 159, 138, 0.35);
}

.director-copy h3 {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  font-weight: 800;
  color: var(--blue-900);
  margin-bottom: 0.25rem;
}

.director-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.director-lead {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--blue-900);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.director-copy p {
  color: var(--gray-600);
  margin-bottom: 1rem;
}

.director-highlights {
  margin: 1.25rem 0 1.5rem;
}

.director-highlights li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.55rem;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--gray-800);
}

.director-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 7px;
  height: 7px;
  background: var(--teal);
  border-radius: 50%;
}

.director-countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.director-countries span {
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--blue-800);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
}

.director-cta { margin-top: 0.25rem; }

/* ===== Countries ===== */
.country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.country-card {
  display: block;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  transition: all 0.25s;
  cursor: default;
}

.country-card:hover {
  border-color: var(--teal-lt);
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}

.country-card .flag {
  font-size: 2.2rem;
  margin-bottom: 0.75rem;
}

.country-card h3 {
  font-size: 1.05rem;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}

.country-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.85rem;
}

.country-card .fee {
  display: inline-block;
  background: rgba(14, 159, 138, 0.1);
  color: var(--teal-dk);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
}

/* ===== University Brochures ===== */
.brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.brochure-card {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 1rem;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.25rem 1.35rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.brochure-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(10, 22, 40, 0.12);
  border-color: rgba(14, 159, 138, 0.35);
}

.brochure-card-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(14, 159, 138, 0.1);
  color: var(--teal-dk);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.brochure-card-icon svg {
  width: 28px;
  height: 28px;
}

.brochure-card-body { min-width: 0; }

.brochure-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-dk);
  margin-bottom: 0.25rem;
}

.brochure-card h3 {
  font-size: 1rem;
  color: var(--blue-900);
  line-height: 1.35;
  margin-bottom: 0.2rem;
}

.brochure-meta {
  font-size: 0.82rem;
  color: var(--gray-600);
  margin-bottom: 0.45rem;
}

.brochure-fee {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 0.65rem;
  margin-bottom: 0.35rem;
}

.brochure-fee strong {
  font-size: 0.92rem;
  color: var(--blue-900);
}

.brochure-fee span {
  font-size: 0.8rem;
  color: var(--gray-600);
}

.brochure-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold);
  background: rgba(232, 184, 75, 0.15);
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
}

.brochure-dl {
  white-space: nowrap;
  font-size: 0.85rem;
  padding: 0.55rem 0.95rem;
  align-self: center;
}

.brochure-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--gray-600);
  margin-top: 1.35rem;
}

.seo-brochure-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}

.seo-brochure-card {
  display: block;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.seo-brochure-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.seo-brochure-card h3 {
  font-size: 1rem;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.seo-brochure-card p {
  font-size: 0.88rem;
  color: var(--gray-600);
  margin-bottom: 0.65rem;
}

.seo-brochure-card .brochure-dl-inline {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--teal-dk);
  text-decoration: underline;
}

@media (max-width: 900px) {
  .brochure-grid,
  .seo-brochure-grid {
    grid-template-columns: 1fr;
  }

  .brochure-card {
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }

  .brochure-dl {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

/* ===== Services ===== */
.services-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.service-block {
  padding: 1.75rem 1.5rem;
  border-top: 2px solid var(--gray-100);
  transition: background 0.2s;
}

.service-block:hover { background: var(--gray-50); }

.service-block .num {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--teal);
  letter-spacing: 0.05em;
  margin-bottom: 0.6rem;
  display: block;
}

.service-block h3 {
  font-size: 1rem;
  color: var(--blue-900);
  margin-bottom: 0.4rem;
}

.service-block p {
  font-size: 0.88rem;
  color: var(--gray-600);
}

/* ===== Timeline ===== */
.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.timeline li {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  counter-increment: step;
  position: relative;
}

.timeline li::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--teal);
  color: var(--white);
  font-weight: 700;
  font-size: 0.85rem;
  border-radius: 50%;
  margin-bottom: 0.85rem;
}

.timeline strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.timeline p {
  font-size: 0.84rem;
  color: var(--gray-600);
}

/* ===== Gallery ===== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
}

.gallery-filter {
  background: var(--white);
  border: 1px solid var(--gray-100);
  color: var(--gray-600);
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.2s;
}

.gallery-filter:hover {
  border-color: var(--teal-lt);
  color: var(--teal);
}

.gallery-filter.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border: none;
  padding: 0;
  background: none;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.14);
}

.gallery-item.wide { grid-column: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10, 22, 40, 0.75) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s;
}

.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-item-overlay span {
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.35;
}

.gallery-item-tag {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: rgba(14, 159, 138, 0.92);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
}

/* ===== Videos ===== */
.video-feature {
  margin-bottom: 2rem;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(10, 22, 40, 0.12);
  background: var(--blue-900);
}

.video-feature-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0;
  align-items: stretch;
}

.video-feature-player {
  position: relative;
  padding-bottom: 56.25%;
  background: #000;
}

.video-feature-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-feature-info {
  padding: 2rem;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.video-feature-info .tag { color: var(--teal-lt); margin-bottom: 0.5rem; }

.video-feature-info h3 {
  font-size: 1.35rem;
  font-weight: 800;
  margin-bottom: 0.75rem;
  line-height: 1.35;
}

.video-feature-info p {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.92rem;
  line-height: 1.65;
}

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

.video-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.25s, box-shadow 0.25s;
  cursor: pointer;
}

.video-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(10, 22, 40, 0.12);
}

.video-card-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--blue-900);
  overflow: hidden;
}

.video-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

.video-card-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 22, 40, 0.35);
  transition: background 0.2s;
}

.video-card:hover .video-card-play { background: rgba(10, 22, 40, 0.5); }

.video-card-play svg {
  width: 52px;
  height: 52px;
  color: var(--white);
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
}

.video-card-body {
  padding: 1rem 1.15rem 1.25rem;
}

.video-card-body h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
  line-height: 1.4;
}

.video-card-body p {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.5;
}

.video-channel-cta {
  text-align: center;
  margin-top: 2.5rem;
}

.video-channel-cta .btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

/* ===== Lightbox ===== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(10, 22, 40, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox[hidden] { display: none; }

.lightbox-inner {
  max-width: min(920px, 100%);
  text-align: center;
}

.lightbox-inner img {
  max-width: 100%;
  max-height: 75vh;
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
}

.lightbox-caption {
  color: var(--white);
  margin-top: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(255, 255, 255, 0.12);
  border: none;
  color: var(--white);
  font-size: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  line-height: 1;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255, 255, 255, 0.22); }

.lightbox-close { top: 1.25rem; right: 1.25rem; font-size: 1.75rem; }
.lightbox-prev { left: 1.25rem; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 1.25rem; top: 50%; transform: translateY(-50%); }

/* ===== FAQ ===== */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--blue-900);
  padding: 1.1rem 1.25rem;
  list-style: none;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-size: 1.2rem;
  line-height: 1;
}

.faq-item[open] summary::after { content: "−"; }

.faq-item p {
  padding: 0 1.25rem 1.15rem;
  color: var(--gray-600);
}

/* ===== SEO Country Pages ===== */
.seo-page {
  padding: 6rem 0 4rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 1.25rem;
}

.breadcrumb a {
  color: var(--teal-dk);
  text-decoration: underline;
}

.seo-page h1 {
  font-size: clamp(1.6rem, 4vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.25;
  margin-bottom: 1rem;
}

.seo-lead {
  font-size: 1.1rem;
  color: var(--gray-600);
  max-width: 720px;
  margin-bottom: 2rem;
}

.seo-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--blue-900);
  margin: 1.75rem 0 0.75rem;
}

.seo-content p {
  color: var(--gray-600);
  margin-bottom: 1rem;
  max-width: 720px;
}

.seo-content .ticks {
  margin: 1rem 0 1.5rem;
  max-width: 720px;
}

.seo-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 2rem 0;
}

.seo-related {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-100);
}

.seo-related h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.seo-related a {
  color: var(--teal-dk);
  text-decoration: underline;
}

/* ===== Google Business / Office ===== */
.business-profile {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 1.75rem;
  align-items: start;
}

.business-brand-bar {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1rem 1.25rem;
  background: linear-gradient(135deg, var(--blue-900), var(--teal-dk));
  color: var(--white);
  border-radius: calc(var(--radius) + 4px);
}

.business-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: inherit;
  text-decoration: none;
}

.business-brand-logo {
  height: 54px;
  width: auto;
  display: block;
  border-radius: 8px;
  background: #fff;
  padding: 4px 10px;
}

.business-brand-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.85rem;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  font-size: 0.9rem;
}

.business-brand-rating .stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
}

.business-brand-rating strong {
  font-size: 1rem;
}

.business-main {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.business-map-wrap {
  aspect-ratio: 16 / 9;
  background: var(--gray-100);
}

.business-map {
  width: 100%;
  height: 100%;
  border: 0;
}

.business-details {
  padding: 1.35rem 1.5rem 1.5rem;
}

.business-rating {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.15rem;
}

.business-name {
  font-size: 1.15rem;
  color: var(--blue-900);
  margin: 0;
}

.business-rating-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.business-rating-row strong {
  color: var(--blue-900);
  font-size: 1rem;
}

.business-rating-label {
  color: var(--gray-600);
  font-size: 0.88rem;
}

.business-tagline {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin: 0;
}

.business-rating .stars {
  color: #fbbc04;
  letter-spacing: 0.05em;
  font-size: 1rem;
}

.business-rating strong {
  color: var(--blue-900);
  font-size: 1.05rem;
}

.business-meta {
  display: grid;
  gap: 0.95rem;
  margin-bottom: 1.25rem;
}

.meta-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--teal-dk);
  margin-bottom: 0.2rem;
}

.business-meta-item p {
  color: var(--gray-800);
  font-size: 0.95rem;
  line-height: 1.55;
}

.business-meta-item a {
  color: var(--blue-900);
  text-decoration: underline;
}

.business-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.business-side {
  display: grid;
  gap: 1.25rem;
}

.business-side h3 {
  font-size: 1rem;
  color: var(--blue-900);
}

.business-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.55rem;
}

.business-photos img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--gray-100);
}

.business-reviews {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: calc(var(--radius) + 2px);
  padding: 1.15rem;
}

.business-reviews h3 {
  margin-bottom: 0.85rem;
}

.review-video-block {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.review-video-list {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.review-video-wrap {
  border-radius: calc(var(--radius) - 2px);
  overflow: hidden;
  background: #000;
  max-width: 320px;
  margin: 0 auto;
  aspect-ratio: 9 / 16;
}

.review-video-embed {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.review-video-link {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--teal-dk);
  text-decoration: underline;
}

.review-video-meta {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.review-video-stars {
  color: #fbbc04;
  letter-spacing: 0.04em;
  line-height: 1.4;
  flex-shrink: 0;
}

.review-video-meta p {
  margin: 0;
  color: var(--gray-800);
  font-size: 0.92rem;
  line-height: 1.45;
}

.review-summary {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 1rem;
}

.review-summary-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin-bottom: 0.25rem;
}

.stars-lg {
  color: #fbbc04;
  font-size: 1.45rem;
  letter-spacing: 0.06em;
  line-height: 1;
}

.review-summary-stars strong {
  font-size: 1.35rem;
  color: var(--blue-900);
}

.review-summary-brand {
  font-weight: 800;
  color: var(--blue-900);
  font-size: 1rem;
}

.review-summary-sub {
  color: var(--gray-600);
  font-size: 0.82rem;
  margin-top: 0.15rem;
}

.review-feed {
  display: grid;
  gap: 0.65rem;
  max-height: 320px;
  overflow-y: auto;
  margin-bottom: 1rem;
  padding-right: 0.15rem;
}

.review-card-stars {
  color: #fbbc04;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 0.35rem;
}

.review-form {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 1rem;
  margin-bottom: 0.85rem;
}

.review-form h4 {
  color: var(--blue-900);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.review-form-note {
  color: var(--gray-600);
  font-size: 0.82rem;
  margin-bottom: 0.85rem;
}

.review-form .field-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gray-800);
  margin-bottom: 0.35rem;
}

.star-picker {
  display: flex;
  gap: 0.15rem;
}

.star-btn {
  background: none;
  border: none;
  font-size: 1.55rem;
  line-height: 1;
  color: var(--gray-100);
  cursor: pointer;
  padding: 0.1rem;
}

.star-btn.active {
  color: #fbbc04;
}

.star-btn:hover,
.star-btn:focus {
  transform: scale(1.08);
}

.form-msg {
  margin-top: 0.65rem;
  font-size: 0.88rem;
}

.form-msg.success { color: var(--teal-dk); }
.form-msg.error { color: #c0392b; }

.review-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 0.65rem;
}

.review-card p {
  color: var(--gray-800);
  font-size: 0.9rem;
  margin-bottom: 0.45rem;
}

.review-card span {
  color: var(--gray-600);
  font-size: 0.78rem;
}

.review-google-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.35rem;
  padding: 0.65rem 0.95rem;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  color: var(--blue-900);
  font-weight: 600;
  font-size: 0.88rem;
  box-shadow: var(--shadow);
}

.review-google-btn:hover {
  border-color: var(--teal-lt);
}

.footer-address {
  margin-top: 0.65rem;
  font-size: 0.84rem;
  opacity: 0.85;
  max-width: 280px;
}

/* ===== CTA Band ===== */
.cta-band {
  background: var(--blue-900);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band-inner h2 {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-weight: 800;
  margin-bottom: 0.65rem;
}

.cta-band-inner p {
  opacity: 0.82;
  margin-bottom: 1.5rem;
}

/* ===== Contact ===== */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 3rem;
  align-items: start;
}

.contact-side h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--blue-900);
  margin: 0.5rem 0 0.75rem;
}

.contact-side > p {
  color: var(--gray-600);
  margin-bottom: 1.75rem;
}

.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.15rem;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  transition: all 0.2s;
}

.contact-card:hover {
  border-color: var(--teal-lt);
  background: rgba(14, 159, 138, 0.05);
}

.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--teal);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.contact-card-icon svg { width: 20px; height: 20px; }
.contact-card-icon.youtube { background: #ff0000; }
.contact-card-icon.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.contact-card-icon.email { background: #ea4335; }

.form-error {
  text-align: center;
  color: #dc2626;
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 0.85rem;
}

.btn-fill:disabled {
  opacity: 0.7;
  cursor: not-allowed;
  transform: none;
}

.float-wa {
  background: #25d366;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  animation: pulse-wa 2.5s infinite;
}

.float-wa:hover { background: #1ebe57; }

@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.75); }
}

.contact-card strong {
  display: block;
  font-size: 0.95rem;
  color: var(--blue-900);
}

.contact-card span {
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ===== Form ===== */
.inquiry-form {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  border-radius: 14px;
  padding: 2rem;
}

.inquiry-form h3 {
  font-size: 1.15rem;
  color: var(--blue-900);
  margin-bottom: 1.25rem;
}

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

.field { margin-bottom: 1rem; }

.field label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue-900);
  margin-bottom: 0.35rem;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--gray-100);
  border-radius: 8px;
  font-family: inherit;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--gray-800);
  transition: border-color 0.2s;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--teal);
}

.field input.error { border-color: #ef4444; }

.form-success {
  text-align: center;
  color: var(--teal-dk);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 0.85rem;
}

/* ===== Footer ===== */
.site-footer {
  background: var(--blue-900);
  color: rgba(255,255,255,0.7);
  padding-top: 3rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
}

.footer-brand .brand { color: var(--white); margin-bottom: 0.85rem; }
.footer-brand p { font-size: 0.88rem; max-width: 280px; }

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  margin-bottom: 0.85rem;
}

.footer-col a {
  display: block;
  font-size: 0.85rem;
  padding: 0.3rem 0;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--teal-lt); }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0;
  text-align: center;
  font-size: 0.82rem;
}

/* ===== Float Call Button ===== */
.float-call {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 150;
  width: 56px;
  height: 56px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(14, 159, 138, 0.45);
  transition: transform 0.2s, background 0.2s;
  animation: pulse 2.5s infinite;
}

.float-call svg { width: 24px; height: 24px; }
.float-call:hover { background: var(--teal-dk); transform: scale(1.08); }

@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(14, 159, 138, 0.45); }
  50%       { box-shadow: 0 4px 30px rgba(14, 159, 138, 0.7); }
}

/* ===== Scroll reveal ===== */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive ===== */
@media (max-width: 960px) {
  .hero-grid,
  .about-layout,
  .director-layout,
  .contact-layout,
  .business-profile { grid-template-columns: 1fr; }

  .director-layout--reverse { direction: ltr; }

  .country-grid,
  .services-list,
  .gallery-grid,
  .video-grid { grid-template-columns: repeat(2, 1fr); }

  .gallery-item.wide { grid-column: span 2; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 4 / 3; }

  .video-feature-inner { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .menu-btn { display: flex; }

  .site-nav {
    position: fixed;
    top: 68px;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1.25rem;
    gap: 0.25rem;
    border-bottom: 1px solid var(--gray-100);
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .site-nav.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a { padding: 0.65rem 0; width: 100%; }

  .country-grid,
  .services-list,
  .gallery-grid,
  .video-grid,
  .timeline { grid-template-columns: 1fr; }

  .gallery-item.wide { grid-column: span 1; }

  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }

  .form-pair { grid-template-columns: 1fr; }

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

  .footer-inner { grid-template-columns: 1fr; }

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