@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700;800&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #006B5E;
  --primary-dark: #00503F;
  --primary-light: #00896E;
  --primary-xlight: #E6F4F1;
  --primary-xxlight: #F2FAF8;
  --accent: #FF6B35;
  --accent-light: #FFF0EA;
  --blue: #1A4FA0;
  --blue-light: #EEF3FC;
  --purple: #6941C6;
  --purple-light: #F4EFFE;
  --amber: #B45309;
  --amber-light: #FEF3C7;

  --white: #FFFFFF;
  --gray-50: #F8F9FB;
  --gray-100: #F1F3F6;
  --gray-200: #E4E7ED;
  --gray-300: #CDD2DC;
  --gray-400: #9AA3B2;
  --gray-500: #6B7585;
  --gray-600: #4A5263;
  --gray-700: #2E3545;
  --gray-800: #1A2130;
  --gray-900: #0D1117;

  --text-primary: #0D1117;
  --text-secondary: #4A5263;
  --text-muted: #7B8599;
  --border: #E4E7ED;
  --border-light: #F1F3F6;

  --shadow-xs: 0 1px 2px rgba(13,17,23,0.06);
  --shadow-sm: 0 2px 8px rgba(13,17,23,0.08);
  --shadow-md: 0 4px 20px rgba(13,17,23,0.10);
  --shadow-lg: 0 8px 40px rgba(13,17,23,0.12);
  --shadow-xl: 0 20px 60px rgba(13,17,23,0.14);
  --shadow-primary: 0 8px 30px rgba(0,107,94,0.25);

  --radius-sm: 8px;
  --radius: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Plus Jakarta Sans', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  background: var(--white);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── TOP CONTACT BAR ── */
.contact-bar {
  background: var(--gray-800);
  color: rgba(255,255,255,0.75);
  font-size: 12.5px;
  font-weight: 500;
  padding: 9px 0;
  position: relative;
  z-index: 200;
}
.contact-bar-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.contact-bar-left {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.contact-bar-item {
  display: flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  transition: color 0.2s;
}
.contact-bar-item:hover { color: #fff; }
.contact-bar-item svg { flex-shrink: 0; }
.contact-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cb-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(0,137,110,0.3);
  border: 1px solid rgba(0,201,167,0.3);
  color: #7FDDCA;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  letter-spacing: 0.5px;
}
.cb-dot { width: 5px; height: 5px; background: #00C9A7; border-radius: 50%; animation: cbpulse 2s infinite; }
@keyframes cbpulse { 0%,100%{opacity:1} 50%{opacity:.4} }

/* ── NAVIGATION ── */
.nav-wrapper {
  position: sticky;
  top: 0;
  z-index: 150;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.nav-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  flex-shrink: 0;
}
.nav-logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  color: white;
  letter-spacing: -0.5px;
  box-shadow: var(--shadow-primary);
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 19px;
  color: var(--text-primary);
  letter-spacing: -0.5px;
}
.nav-logo-name span { color: var(--primary); }
.nav-logo-sub {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  flex: 1;
  justify-content: center;
}
.nav-links > li { position: relative; }
.nav-links > li > a {
  display: flex;
  align-items: center;
  gap: 5px;
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-links > li > a:hover { color: var(--primary); background: var(--primary-xxlight); }
.nav-links > li > a.active { color: var(--primary); }
.nav-chevron { width: 14px; height: 14px; transition: transform 0.2s; }

/* Dropdown — click-based */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 8px;
  min-width: 260px;
  box-shadow: var(--shadow-xl);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.2s, transform 0.2s;
  transform: translateX(-50%) translateY(6px);
  z-index: 300;
}
.nav-links > li.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}
/* Chevron rotate on open */
.nav-links > li.open .nav-chevron { transform: rotate(180deg); }
.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.15s;
}
.nav-dropdown a:hover { background: var(--gray-50); }
.nav-dd-icon {
  width: 36px; height: 36px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.nav-dd-label { font-size: 13px; font-weight: 600; color: var(--text-primary); }
.nav-dd-sub { font-size: 11px; color: var(--text-muted); margin-top: 1px; }
.nav-dd-divider { height: 1px; background: var(--border); margin: 6px 0; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: all 0.25s;
  white-space: nowrap;
}
.btn-sm { padding: 8px 18px; border-radius: 8px; font-size: 13px; }
.btn-md { padding: 11px 24px; border-radius: 10px; }
.btn-lg { padding: 15px 36px; border-radius: 12px; font-size: 16px; }
.btn-xl { padding: 18px 44px; border-radius: 14px; font-size: 17px; }

.btn-primary {
  background: var(--primary);
  color: white;
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0,107,94,0.35);
}
.btn-primary:active { transform: translateY(0); }

