/* ============================================================
   GATSPY — Institut de Langues | main.css
   Colors: #2b2f4c (navy), #f5c518 (gold), #ffffff (white)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;1,300&display=swap');

/* ── Variables ───────────────────────────────────────────── */
:root {
  --navy:      #2b2f4c;
  --navy-deep: #1e2138;
  --navy-mid:  #363b5e;
  --gold:      #f5c518;
  --gold-dim:  #d4a800;
  --white:     #ffffff;
  --off-white: #f7f8fc;
  --gray:      #8a8fa8;
  --gray-lt:   #e8eaf2;
  --text:      #1a1d2e;
  --radius:    12px;
  --radius-lg: 24px;
  --shadow:    0 4px 32px rgba(43,47,76,.12);
  --shadow-lg: 0 12px 60px rgba(43,47,76,.2);
  --trans:     .3s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

/* Image protection */
.service-card-img,
.hero-lang-card .flag {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.service-card-img img,
.hero-lang-card .flag img {
  pointer-events: none;
}

/* ── Typography ──────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; }
h3 { font-size: 1.25rem; font-weight: 700; }
h4 { font-size: 1rem; font-weight: 600; }
p  { color: #4a4f6e; }

/* ── Utility ─────────────────────────────────────────────── */
.container   { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.text-gold   { color: var(--gold); }
.text-navy   { color: var(--navy); }
.text-white  { color: var(--white); }
.section     { padding: 96px 0; }
.section-sm  { padding: 64px 0; }
.mt-2        { margin-top: 8px; }
.mt-4        { margin-top: 16px; }
.mt-6        { margin-top: 24px; }

/* ── Scroll reveal ───────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s cubic-bezier(.4,0,.2,1),
              transform .7s cubic-bezier(.4,0,.2,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  transition: var(--trans);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
}
.btn-primary:hover {
  background: var(--gold-dim);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245,197,24,.35);
}
.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}
.btn-secondary {
  background: var(--gray-lt);
  color: var(--navy);
}
.btn-secondary:hover { background: var(--gray); color: var(--white); }

/* ── Badge ───────────────────────────────────────────────── */
.badge {
  display: inline-block;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  background: rgba(245,197,24,.15);
  color: var(--gold-dim);
  border: 1px solid rgba(245,197,24,.3);
}

/* ═══════════════════════════════════════════════════════════
   HEADER / NAV
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  transition: background var(--trans), box-shadow var(--trans), padding var(--trans);
}
.site-header.scrolled {
  background: rgba(43,47,76,.97);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0,0,0,.25);
  padding: 0 24px;
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo img {
  height: 48px;
  width: 48px;
  border-radius: 50%;
  object-fit: cover;
}
.logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--white);
  letter-spacing: .02em;
}
.logo-text span { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: .95rem;
  color: rgba(255,255,255,.8);
  position: relative;
  padding-bottom: 4px;
  transition: color var(--trans);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--white); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

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

.mobile-only-nav-link {
  display: none;
}

.language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
}
.language-trigger {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: auto;
  height: auto;
  padding: 8px 0 9px;
  border: 0;
  border-bottom: 2px solid transparent;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  transition: color var(--trans), border-color var(--trans);
}
.language-trigger-arrow {
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.language-switcher:hover .language-trigger,
.language-switcher:focus-within .language-trigger,
.language-switcher.open .language-trigger {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.language-switcher.open .language-trigger {
  box-shadow: none;
}
.language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 138px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  transition: opacity var(--trans), transform var(--trans);
  z-index: 20;
}
.language-switcher:hover .language-dropdown,
.language-switcher:focus-within .language-dropdown,
.language-switcher.open .language-dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.language-dropdown .language-link {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  white-space: nowrap;
}
.language-dropdown .language-link::after {
  display: none;
}
.language-dropdown .language-link:hover,
.language-dropdown .language-link.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
}
.language-dropdown .language-link.active {
  color: var(--gold);
}

.site-header .nav-links .language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.site-header .nav-links .language-trigger {
  all: unset;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 0 9px;
  border-bottom: 2px solid transparent;
  color: rgba(255,255,255,.82);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
  transition: color var(--trans), border-color var(--trans);
}
.site-header .nav-links .language-trigger::after {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}
.site-header .nav-links .language-trigger-arrow {
  display: none;
}
.site-header .nav-links .language-switcher:hover .language-trigger,
.site-header .nav-links .language-switcher:focus-within .language-trigger,
.site-header .nav-links .language-switcher.open .language-trigger {
  color: var(--white);
  border-bottom-color: var(--gold);
}
.site-header .nav-links .language-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  display: none;
  min-width: 138px;
  padding: 8px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: var(--navy);
  box-shadow: var(--shadow-lg);
  z-index: 50;
}
.site-header .nav-links .language-switcher:hover .language-dropdown,
.site-header .nav-links .language-switcher:focus-within .language-dropdown,
.site-header .nav-links .language-switcher.open .language-dropdown {
  display: block;
}
.site-header .nav-links .language-dropdown .language-link {
  display: block;
  width: 100%;
  padding: 9px 10px;
  border-radius: 6px;
  color: rgba(255,255,255,.76);
  font-size: .9rem;
  white-space: nowrap;
}
.site-header .nav-links .language-dropdown .language-link::after {
  display: none;
}
.site-header .nav-links .language-dropdown .language-link:hover,
.site-header .nav-links .language-dropdown .language-link.active {
  background: rgba(255,255,255,.08);
  color: var(--gold);
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 26px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--trans);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ═══════════════════════════════════════════════════════════
   PAGE HERO BANNER (inner pages)
   ═══════════════════════════════════════════════════════════ */
.page-hero {
  background: var(--navy);
  padding: 140px 24px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(245,197,24,.12) 0%, transparent 65%);
}
.page-hero h1 { color: var(--white); position: relative; }
.page-hero p  { color: rgba(255,255,255,.65); margin-top: 12px; font-size: 1.1rem; position: relative; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
  font-size: .875rem;
  color: rgba(255,255,255,.5);
  position: relative;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span::before { content: '›'; margin-right: 8px; }

/* ═══════════════════════════════════════════════════════════
   SECTION HEADER
   ═══════════════════════════════════════════════════════════ */
.section-header { text-align: center; margin-bottom: 60px; }
.section-eyebrow {
  display: inline-block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 12px;
  padding: 5px 14px;
  border: 1px solid rgba(245,197,24,.35);
  border-radius: 20px;
  background: rgba(245,197,24,.06);
}
.section-header p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 1.05rem;
}

.formation-section {
  max-width: 980px;
  margin: 0 auto;
  padding-top: 28px;
}

.formation-group-label {
  display: block;
  width: fit-content;
  margin: 0 auto 28px;
  text-align: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dim);
  padding: 10px 22px;
  border: 1px solid rgba(245,197,24,.35);
  border-radius: 999px;
  background: rgba(245,197,24,.06);
}

.formation-block {
  padding: 40px 0;
}

.formation-block:first-child {
  padding-top: 0;
}

.formation-title {
  margin-top: 16px;
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.15;
}

.formation-intro {
  margin-top: 18px;
  max-width: 860px;
  font-size: 1.08rem;
  line-height: 1.9;
  color: var(--muted);
}

.formation-list {
  list-style: none;
  display: grid;
  gap: 14px;
  margin-top: 28px;
  padding: 0;
}

.formation-list li {
  position: relative;
  padding-left: 24px;
  font-size: 1.06rem;
  line-height: 1.8;
  color: var(--text);
}

.formation-list li::before {
  content: '•';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--gold);
  font-size: 1.2rem;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════
   HOME — HERO
   ═══════════════════════════════════════════════════════════ */
.hero {
  background: var(--navy);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 100px 24px 60px;
}

/* Animated geometric background */
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.hero-bg .circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(245,197,24,.15);
  animation: pulseCircle 6s ease-in-out infinite;
}
.hero-bg .circle:nth-child(1) { width: 600px; height: 600px; right: -150px; top: -150px; animation-delay: 0s; }
.hero-bg .circle:nth-child(2) { width: 900px; height: 900px; right: -300px; top: -300px; animation-delay: 1s; }
.hero-bg .circle:nth-child(3) { width: 1200px; height: 1200px; right: -450px; top: -450px; animation-delay: 2s; }
.hero-bg .glow {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245,197,24,.1) 0%, transparent 70%);
  right: 5%;
  top: 20%;
  animation: floatGlow 8s ease-in-out infinite;
}

