:root {
  --azure: #1565C0;
  --azure-dark: #0D47A1;
  --azure-light: #1E88E5;
  --azure-pale: #E3F2FD;
  --azure-mid: #BBDEFB;
  --gold: #F59E0B;
  --gold-light: #FEF3C7;
  --white: #FFFFFF;
  --off-white: #F8FAFF;
  --text-dark: #0A1628;
  --text-mid: #2D4057;
  --text-light: #6B7FA3;
  --border: rgba(21,101,192,0.12);
  --shadow-sm: 0 2px 12px rgba(21,101,192,0.08);
  --shadow-md: 0 8px 32px rgba(21,101,192,0.14);
  --shadow-lg: 0 20px 60px rgba(21,101,192,0.18);
  --radius: 16px;
  --radius-sm: 10px;
}

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

html { scroll-behavior: smooth; }

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--azure-pale); }
::-webkit-scrollbar-thumb { background: var(--azure-light); border-radius: 3px; }

/* ── UTILITY ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  background: var(--azure-pale);
  color: var(--azure);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid var(--azure-mid);
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-sub {
  font-size: 17px;
  color: var(--text-light);
  max-width: 560px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--azure);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(21,101,192,0.35);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--azure-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(21,101,192,0.45);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--azure);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid var(--azure);
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
}
.btn-secondary:hover {
  background: var(--azure);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: all 0.25s cubic-bezier(0.4,0,0.2,1);
  box-shadow: 0 4px 20px rgba(37,211,102,0.35);
  white-space: nowrap;
}
.btn-whatsapp:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.45);
}

/* ── NAVBAR ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 16px 0;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s ease;
}
#navbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
}
.logo-icon img { width: 40px; height: 40px; object-fit: contain; display: block; }
.logo-text { line-height: 1; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--azure);
}
.logo-tagline {
  font-size: 10px;
  color: var(--text-light);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  text-decoration: none;
  transition: color 0.2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--azure);
  transform: scaleX(0);
  transition: transform 0.2s;
  border-radius: 2px;
}
.nav-links a:hover { color: var(--azure); }
.nav-links a:hover::after { transform: scaleX(1); }
.nav-cta { display: flex; align-items: center; gap: 12px; }
#menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
#menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--azure);
  border-radius: 2px;
  transition: all 0.3s;
}
#mobile-menu {
  display: none;
  position: fixed;
  top: 73px; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 999;
  padding: 24px;
  overflow-y: auto;
  flex-direction: column;
  gap: 8px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: var(--text-dark);
  text-decoration: none;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  display: block;
}
#mobile-menu a:hover { color: var(--azure); }
#mobile-menu .mobile-cta { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--azure-dark) 0%, var(--azure) 50%, var(--azure-light) 100%);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}
.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(255,255,255,0.04) 0%, transparent 40%);
  pointer-events: none;
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
  border: 1px solid rgba(255,255,255,0.25);
  animation: fadeInDown 0.6s ease forwards;
}
.hero-badge-dot {
  width: 8px; height: 8px;
  background: #4ADE80;
  border-radius: 50%;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.2); }
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(36px, 5.5vw, 60px);
  font-weight: 800;
  color: white;
  line-height: 1.1;
  margin-bottom: 20px;
  animation: fadeInUp 0.7s ease 0.1s both;
}
.hero-title em {
  font-style: normal;
  color: var(--gold);
}
.hero-sub {
  font-size: 18px;
  color: rgba(255,255,255,0.82);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
  animation: fadeInUp 0.7s ease 0.2s both;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 48px;
  animation: fadeInUp 0.7s ease 0.3s both;
}
.hero-btn-light {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--azure);
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}
.hero-btn-light:hover {
  background: var(--gold);
  color: white;
  transform: translateY(-2px);
}
.hero-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: white;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 13px 28px;
  border-radius: 100px;
  text-decoration: none;
  border: 2px solid rgba(255,255,255,0.5);
  transition: all 0.25s;
}
.hero-btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: white;
  transform: translateY(-2px);
}
.hero-stats {
  display: flex;
  gap: 32px;
  animation: fadeInUp 0.7s ease 0.4s both;
}
.hero-stat { border-left: 2px solid rgba(255,255,255,0.3); padding-left: 16px; }
.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  line-height: 1;
}
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 4px; }
.hero-visual {
  display: flex;
  justify-content: flex-end;
  animation: fadeInRight 0.8s ease 0.2s both;
}
.hero-card-stack {
  position: relative;
  width: 100%;
  max-width: 440px;
}
.hero-main-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 24px;
  padding: 32px;
  color: white;
}
.hmc-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.hmc-logo {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: white;
}
.hmc-partner {
  background: rgba(255,255,255,0.2);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.9);
}
.hmc-services {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.hmc-service {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: all 0.2s;
}
.hmc-service:hover { background: rgba(255,255,255,0.18); }
.hmc-service-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,0.15);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; flex-shrink: 0;
}
.hmc-service-name { font-size: 12px; font-weight: 600; color: white; }
.hmc-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 16px 20px;
  border: 1px solid rgba(255,255,255,0.2);
}
.hmc-cta-text { font-size: 13px; color: rgba(255,255,255,0.85); }
.hmc-cta-text strong { display: block; font-size: 15px; color: white; }
.hmc-cta-arrow {
  width: 36px; height: 36px;
  background: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
}
.hero-floating-badge {
  position: absolute;
  bottom: -16px; left: -24px;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 10px;
  animation: float 3s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hfb-icon { font-size: 24px; }
.hfb-text { line-height: 1.2; }
.hfb-title { font-size: 13px; font-weight: 700; color: var(--text-dark); }
.hfb-sub { font-size: 11px; color: var(--text-light); }

@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(40px); } to { opacity: 1; transform: translateX(0); } }

/* ── TRUST BAR ── */
#trust-bar {
  background: var(--text-dark);
  padding: 20px 0;
}
.trust-bar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.trust-bar-inner::-webkit-scrollbar { display: none; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
  font-weight: 500;
}
.trust-item-icon { font-size: 18px; }
.trust-sep {
  width: 1px; height: 24px;
  background: rgba(255,255,255,0.15);
  flex-shrink: 0;
}

