@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Barlow:wght@300;400;500;600;700&family=Barlow+Condensed:wght@400;500;600;700&display=swap');

:root {
  --navy: #132240;
  --steel: #3d6fa8;
  --steel-light: #5a8ec4;
  --steel-xlight: #d6e6f5;
  --white: #ffffff;
  --cream: #f4f1ec;
  --cream-dark: #e8e2d7;
  --text: #1a1a2e;
  --text-muted: #5a6275;
  --text-light: #8a93a6;
  --border: #e4e8f0;
  --shadow: 0 2px 20px rgba(19,34,64,0.08);
  --shadow-md: 0 8px 40px rgba(19,34,64,0.12);
  --shadow-lg: 0 20px 60px rgba(19,34,64,0.16);
  --radius: 6px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
}

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

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

body {
  font-family: 'Barlow', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ── NAVBAR ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: var(--transition);
}
.navbar.scrolled {
  box-shadow: var(--shadow);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo-icon {
  width: 42px;
  height: 42px;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.nav-logo-tagline {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.65rem;
  color: var(--steel);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a:hover, .nav-links a.active { color: var(--navy); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0; right: 0;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
}
.nav-cta {
  background: var(--navy);
  color: white !important;
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background var(--transition) !important;
}
.nav-cta:hover { background: var(--steel) !important; color: white !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: var(--transition);
}

/* ── SECTION BASE ── */
.section { padding: 6rem 0; }
.section-sm { padding: 4rem 0; }
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-sm {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── LABELS ── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--steel);
  margin-bottom: 1rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--steel);
  border-radius: 2px;
}

/* ── HEADINGS ── */
.heading-xl {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.heading-lg {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  line-height: 1.15;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.heading-md {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--navy);
}
.text-steel { color: var(--steel); }
.text-muted { color: var(--text-muted); }
.lead { font-size: 1.05rem; color: var(--text-muted); line-height: 1.8; font-weight: 400; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0.75rem 1.75rem;
  border-radius: 4px;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--navy);
  color: white;
}
.btn-primary:hover { background: var(--steel); }
.btn-secondary {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-secondary:hover { background: var(--navy); color: white; }
.btn-white {
  background: white;
  color: var(--navy);
}
.btn-white:hover { background: var(--cream); }
.btn-steel {
  background: var(--steel);
  color: white;
}
.btn-steel:hover { background: var(--steel-light); }
.btn-lg {
  padding: 0.9rem 2.2rem;
  font-size: 1rem;
  border-radius: 4px;
}

/* ── CARDS ── */
.card {
  background: white;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.card-body { padding: 1.75rem; }

/* ── BADGE ── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.badge-navy { background: var(--navy); color: white; }
.badge-steel { background: var(--steel-xlight); color: var(--steel); }
.badge-cream { background: var(--cream-dark); color: var(--text-muted); }

/* ── STATS ── */
.stat-number {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1;
}
.stat-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.4rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ── DIVIDER ── */
.divider {
  width: 48px;
  height: 3px;
  background: var(--steel);
  border-radius: 3px;
  margin: 1.25rem 0;
}

/* ── IMAGE UTILITIES ── */
.img-cover {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.rounded { border-radius: var(--radius); }
.rounded-lg { border-radius: var(--radius-lg); }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: white;
}
.footer-main {
  padding: 4rem 0 3rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
}
.footer-logo-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 0.2rem;
}
.footer-logo-slogan {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-heading {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-links a:hover { color: white; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition);
}
.social-link:hover { background: rgba(255,255,255,0.15); }

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes orbit {
  from { transform: rotate(0deg) translateX(var(--orbit-r)) rotate(0deg); }
  to { transform: rotate(360deg) translateX(var(--orbit-r)) rotate(-360deg); }
}
.animate-up {
  animation: fadeUp 0.7s ease both;
}
.animate-up-2 { animation: fadeUp 0.7s 0.15s ease both; }
.animate-up-3 { animation: fadeUp 0.7s 0.3s ease both; }
.animate-up-4 { animation: fadeUp 0.7s 0.45s ease both; }

/* ── HERO ATOM ── */
.atom-container {
  position: relative;
  width: 320px;
  height: 320px;
  flex-shrink: 0;
}
.atom-nucleus {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  width: 64px; height: 64px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(255,255,255,0.1), 0 0 0 24px rgba(255,255,255,0.05);
  z-index: 2;
}
.atom-ring {
  position: absolute;
  top: 50%; left: 50%;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  transform: translate(-50%,-50%);
}
.atom-ring-1 { width: 140px; height: 140px; }
.atom-ring-2 { width: 220px; height: 220px; transform: translate(-50%,-50%) rotate(60deg); }
.atom-ring-3 { width: 300px; height: 300px; transform: translate(-50%,-50%) rotate(-30deg); }
.atom-dot {
  position: absolute;
  top: 50%; left: 50%;
  width: 32px; height: 32px;
  background: white;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  --orbit-r: 70px;
  animation: orbit 6s linear infinite;
  box-shadow: var(--shadow);
}
.atom-dot:nth-child(2) { animation-delay: -2s; --orbit-r: 110px; animation-duration: 9s; }
.atom-dot:nth-child(3) { animation-delay: -4s; --orbit-r: 150px; animation-duration: 12s; }

/* ── IMAGE GRID ── */
.img-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.img-grid-3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 1rem;
}

/* ── SERVICE ICON ── */
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--steel-xlight);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  flex-shrink: 0;
}
.service-icon svg { color: var(--steel); }
.service-icon.dark {
  background: rgba(255,255,255,0.1);
}
.service-icon.dark svg { color: white; }