@keyframes pulseCircle {
  0%, 100% { opacity: .4; transform: scale(1); }
  50%       { opacity: .8; transform: scale(1.03); }
}
@keyframes floatGlow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-30px) scale(1.1); }
}

/* Floating language pills */
.hero-floats {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.float-pill {
  position: absolute;
  background: rgba(255,255,255,.08);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 40px;
  padding: 8px 18px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  animation: floatPill 5s ease-in-out infinite;
}
.float-pill:nth-child(1) { top: 22%; left: 5%;  animation-delay: 0s; }
.float-pill:nth-child(2) { top: 55%; left: 3%;  animation-delay: 1.2s; }
.float-pill:nth-child(3) { top: 75%; left: 8%;  animation-delay: 2.4s; }
.float-pill:nth-child(4) { top: 30%; right: 3%; animation-delay: .6s; }
.float-pill:nth-child(5) { top: 65%; right: 5%; animation-delay: 1.8s; }
@keyframes floatPill {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

.hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content { max-width: 580px; }
.hero-inner-single {
  grid-template-columns: 1fr;
  gap: 0;
}
.hero-content-wide {
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  animation: fadeSlideUp .7s .2s forwards;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 28px; height: 2px;
  background: var(--gold);
}
.hero-title {
  color: var(--white);
  opacity: 0;
  animation: fadeSlideUp .7s .35s forwards;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
  position: relative;
}
.hero-subtitle {
  color: rgba(255,255,255,.65);
  font-size: 1.1rem;
  margin-top: 20px;
  line-height: 1.75;
  opacity: 0;
  animation: fadeSlideUp .7s .5s forwards;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 36px;
  opacity: 0;
  animation: fadeSlideUp .7s .65s forwards;
}
.hero-stats {
  display: flex;
  gap: 36px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1);
  opacity: 0;
  animation: fadeSlideUp .7s .8s forwards;
}
.stat-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
}