/* ── ABOUT ── */
#about {
  padding: 100px 0;
  background: var(--off-white);
  position: relative;
  overflow: hidden;
}
#about::before {
  content: '';
  position: absolute;
  top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, var(--azure-mid) 0%, transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-visual {
  position: relative;
}
.about-main-img {
  width: 100%;
  height: 460px;
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-dark) 100%);
  border-radius: 24px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  position: relative;
}
.about-img-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 70%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.about-img-content {
  position: relative; z-index: 1;
  text-align: center; padding: 32px;
}
.about-img-icon { font-size: 80px; margin-bottom: 16px; }
.about-img-text {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
}
.about-img-sub { font-size: 14px; color: rgba(255,255,255,0.75); }
.about-badge-float {
  position: absolute;
  bottom: 24px; right: -24px;
  background: white;
  border-radius: 16px;
  padding: 18px 22px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.abf-num {
  font-family: 'Playfair Display', serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--azure);
  line-height: 1;
}
.abf-text { font-size: 12px; color: var(--text-light); margin-top: 4px; font-weight: 500; }
.about-nsia {
  position: absolute;
  top: 24px; left: -24px;
  background: white;
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nsia-icon {
  width: 40px; height: 40px;
  background: var(--azure);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; flex-shrink: 0;
}
.nsia-name { font-size: 12px; font-weight: 700; color: var(--text-dark); }
.nsia-sub { font-size: 11px; color: var(--text-light); }
.about-text .section-sub { max-width: none; margin-bottom: 24px; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.about-value {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 18px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  transition: all 0.2s;
}
.about-value:hover {
  border-color: var(--azure-mid);
  box-shadow: var(--shadow-sm);
  transform: translateY(-2px);
}
.av-icon {
  width: 36px; height: 36px;
  background: var(--azure-pale);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.av-title { font-size: 13px; font-weight: 700; color: var(--text-dark); margin-bottom: 2px; }
.av-desc { font-size: 12px; color: var(--text-light); line-height: 1.5; }

/* ── SERVICES ── */
#services {
  padding: 100px 0;
  background: white;
}
.services-header {
  text-align: center;
  margin-bottom: 60px;
}
.services-header .section-sub {
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--azure), var(--azure-light));
  transform: scaleX(0);
  transition: transform 0.3s;
  border-radius: 3px 3px 0 0;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--azure-mid);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card.featured {
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-dark) 100%);
  border-color: transparent;
  color: white;
}
.service-card.featured::before { display: none; }
.service-card.featured:hover { box-shadow: 0 20px 60px rgba(21,101,192,0.4); }
.sc-icon {
  width: 56px; height: 56px;
  background: var(--azure-pale);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.service-card:hover .sc-icon { background: var(--azure-mid); transform: scale(1.1); }
.service-card.featured .sc-icon {
  background: rgba(255,255,255,0.2);
}
.sc-title {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
  line-height: 1.2;
}
.service-card.featured .sc-title { color: white; }
.sc-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-card.featured .sc-desc { color: rgba(255,255,255,0.8); }
.sc-list {
  list-style: none;
  margin-bottom: 24px;
}
.sc-list li {
  font-size: 13px;
  color: var(--text-mid);
  padding: 5px 0;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.5;
}
.service-card.featured .sc-list li { color: rgba(255,255,255,0.85); }
.sc-list li::before {
  content: '✓';
  color: var(--azure);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.service-card.featured .sc-list li::before { color: var(--gold); }
.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--azure);
  text-decoration: none;
  transition: gap 0.2s;
}
.sc-cta:hover { gap: 10px; }
.service-card.featured .sc-cta { color: var(--gold); }