.btn-accent {
  background: var(--accent);
  color: white;
  box-shadow: 0 8px 30px rgba(255,107,53,0.25);
}
.btn-accent:hover {
  background: #e85a28;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--primary);
  color: var(--primary);
}
.btn-outline:hover {
  background: var(--primary-xxlight);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--text-secondary);
}
.btn-ghost:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-xxlight); }

.btn-white {
  background: white;
  color: var(--primary);
  box-shadow: var(--shadow-md);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: white;
  z-index: 140;
  padding: 100px 5% 40px;
  overflow-y: auto;
  flex-direction: column;
  gap: 6px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  text-decoration: none;
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 10px;
  transition: all 0.2s;
  display: block;
}
.mobile-menu a:hover { background: var(--gray-50); color: var(--primary); }
.mobile-menu .mm-divider { height: 1px; background: var(--border); margin: 8px 0; }
.mobile-menu .mm-section {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 16px 4px;
}

/* ── SECTION BASE ── */
.section { padding: 100px 0; }
.section-sm { padding: 60px 0; }
.section-lg { padding: 130px 0; }
.container {
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 5%;
}
.container-narrow {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 5%;
}

/* SECTION HEADER */
.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-eyebrow::before {
  content: '';
  width: 20px; height: 2px;
  background: var(--primary);
  border-radius: 2px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1px;
  color: var(--text-primary);
  margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--primary); }
.section-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.7;
  max-width: 580px;
}
.section-header-center { text-align: center; margin-bottom: 72px; }
.section-header-center .section-eyebrow { display: flex; justify-content: center; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ── CARDS ── */
.card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s;
}
.card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-xl);
  transform: translateY(-4px);
}

/* ── BADGE ── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 4px 12px;
  border-radius: 100px;
}
.badge-primary { background: var(--primary-xlight); color: var(--primary); }
.badge-accent { background: var(--accent-light); color: var(--accent); }
.badge-blue { background: var(--blue-light); color: var(--blue); }
.badge-purple { background: var(--purple-light); color: var(--purple); }
.badge-amber { background: var(--amber-light); color: var(--amber); }

/* ── CHECK LIST ── */
.check-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.5;
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--primary-xlight);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.check-icon svg { width: 11px; height: 11px; stroke: var(--primary); stroke-width: 2.5; fill: none; }

/* ── STAT ITEMS ── */
.stat-number {
  font-family: var(--font-display);
  font-size: 52px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  letter-spacing: -2px;
}
.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ── DIVIDER LINE ── */
.divider { width: 100%; height: 1px; background: var(--border); }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.whatsapp-btn {
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  position: relative;
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 10px 40px rgba(37,211,102,0.55);
}
.whatsapp-btn svg { width: 30px; height: 30px; fill: white; }
.whatsapp-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.4);
  animation: wpulse 2s infinite;
}
@keyframes wpulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.5);opacity:0} }
.whatsapp-tooltip {
  background: var(--gray-800);
  color: white;
  font-size: 13px;
  font-weight: 500;
  padding: 10px 16px;
  border-radius: 10px;
  white-space: nowrap;
  box-shadow: var(--shadow-lg);
  display: none;
}
.whatsapp-float:hover .whatsapp-tooltip { display: block; }

/* ── SCROLL ANIMATIONS ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-left {
  opacity: 0;
  transform: translateX(-28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ── STAGGER DELAYS ── */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ── FOOTER ── */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.65);
}
.footer-main {
  max-width: 1260px;
  margin: 0 auto;
  padding: 72px 5% 48px;
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 56px;
}
.footer-brand-tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-top: 16px;
  max-width: 280px;
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
  text-decoration: none;
  transition: color 0.2s;
}
.footer-contact-item:hover { color: rgba(255,255,255,0.85); }
.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 11px; }
.footer-col a {
  text-decoration: none;
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-col a:hover { color: white; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 24px 5%;
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom-text { font-size: 13px; color: rgba(255,255,255,0.35); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.35); text-decoration: none; transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .contact-bar-left { display: none; }
  .nav-links, .nav-actions > *:not(.btn-primary) { display: none; }
  .hamburger { display: flex; }
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .whatsapp-float { bottom: 20px; right: 20px; }
  .section { padding: 64px 0; }
  .section-lg { padding: 80px 0; }
  .btn-lg { padding: 13px 28px; font-size: 15px; }
  .btn-xl { padding: 15px 32px; font-size: 15px; }
}
@media (max-width: 480px) {
  .nav-inner { height: 60px; }
  .nav-logo-mark { width: 36px; height: 36px; font-size: 13px; }
  .nav-logo-name { font-size: 17px; }
  .contact-bar-right { font-size: 11px; }
  .section { padding: 48px 0; }
  .btn-primary.btn-sm { padding: 10px 18px; font-size: 13px; }
}