/* Hero visual (right side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  opacity: 0;
  animation: fadeSlideRight .9s .4s forwards;
}
.hero-card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  max-width: 420px;
}
.hero-lang-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: var(--trans);
  cursor: default;
}
.hero-lang-card:hover {
  background: rgba(245,197,24,.1);
  border-color: rgba(245,197,24,.3);
  transform: translateY(-4px);
}
.hero-lang-card .flag { font-size: 2.2rem; margin-bottom: 8px; }
.hero-lang-card .lang-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  color: var(--white);
}
.hero-lang-card .lang-level {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  margin-top: 3px;
}
.hero-lang-card.featured {
  background: var(--gold);
  border-color: var(--gold);
  grid-column: 1 / -1;
}
.hero-lang-card.featured .lang-name { color: var(--navy); }
.hero-lang-card.featured .lang-level { color: rgba(43,47,76,.6); }

@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeSlideRight {
  from { opacity: 0; transform: translateX(36px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ═══════════════════════════════════════════════════════════
   HOME — WHY US (Features strip)
   ═══════════════════════════════════════════════════════════ */
.features-strip {
  background: var(--off-white);
  padding: 72px 24px;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius);
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}
.feature-item h4 { color: var(--navy); font-size: 1rem; }
.feature-item p  { font-size: .88rem; }

/* ═══════════════════════════════════════════════════════════
   SERVICES CARDS
   ═══════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

@media (min-width: 1025px) {
  .home-languages-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .learning-modes-grid {
    grid-template-columns: repeat(2, minmax(300px, 360px));
    justify-content: center;
  }
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--trans);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(245,197,24,.4);
}
.service-card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.service-card-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(43,47,76,.5), transparent);
}
.service-card-img img { width: 100%; height: 100%; object-fit: cover; }
.service-card-body { padding: 34px; flex: 1; display: flex; flex-direction: column; gap: 18px; }
.service-card-body h3 {
  font-size: 1.45rem;
  line-height: 1.2;
}
.service-card-body p {
  font-size: 1.08rem;
  line-height: 1.85;
}
.service-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 20px;
}
.service-meta .tag {
  font-size: 1rem;
  padding: 10px 16px;
  border-radius: 20px;
  background: var(--off-white);
  color: var(--navy);
  font-weight: 600;
  border: 1px solid var(--gray-lt);
}
.service-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--gold-dim);
}
.service-card-body .btn { margin-top: 12px; width: 100%; justify-content: center; }

/* ═══════════════════════════════════════════════════════════
   ═══════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-grid.about-grid-no-visual {
  grid-template-columns: 1fr;
  gap: 0;
}
.about-visual {
  position: relative;
  padding: 24px;
}
.about-img-wrap {
  border-radius: 26px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 60%, rgba(245,197,24,.2) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-img-wrap-natural {
  border-radius: 26px;
  overflow: hidden;
  background: transparent;
  padding: 0;
  display: block;
}
.about-img-wrap-natural img {
  position: static;
  inset: auto;
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  border-radius: inherit;
}
.about-img-placeholder {
  font-size: 5rem;
  opacity: .3;
}
.about-badge {
  position: absolute;
  bottom: 0; right: 0;
  background: var(--gold);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  box-shadow: var(--shadow-lg);
}
.about-badge .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.about-badge .lbl { font-size: .78rem; color: var(--navy-mid); font-weight: 500; }
.about-content .lead {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  margin: 20px 0 16px;
}
.value-list { display: flex; flex-direction: column; gap: 16px; margin-top: 24px; }
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(43,47,76,.07);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.value-item h4 { margin-bottom: 2px; }
.value-item p  { font-size: .88rem; }

/* Team strip */
.numbers-strip {
  background: var(--navy);
  padding: 72px 24px;
}
.numbers-grid {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.number-item .num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
}
.number-item .lbl {
  font-size: .85rem;
  color: rgba(255,255,255,.55);
  margin-top: 6px;
}