/* ── STUDIES SPOTLIGHT ── */
#studies {
  padding: 100px 0;
  background: var(--off-white);
}
.studies-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.studies-steps {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.step {
  display: flex;
  gap: 20px;
  position: relative;
}
.step:not(:last-child) .step-line {
  position: absolute;
  left: 19px; top: 44px;
  width: 2px;
  height: calc(100% - 4px);
  background: linear-gradient(to bottom, var(--azure-mid), transparent);
}
.step-num {
  width: 40px; height: 40px;
  background: var(--azure);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
  position: relative; z-index: 1;
}
.step-content { padding: 0 0 32px 0; }
.step-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 4px; }
.step-desc { font-size: 13px; color: var(--text-light); line-height: 1.6; }
.studies-visual {
  position: relative;
}
.studies-main-card {
  background: white;
  border-radius: 24px;
  padding: 32px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border);
}
.smc-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 20px;
}
.destinations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.destination {
  border-radius: var(--radius-sm);
  padding: 18px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all 0.2s;
  cursor: pointer;
}
.destination:hover { border-color: var(--azure); transform: translateY(-2px); }
.destination.france { background: linear-gradient(135deg, #EEF2FF, #E0E7FF); }
.destination.canada { background: linear-gradient(135deg, #FFF1F2, #FFE4E6); }
.dest-flag { font-size: 36px; margin-bottom: 8px; }
.dest-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.dest-sub { font-size: 11px; color: var(--text-light); margin-top: 4px; }
.smc-services {
  background: var(--azure-pale);
  border-radius: var(--radius-sm);
  padding: 16px;
}
.smc-services-title { font-size: 12px; font-weight: 700; color: var(--azure); margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.08em; }
.smc-service-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-mid);
  padding: 4px 0;
}
.smc-service-item::before { content: '→'; color: var(--azure); font-weight: 700; }

/* ── STATS ── */
#stats {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--azure-dark), var(--azure));
  position: relative;
  overflow: hidden;
}
#stats::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 50%, rgba(255,255,255,0.06) 0%, transparent 40%),
    radial-gradient(circle at 90% 50%, rgba(255,255,255,0.06) 0%, transparent 40%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  z-index: 1;
}
.stat-item {
  text-align: center;
  padding: 20px 32px;
  border-right: 1px solid rgba(255,255,255,0.15);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 48px;
  font-weight: 800;
  color: white;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-num span { color: var(--gold); }
.stat-label { font-size: 14px; color: rgba(255,255,255,0.75); font-weight: 500; }

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 100px 0;
  background: white;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 60px;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--azure-mid);
}
.tc-quote {
  font-size: 48px;
  color: var(--azure-mid);
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: 16px;
}
.tc-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 24px;
  font-style: italic;
}
.tc-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.tc-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
  font-weight: 700;
}
.tc-name { font-size: 14px; font-weight: 700; color: var(--text-dark); }
.tc-role { font-size: 12px; color: var(--text-light); }
.tc-stars { color: var(--gold); font-size: 13px; margin-bottom: 14px; }