/* ── TEAM CARD ── */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: var(--transition);
}
.team-card:hover { box-shadow: var(--shadow-md); }
.team-card-img {
  height: 220px;
  background: linear-gradient(135deg, var(--steel-xlight), var(--cream));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}
.team-card-img-logo {
  width: 96px;
  height: 96px;
  object-fit: contain;
  opacity: 0.9;
}
.team-avatar-placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--steel);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: white;
}
.team-card-body { padding: 1.25rem 1.5rem 1.5rem; }
.team-name {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.25rem;
}
.team-role {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.78rem;
  color: var(--steel);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}
.team-contact { font-size: 0.82rem; color: var(--text-muted); line-height: 1.9; }
.team-contact a:hover { color: var(--steel); }

/* ── ACCORDION / FAQ ── */
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 0;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--navy);
}
.faq-question svg {
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer {
  display: none;
  padding-bottom: 1.25rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
}
.faq-answer.open { display: block; }
.faq-answer p { margin: 0 0 0.5rem; }
.faq-answer p:last-child { margin-bottom: 0; }
.faq-answer ul, .faq-answer ol { list-style: none; margin: 0.5rem 0 0; padding: 0; display: flex; flex-direction: column; gap: 0.4rem; }
.faq-answer li { padding-left: 1.1rem; position: relative; }
.faq-answer li::before { content: ''; position: absolute; left: 0; top: 0.65em; width: 5px; height: 5px; border-radius: 50%; background: var(--steel); }

/* ── FORM ── */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.form-control {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--text);
  background: white;
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--steel); }
.form-control::placeholder { color: var(--text-light); }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }

/* ── BREADCRUMB ── */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}
.breadcrumb a { color: var(--steel); }
.breadcrumb-sep { color: var(--border); }

/* ── STATS 4-GRID ── */
.stats-4-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-4-grid, .stats-bar-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 72px; left: 0; right: 0;
    background: white;
    border-bottom: 1px solid var(--border);
    padding: 1.5rem 2rem;
    gap: 1rem;
    z-index: 99;
    box-shadow: var(--shadow-md);
  }
  .nav-hamburger { display: flex; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; gap: 1rem; text-align: center; }
  .atom-container { width: 220px; height: 220px; }
  .stats-4-grid, .stats-bar-grid { grid-template-columns: 1fr 1fr; }
}

/* ── SHARED ANIMATIONS ── */

/* Service icon lift on card hover */
.service-icon { transition: transform 0.3s ease, background 0.3s ease; }
.service-card:hover .service-icon { transform: translateY(-4px) scale(1.08); background: rgba(61,111,168,0.18); }

/* Coverage/feature icon hover scale */
.why-feature-icon { transition: background 0.3s ease, transform 0.3s ease; }
.why-feature:hover .why-feature-icon { background: rgba(61,111,168,0.22); transform: scale(1.12); }

/* CTA divider line draw-in */
@keyframes cta-line-draw {
  from { width: 0; opacity: 0; }
  to   { width: 44px; opacity: 1; }
}
.cta-divider-line { opacity: 0; }
.cta-divider-line.cta-line-anim { animation: cta-line-draw 0.9s cubic-bezier(0.4,0,0.2,1) forwards; }

/* ── MODAL ── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(19,34,64,0.6);
  z-index: 300;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem;
  right: 1.25rem;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0;
}
.modal-close:hover { color: var(--navy); }
.modal-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 0.5rem;
}
.modal-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.form-check { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-muted); cursor: pointer; }
.form-check input { width: 16px; height: 16px; cursor: pointer; }
@media (max-width: 480px) {
  .modal-box { padding: 1.75rem; }
}

/* ── WHATSAPP FLOATING BUTTON ── */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  z-index: 200;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 22px rgba(0,0,0,0.3); }
@media (max-width: 768px) {
  .whatsapp-float { right: 16px; bottom: 16px; width: 52px; height: 52px; }
}