/* ═══════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════ */
.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 60px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-info-card {
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 8px;
  padding: 42px 40px 26px;
  color: var(--white);
  box-shadow: 0 28px 80px rgba(30,33,56,.18);
}
.contact-info-card h3 {
  color: var(--white);
  margin-bottom: 6px;
  font-size: clamp(1.45rem, 2.2vw, 1.85rem);
}
.contact-info-card p  {
  color: rgba(255,255,255,.72);
  margin-bottom: 34px;
  font-size: 1.02rem;
  line-height: 1.7;
}
.contact-detail {
  display: flex;
  gap: 18px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.contact-detail:last-child { border-bottom: none; }
.contact-detail-icon {
  width: 46px; height: 46px;
  flex-shrink: 0;
  background: rgba(255,255,255,.15);
  color: var(--white);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.02rem;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
}
.contact-detail-icon svg,
.contact-detail-icon i {
  width: 18px;
  height: 18px;
  display: block;
  line-height: 1;
}
.contact-detail-text strong {
  display: block;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .88rem;
  color: #ffd216;
  font-weight: 800;
  margin-bottom: 5px;
  letter-spacing: 0;
  text-transform: uppercase;
}
.contact-detail-text span {
  display: block;
  font-size: 1.02rem;
  color: rgba(255,255,255,.92);
  line-height: 1.45;
  overflow-wrap: anywhere;
}
.contact-detail-text a {
  color: inherit;
}
.contact-detail-text a:hover {
  color: var(--gold);
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  border: 1px solid var(--gray-lt);
  box-shadow: var(--shadow);
}
.contact-form-card h3 { margin-bottom: 6px; }
.contact-form-card > p { font-size: .93rem; margin-bottom: 30px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: .83rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: .03em;
}
.field input,
.field textarea,
.field select {
  padding: 12px 16px;
  border: 1.5px solid var(--gray-lt);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: .95rem;
  color: var(--text);
  background: var(--off-white);
  transition: border-color var(--trans), box-shadow var(--trans);
  outline: none;
  width: 100%;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(43,47,76,.1);
  background: var(--white);
}
.field textarea { resize: vertical; min-height: 130px; }

/* ═══════════════════════════════════════════════════════════
   CTA BANNER
   ═══════════════════════════════════════════════════════════ */
.cta-banner,
.site-footer {
  background:
    linear-gradient(90deg, rgba(20,23,45,1) 0%, rgba(20,23,45,0.85) 40%, rgba(20,23,45,0.4) 100%),
    url('../img/map-background.png') right center / cover no-repeat,
    #0f1123;
  background-attachment: scroll, fixed, scroll;
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(30,33,56,.10), rgba(30,33,56,.38));
  pointer-events: none;
}

.cta-banner {
  padding: 90px 24px;
  text-align: center;
}

.cta-banner .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
}

.cta-banner h2 { color: var(--white); position: relative; }
.cta-banner p   { color: rgba(255,255,255,.65); margin: 16px auto 0; max-width: 480px; position: relative; }
.cta-banner .cta-actions {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 36px;
  flex-wrap: wrap;
  position: relative;
}

/* ═══════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-lt);
  border-radius: var(--radius-lg);
  padding: 30px;
  transition: var(--trans);
}
.testimonial-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(245,197,24,.3);
}
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 14px; }
.testimonial-card p { font-size: .93rem; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-lt);
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  color: var(--gold);
  font-size: .9rem;
  flex-shrink: 0;
}
.author-name  { font-weight: 600; font-size: .9rem; color: var(--navy); }
.author-level { font-size: .78rem; color: var(--gray); }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  color: rgba(255,255,255,.7);
  padding: 72px 24px 32px;
}
.footer-inner {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { margin-top: 12px; font-size: .88rem; line-height: 1.7; max-width: 260px; }
.icon-container,
.icon-row {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  grid-column: 1 / -1;
  justify-self: center;
  gap: 42px;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 auto;
  list-style: none;
  padding: 50px 0 0;
}

.icon-item {
  position: relative;
}

.icon-item .card-item {
  position: relative;
  display: block;
  width: 60px;
  height: 60px;
  background-color: #ffffff;
  text-align: center;
  line-height: 60px;
  font-size: 24px;
  color: #333;
  transition: 0.5s;
  transform: perspective(1000px) rotate(-30deg) skew(25deg);
  box-shadow: -20px 20px 20px rgba(0, 0, 0, 0.5);
  text-decoration: none;
}

.icon-item .card-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: -10px;
  width: 10px;
  height: 100%;
  background: #ccc;
  transform: skewY(-45deg);
  transition: 0.5s;
}

.icon-item .card-item i {
  position: relative;
  z-index: 1;
}

.icon-item:hover .card-item {
  background-color: var(--color);
  color: #fff;
  transform: perspective(1000px) rotate(-30deg) skew(25deg) translate(10px, -10px);
  box-shadow: -30px 30px 40px rgba(0, 0, 0, 0.5);
}

.icon-item:hover .card-item::before {
  background: var(--color);
  filter: brightness(0.8);
}
.footer-col h5 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: .82rem;
  color: rgba(255,255,255,.35);
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,.5); }
.footer-bottom a:hover { color: var(--gold); }

/* ═══════════════════════════════════════════════════════════
   PUBLIC EMPTY PAGES / VISITOR DASHBOARD SHELL
   ═══════════════════════════════════════════════════════════ */