/* ── NSIA SECTION ── */
#nsia {
  padding: 80px 0;
  background: var(--off-white);
}
.nsia-inner {
  background: linear-gradient(135deg, var(--azure) 0%, var(--azure-dark) 100%);
  border-radius: 24px;
  padding: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.nsia-inner::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 70%);
}
.nsia-text { position: relative; z-index: 1; }
.nsia-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: white;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 16px;
  border: 1px solid rgba(255,255,255,0.3);
}
.nsia-title {
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.nsia-desc { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.7; margin-bottom: 28px; }
.nsia-products {
  position: relative; z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.nsia-product {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: all 0.2s;
  cursor: pointer;
  text-decoration: none;
}
.nsia-product:hover { background: rgba(255,255,255,0.2); transform: translateX(4px); }
.np-icon {
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; flex-shrink: 0;
}
.np-name { font-size: 15px; font-weight: 700; color: white; margin-bottom: 2px; }
.np-desc { font-size: 12px; color: rgba(255,255,255,0.7); }
.np-arrow { margin-left: auto; color: var(--gold); font-size: 18px; }

/* ── FAQ ── */
#faq {
  padding: 100px 0;
  background: white;
}
.faq-inner {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 80px;
  align-items: start;
}
.faq-sidebar { position: sticky; top: 100px; }
.faq-sidebar .section-sub { max-width: none; }
.faq-contact {
  margin-top: 32px;
  background: var(--azure-pale);
  border-radius: var(--radius);
  padding: 24px;
  border: 1px solid var(--azure-mid);
}
.faq-contact-title { font-size: 15px; font-weight: 700; color: var(--text-dark); margin-bottom: 8px; }
.faq-contact-text { font-size: 13px; color: var(--text-light); margin-bottom: 16px; line-height: 1.6; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  gap: 16px;
  user-select: none;
}
.fq-text { font-size: 16px; font-weight: 600; color: var(--text-dark); }
.fq-icon {
  width: 28px; height: 28px;
  background: var(--azure-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  color: var(--azure);
  flex-shrink: 0;
  transition: all 0.3s;
  font-weight: 700;
  line-height: 1;
}
.faq-item.open .fq-icon {
  background: var(--azure);
  color: white;
  transform: rotate(45deg);
}
.faq-answer {
  display: none;
  padding: 0 0 20px 0;
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-item.open .faq-answer { display: block; }

/* ── CTA BAND ── */
#cta {
  padding: 100px 0;
  background: var(--off-white);
}
.cta-card {
  background: linear-gradient(135deg, var(--azure-dark) 0%, var(--azure-light) 100%);
  border-radius: 28px;
  padding: 72px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.08) 0%, transparent 50%);
}
.cta-card > * { position: relative; z-index: 1; }
.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
  line-height: 1.2;
}
.cta-sub { font-size: 18px; color: rgba(255,255,255,0.82); margin-bottom: 40px; max-width: 560px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.cta-actions { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 16px; }
.cta-note { margin-top: 20px; font-size: 13px; color: rgba(255,255,255,0.6); }

/* ── CONTACT ── */
#contact {
  padding: 100px 0;
  background: white;
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.contact-info-block {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
  margin-bottom: 16px;
  transition: all 0.2s;
}
.contact-info-block:hover { border-color: var(--azure-mid); transform: translateX(4px); }
.cib-icon {
  width: 44px; height: 44px;
  background: var(--azure);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white; flex-shrink: 0;
}
.cib-title { font-size: 12px; font-weight: 600; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
.cib-value { font-size: 15px; font-weight: 600; color: var(--text-dark); }
.contact-form-wrapper {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
  border: 1px solid var(--border);
}
.form-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 4px;
}
.form-sub { font-size: 14px; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 16px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--text-mid); margin-bottom: 6px; }
.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: var(--text-dark);
  background: white;
  transition: all 0.2s;
  outline: none;
  appearance: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--azure);
  box-shadow: 0 0 0 3px rgba(21,101,192,0.1);
}
.form-textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ── FOOTER ── */
#footer {
  background: var(--text-dark);
  padding: 70px 0 30px;
  color: rgba(255,255,255,0.8);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 50px;
}
.footer-logo-area { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  margin-bottom: 16px;
}
.footer-logo-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.footer-logo-icon img { width: 40px; height: 40px; object-fit: contain; display: block; }
.footer-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: white;
}
.footer-desc { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.55); margin-bottom: 24px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s;
}
.footer-social:hover { background: var(--azure); transform: translateY(-2px); }
.footer-col-title {
  font-size: 13px;
  font-weight: 700;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-copy { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: white; }
.nsia-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(21,101,192,0.3);
  border: 1px solid rgba(21,101,192,0.5);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  margin-top: 16px;
}

/* ── WHATSAPP FLOAT ── */
#whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 2000;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.wa-bubble {
  background: white;
  border-radius: 16px 16px 4px 16px;
  padding: 12px 18px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  border: 1px solid var(--border);
  animation: fadeIn 0.5s ease 2s both;
  white-space: nowrap;
}
@keyframes fadeIn { from { opacity: 0; transform: scale(0.8); } to { opacity: 1; transform: scale(1); } }
.wa-btn {
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(37,211,102,0.45);
  transition: all 0.3s;
  animation: float 3s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 36px rgba(37,211,102,0.55);
}
.wa-btn svg { width: 30px; height: 30px; fill: white; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { justify-content: center; }
  .about-inner, .studies-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.15); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 40px; }
  .nsia-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-inner { grid-template-columns: 1fr; gap: 40px; }
  .faq-sidebar { position: static; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .about-badge-float { right: 0; }
  .about-nsia { left: 0; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  #menu-toggle { display: flex; }
  .services-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .cta-card { padding: 40px 24px; }
  .nsia-inner { padding: 32px 24px; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-card-stack { max-width: 100%; }
  .hmc-services { grid-template-columns: 1fr 1fr; }
  .destinations { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .cta-actions { flex-direction: column; }
  .hero-stats { gap: 16px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  #whatsapp-float { bottom: 18px; right: 18px; }
}