.site-header {
  background: transparent;
}

.site-header.scrolled,
.site-header.nav-open {
  background: rgba(43,47,76,.94);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 60px rgba(11,14,30,.18);
}

.header-inner {
  border-bottom: 1px solid rgba(255,255,255,.12);
}

.site-header.scrolled .header-inner,
.site-header.nav-open .header-inner {
  border-bottom-color: transparent;
}

.logo img {
  background: var(--white);
  box-shadow: 0 8px 28px rgba(0,0,0,.16);
}

.logo-text {
  color: var(--white);
  letter-spacing: .04em;
}

.nav-links {
  gap: 28px;
}

.nav-links a {
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
}

.nav-links .nav-cta::after {
  display: none;
}

.nav-cta {
  color: var(--navy) !important;
  box-shadow: 0 12px 30px rgba(245,197,24,.22);
}

.footer-brand .logo {
  margin-bottom: 16px;
}

.footer-brand .logo img {
  width: 54px;
  height: 54px;
}

.footer-brand p {
  color: rgba(255,255,255,.66);
}

.footer-col ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
}

/* ═══════════════════════════════════════════════════════════
   ADMIN PANEL
   ═══════════════════════════════════════════════════════════ */
.admin-body {
  font-family: 'DM Sans', sans-serif;
  background: #f0f2f8;
  color: var(--text);
  min-height: 100vh;
}
.admin-sidebar {
  position: fixed;
  top: 0; left: 0; bottom: 0;
  width: 260px;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  z-index: 100;
  overflow-y: auto;
}
.sidebar-logo {
  padding: 24px 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-logo img { width: 40px; height: 40px; border-radius: 50%; }
.sidebar-logo-text {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 800;
  font-size: 1.1rem;
  color: var(--white);
}
.sidebar-logo-text span { color: var(--gold); }
.sidebar-logo small {
  display: block;
  font-size: .7rem;
  color: rgba(255,255,255,.4);
  font-weight: 400;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.sidebar-nav {
  padding: 20px 12px;
  flex: 1;
}
.sidebar-section-label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.3);
  padding: 8px 12px 4px;
  margin-top: 12px;
}
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .92rem;
  color: rgba(255,255,255,.65);
  transition: var(--trans);
  text-decoration: none;
  margin-bottom: 2px;
}
.sidebar-nav a:hover,
.sidebar-nav a.active {
  background: rgba(255,255,255,.1);
  color: var(--white);
}
.sidebar-nav a.active { background: rgba(245,197,24,.15); color: var(--gold); }
.sidebar-nav a .nav-icon { font-size: 1rem; width: 20px; text-align: center; }
.sidebar-footer {
  padding: 16px 12px;
  border-top: 1px solid rgba(255,255,255,.08);
}
.sidebar-footer a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border-radius: 10px;
  font-size: .9rem;
  color: rgba(255,255,255,.5);
  transition: var(--trans);
}
.sidebar-footer a:hover { background: rgba(255,255,255,.08); color: var(--white); }

.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-lt);
  padding: 0 32px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar h1 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}
.admin-user {
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-avatar {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: var(--gold);
}
.admin-user-name { font-size: .9rem; font-weight: 500; }
.admin-content { padding: 32px; flex: 1; }

/* Stats cards */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.stat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--gray-lt);
  display: flex;
  gap: 16px;
  align-items: center;
}
.stat-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.stat-card-icon.gold   { background: rgba(245,197,24,.15); }
.stat-card-icon.navy   { background: rgba(43,47,76,.1); }
.stat-card-icon.green  { background: rgba(16,185,129,.1); }
.stat-card-icon.orange { background: rgba(251,146,60,.1); }
.stat-card-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--navy);
  line-height: 1;
}
.stat-card-label { font-size: .8rem; color: var(--gray); margin-top: 3px; }

/* Admin card */
.admin-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-lt);
  box-shadow: 0 2px 12px rgba(43,47,76,.05);
}
.admin-card h2 {
  font-size: 1.2rem;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--gray-lt);
}

/* Form grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-grid .field.full { grid-column: 1 / -1; }
.button-row {
  display: flex;
  gap: 12px;
  padding-top: 8px;
}

/* Table */
.admin-table { overflow-x: auto; }
.admin-table table { width: 100%; border-collapse: collapse; }
.admin-table thead th {
  background: var(--off-white);
  padding: 12px 16px;
  font-size: .8rem;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: .05em;
  text-align: left;
  white-space: nowrap;
}
.admin-table tbody td {
  padding: 14px 16px;
  font-size: .9rem;
  border-bottom: 1px solid var(--gray-lt);
  vertical-align: middle;
}
.admin-table tbody tr:hover { background: rgba(43,47,76,.02); }
.admin-table tbody tr:last-child td { border-bottom: none; }
.admin-actions { display: flex; gap: 8px; align-items: center; }

/* Alerts */
.alert {
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: .9rem;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success {
  background: rgba(16,185,129,.1);
  color: #047857;
  border: 1px solid rgba(16,185,129,.25);
}
.alert-error {
  background: rgba(239,68,68,.08);
  color: #b91c1c;
  border: 1px solid rgba(239,68,68,.2);
}

/* Messages table */
.msg-unread td { font-weight: 600; }
.msg-preview { max-width: 280px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-inner    { grid-template-columns: 1fr; }
  .hero-visual   { display: none; }
  .about-grid    { grid-template-columns: 1fr; }
  .about-visual  { display: none; }
  .contact-layout{ grid-template-columns: 1fr; }
  .numbers-grid  { grid-template-columns: repeat(2,1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .nav-links     { display: none; flex-direction: column; position: absolute; top: 76px; left: 0; right: 0; background: var(--navy); padding: 20px 24px; gap: 4px; }
  .nav-links.open{ display: flex; }
  .nav-toggle    { display: flex; }
  .nav-cta       { display: none; }
  .admin-sidebar { transform: translateX(-100%); transition: var(--trans); }
  .admin-sidebar.open { transform: none; }
  .admin-main    { margin-left: 0; }
  .form-grid     { grid-template-columns: 1fr; }
  .form-row      { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px 20px; }
  .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
  .numbers-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-stats    { flex-wrap: wrap; gap: 20px; }
}

@media (max-width: 900px) {
  .site-header {
    padding: 0 18px;
  }

  .header-inner {
    height: 72px;
  }

  .logo img {
    width: 44px;
    height: 44px;
  }

  .logo-text {
    font-size: 1.18rem;
  }

  .nav-links {
    top: 72px;
    left: 18px;
    right: 18px;
    padding: 18px;
    gap: 8px;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 0 0 var(--radius-lg) var(--radius-lg);
    background: rgba(43,47,76,.98);
    box-shadow: 0 24px 70px rgba(0,0,0,.24);
  }

  .nav-links a {
    width: 100%;
    padding: 12px 4px;
  }

  .nav-links .nav-cta {
    display: inline-flex;
    justify-content: center;
    margin: 10px 0 0;
    padding: 12px 20px;
  }

}

@media (max-width: 560px) {
  .site-header {
    padding: 0 14px;
  }

  .header-inner {
    height: 68px;
  }

  .nav-links {
    top: 68px;
    left: 14px;
    right: 14px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .icon-container,
  .icon-row {
    gap: 22px;
    padding-top: 36px;
  }
}
  .img {
   border-radius: var(--radius);
   
  }

.location-showcase {
  padding: 92px 0;
  background:
    linear-gradient(135deg, rgba(30,33,56,.98), rgba(43,47,76,.94)),
    var(--navy);
  overflow: hidden;
}

.location-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, .85fr) minmax(320px, 1.15fr);
  gap: 46px;
  align-items: center;
}

.location-showcase-copy h2 {
  max-width: 520px;
  color: var(--white);
}

.location-showcase-copy p {
  max-width: 500px;
  margin: 18px 0 30px;
  color: rgba(255,255,255,.68);
  font-size: 1.04rem;
}

.location-showcase-map {
  position: relative;
  display: block;
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--navy-deep);
  box-shadow: 0 34px 90px rgba(0,0,0,.3);
  isolation: isolate;
}

.location-showcase-map::before {
  content: '';
  position: absolute;
  inset: 14px;
  z-index: 2;
  border: 1px solid rgba(245,197,24,.42);
  border-radius: calc(var(--radius-lg) - 8px);
  pointer-events: none;
}

.location-showcase-map::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(8,19,33,.02) 45%, rgba(8,19,33,.86) 100%);
  pointer-events: none;
}

.location-showcase-map img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center;
  transition: transform var(--trans), filter var(--trans);
}

.location-showcase-map:hover img {
  filter: saturate(1.08) brightness(1.08);
  transform: scale(1.05);
}

.location-showcase-map span {
  position: absolute;
  left: 32px;
  bottom: 30px;
  z-index: 3;
  display: inline-flex;
  padding: 10px 16px;
  border: 1px solid rgba(245,197,24,.44);
  border-radius: 999px;
  background: rgba(245,197,24,.16);
  color: var(--white);
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .location-showcase-grid {
    grid-template-columns: 1fr;
  }

  .location-showcase-map,
  .location-showcase-map img {
    min-height: 380px;
  }
}

@media (max-width: 560px) {
  .location-showcase {
    padding: 68px 0;
  }

  .location-showcase-map,
  .location-showcase-map img {
    min-height: 320px;
  }

  .location-showcase-map span {
    left: 22px;
    bottom: 22px;
  }
}

@media (max-width: 768px) {
  .site-header {
    background: rgba(43,47,76,.95);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);
    box-shadow: 0 18px 60px rgba(11,14,30,.18);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
    gap: 16px;
    padding: 0;
    border-bottom-color: rgba(255,255,255,.08);
  }

  .logo {
    gap: 10px;
    flex: 0 0 auto;
  }

  .logo img {
    width: 42px;
    height: 42px;
  }

  .logo-text {
    font-size: 1.1rem;
  }

  .container {
    padding: 0 20px;
  }

  .section {
    padding: 72px 0;
  }

  .section-sm {
    padding: 52px 0;
  }

  .site-header .nav-links {
    display: flex;
    position: static;
    top: auto;
    left: auto;
    right: auto;
    flex: 1 1 auto;
    flex-direction: row;
    flex-wrap: nowrap;
    min-width: 0;
    align-items: center;
    justify-content: flex-end;
    gap: 18px;
    padding: 0;
    border: none;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    max-height: none;
    overflow: visible;
  }

  .site-header .nav-links a {
    width: auto;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 0 10px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.82);
    font-family: 'DM Sans', sans-serif;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  .site-header .nav-links a::after {
    display: block;
    bottom: 0;
  }

  .site-header .nav-links a.active {
    background: transparent;
    border-color: transparent;
    color: var(--white);
  }

  .site-header .nav-links .nav-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    min-height: 42px;
    margin-left: 12px;
    padding: 0 20px;
    border: 2px solid transparent;
    border-radius: 10px;
    background: var(--gold);
    color: var(--navy) !important;
    font-family: 'Plus Jakarta Sans', sans-serif;
    box-shadow: 0 12px 30px rgba(245,197,24,.22);
  }

  .site-header .nav-links .nav-cta::after {
    display: none;
  }

  .site-header .nav-links .language-switcher {
    display: inline-flex;
    align-items: center;
    width: auto;
    flex: 0 0 auto;
    position: relative;
    z-index: 60;
  }

  .site-header .nav-links .language-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 0 10px;
    border: 0;
    border-bottom: 2px solid transparent;
    border-radius: 0;
    background: transparent;
    color: rgba(255,255,255,.82);
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: .9rem;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
    cursor: pointer;
  }

  .site-header .nav-links .language-dropdown {
    top: calc(100% + 10px);
    left: auto;
    right: 0;
    min-width: 138px;
    margin-top: 0;
    border-radius: 8px;
    background: rgba(43,47,76,.98);
    transform: translateY(-6px);
  }

  .site-header .nav-links .language-dropdown .language-link {
    padding: 10px 12px;
    border: none;
    border-radius: 8px;
    background: transparent;
    font-size: .86rem;
  }

  .site-header .nav-links .language-switcher:hover .language-dropdown,
  .site-header .nav-links .language-switcher:focus-within .language-dropdown,
  .site-header .nav-links .language-switcher.open .language-dropdown {
    transform: translateY(0);
  }

  .nav-toggle {
    display: none !important;
  }

  .page-hero {
    padding: 126px 20px 64px;
  }

  .page-hero p {
    max-width: 32rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1rem;
    line-height: 1.7;
  }

  .breadcrumb {
    flex-wrap: wrap;
    row-gap: 6px;
  }

  .hero {
    min-height: 100svh;
    padding: 122px 20px 56px;
  }

  .hero-content,
  .hero-content-wide {
    max-width: none;
  }

  .hero-eyebrow {
    flex-wrap: wrap;
    row-gap: 6px;
    margin-bottom: 18px;
    font-size: .74rem;
  }

  .hero-title {
    font-size: clamp(2.2rem, 9vw, 3.1rem);
    line-height: 1.08;
  }

  .hero-subtitle {
    max-width: 36rem;
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .hero-actions,
  .cta-banner .cta-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .hero-actions .btn,
  .cta-banner .btn {
    width: 100%;
    justify-content: center;
  }

  .numbers-strip {
    padding: 56px 20px;
  }

  .number-item .num {
    font-size: 2.25rem;
  }

  .number-item .lbl {
    line-height: 1.45;
  }

  .section-header {
    margin-bottom: 42px;
  }

  .section-header p {
    font-size: 1rem;
    line-height: 1.75;
  }

  .about-grid {
    gap: 28px;
  }

  .about-visual {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 0 auto;
    padding: 0;
  }

  .about-img-wrap,
  .about-img-wrap-natural {
    border-radius: 22px;
  }

  .about-content .lead {
    font-size: 1rem;
  }

  .value-list {
    gap: 14px;
  }

  .features-grid,
  .services-grid {
    gap: 20px;
  }

  .feature-item {
    padding: 22px 20px;
    border: 1px solid var(--gray-lt);
    border-radius: 18px;
    background: var(--white);
    box-shadow: 0 18px 36px rgba(43,47,76,.06);
  }

  .feature-icon {
    width: 48px;
    height: 48px;
  }

  .feature-item p {
    font-size: .94rem;
    line-height: 1.7;
  }

  .service-card {
    border-radius: 20px;
  }

  .service-card-img {
    height: 176px;
  }

  .service-card-body {
    padding: 24px 22px;
    gap: 14px;
  }

  .service-card-body h3 {
    font-size: 1.22rem;
  }

  .service-card-body p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .service-meta {
    gap: 10px;
    padding-top: 16px;
  }

  .service-meta .tag {
    padding: 8px 12px;
    font-size: .9rem;
  }

  .formation-section {
    padding-top: 18px;
  }

  .formation-group-label {
    margin-bottom: 20px;
    padding: 8px 16px;
    letter-spacing: .12em;
  }

  .formation-block {
    padding: 28px 0;
  }

  .formation-title {
    font-size: clamp(1.55rem, 7vw, 2rem);
  }

  .formation-intro {
    margin-top: 14px;
    font-size: 1rem;
    line-height: 1.72;
  }

  .formation-list {
    gap: 12px;
    margin-top: 20px;
  }

  .formation-list li {
    padding-left: 20px;
    font-size: .98rem;
    line-height: 1.7;
  }

  .contact-info-card {
    padding: 30px 24px 20px;
    border-radius: 20px;
  }

  .contact-info-card p {
    margin-bottom: 22px;
    font-size: .95rem;
  }

  .contact-detail {
    gap: 14px;
    align-items: flex-start;
    padding: 16px 0;
  }

  .contact-detail-icon {
    width: 42px;
    height: 42px;
  }

  .contact-detail-text span {
    font-size: .96rem;
    line-height: 1.55;
  }

  .contact-form-card {
    padding: 30px 22px;
    border-radius: 20px;
  }

  .field input,
  .field textarea,
  .field select {
    min-height: 48px;
    font-size: 16px;
  }

  .field textarea {
    min-height: 140px;
  }

  .cta-banner,
  .site-footer {
    background-attachment: scroll, scroll, scroll;
  }

  .cta-banner {
    padding: 76px 20px;
  }

  .site-footer {
    padding: 60px 20px 28px;
  }

  .footer-brand p {
    max-width: none;
  }

  .footer-col ul {
    gap: 12px;
  }

  .footer-col ul li a {
    overflow-wrap: anywhere;
  }

  .icon-row {
    padding-top: 30px;
  }
}

@media (max-width: 560px) {
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 60px 0;
  }

  .header-inner {
    height: 76px;
    gap: 12px;
    padding: 0;
  }

  .logo img {
    width: 38px;
    height: 38px;
  }

  .logo-text {
    font-size: 1rem;
  }

  .site-header .nav-links {
    gap: 14px;
  }

  .site-header .nav-links a,
  .site-header .nav-links .language-trigger,
  .site-header .nav-links .nav-cta {
    font-size: .82rem;
  }

  .site-header .nav-links .nav-cta {
    min-height: 38px;
    padding: 0 16px;
    margin-left: 6px;
  }

  .page-hero {
    padding: 112px 16px 56px;
  }

  .page-hero h1 {
    font-size: clamp(1.95rem, 10vw, 2.5rem);
  }

  .page-hero p {
    font-size: .96rem;
  }

  .breadcrumb {
    font-size: .82rem;
  }

  .hero {
    padding: 108px 16px 48px;
  }

  .hero-bg .circle:nth-child(1) {
    width: 420px;
    height: 420px;
    right: -170px;
    top: -70px;
  }

  .hero-bg .circle:nth-child(2) {
    width: 620px;
    height: 620px;
    right: -260px;
    top: -210px;
  }

  .hero-bg .circle:nth-child(3),
  .hero-bg .glow {
    display: none;
  }

  .hero-eyebrow {
    letter-spacing: .1em;
  }

  .hero-eyebrow::before {
    width: 20px;
  }

  .hero-actions .btn,
  .cta-banner .btn {
    padding: 14px 18px;
  }

  .services-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .service-card-img {
    height: 164px;
  }

  .service-card-body {
    padding: 22px 18px;
  }

  .about-visual {
    max-width: 340px;
  }

  .formation-title {
    margin-top: 12px;
  }

  .contact-info-card,
  .contact-form-card {
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-detail-text strong {
    font-size: .82rem;
  }

  .contact-detail-text span,
  .footer-col ul li a,
  .footer-bottom {
    overflow-wrap: anywhere;
  }

  .cta-banner {
    padding: 72px 16px;
  }

  .site-footer {
    padding: 56px 16px 28px;
  }

  .icon-row {
    gap: 18px;
    padding-top: 28px;
  }

  .icon-item .card-item {
    width: 52px;
    height: 52px;
    line-height: 52px;
    font-size: 22px;
    box-shadow: -16px 16px 18px rgba(0, 0, 0, 0.38);
  }
}

@media (max-width: 420px) {
  .numbers-grid {
    grid-template-columns: 1fr;
  }
}

.image-card {
  border-radius: 48px;
  overflow: hidden;
  width: 100%;
  max-width: 600px;
  display: block;
}

.image-card img {
  width: 100%;
  height: auto;
  display: block;
}
