:root {
  --navy: #1e2761;
  --navy-dark: #141a3f;
  --gold: #f9c74f;
  --red: #cc0000;
  --white: #ffffff;
  --gray: #f5f5f5;
  --text: #2c3e50;
  --muted: #6b778a;
  --radius: 12px;
  --shadow: 0 12px 28px rgba(20, 26, 63, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Source Sans 3", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fdfdfd;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #111;
  padding: 8px 12px;
  z-index: 1000;
}

.skip-link:focus {
  left: 12px;
  top: 12px;
}

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

.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  z-index: 100;
}

.nav-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo {
  width: 46px;
  height: 46px;
  background: var(--navy);
  color: var(--gold);
  border-radius: 10px;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  display: grid;
  place-items: center;
}

.brand-name {
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}

.brand-tagline {
  font-size: 13px;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  justify-content: center;
}

.nav-menu a {
  font-weight: 600;
  font-size: 15px;
  padding: 6px 4px;
  border-bottom: 2px solid transparent;
}

.nav-menu a.active {
  border-color: var(--red);
}

.nav-cta {
  display: flex;
  justify-content: flex-end;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 6px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
}

.hero {
  position: relative;
  color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top left, #2a3582 0, #1e2761 50%, #141a3f 100%);
  z-index: -2;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -80px;
  width: 360px;
  height: 360px;
  background: rgba(249, 199, 79, 0.2);
  border-radius: 50%;
  filter: blur(0px);
  z-index: -1;
}

.hero-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  align-items: center;
}

.eyebrow {
  font-size: 14px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
}

.hero h1 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(36px, 4vw, 52px);
  margin: 10px 0 14px;
}

.lead {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
  margin: 26px 0 18px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

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

.btn-gold {
  background: var(--gold);
  color: #1b1b1b;
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.6);
  color: var(--white);
}

.hero-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.hero-card {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.hero-note {
  margin-top: 14px;
  font-style: italic;
  color: rgba(255, 255, 255, 0.9);
}

.section {
  padding: 80px 0;
}

.section-alt {
  background: var(--gray);
}

.section-head {
  max-width: 720px;
  margin-bottom: 36px;
}

.section-head h2 {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(28px, 3vw, 40px);
  margin-bottom: 10px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.about-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.values {
  margin: 16px 0 0;
  padding: 0;
  list-style: none;
}

.values li::before {
  content: "✓";
  color: var(--gold);
  margin-right: 8px;
}

.founder {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  align-items: center;
}

.founder-photo {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.certs {
  display: grid;
  gap: 6px;
  margin-top: 10px;
  color: var(--muted);
  font-size: 14px;
}

.grid {
  display: grid;
  gap: 22px;
}

.media-row {
  margin: 0 0 28px;
}

.media-row.two-up {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.slide-img {
  width: 100%;
  height: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.services-grid {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.card {
  background: var(--white);
  padding: 22px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 30px rgba(20, 26, 63, 0.15);
}

.card ul {
  margin: 0;
  padding-left: 18px;
}

.card .icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(249, 199, 79, 0.2);
  color: var(--navy);
  font-weight: 700;
  display: grid;
  place-items: center;
}

.link {
  color: var(--red);
  font-weight: 600;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 18px;
  margin-bottom: 20px;
}

.stat {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
}

.strengths {
  display: grid;
  gap: 10px;
  color: var(--muted);
}

.story {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 24px;
  align-items: center;
}

.story-quote {
  font-size: 18px;
}

.story-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: grid;
  gap: 12px;
}

.story-badge {
  background: var(--gold);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  width: fit-content;
}

.who-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(0,0,0,0.1);
  background: var(--white);
  cursor: pointer;
  font-weight: 600;
}

.filter.active {
  background: var(--navy);
  color: var(--white);
}

.client-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.client-card {
  background: rgba(255,255,255,0.8);
  border-radius: var(--radius);
  padding: 16px;
  text-align: center;
  border: 1px solid rgba(0,0,0,0.06);
  transition: all 0.2s ease;
}

.client-card:hover {
  background: var(--white);
  transform: translateY(-3px);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.contact-form {
  background: var(--white);
  padding: 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.field {
  display: grid;
  gap: 6px;
  margin-bottom: 14px;
}

input, select, textarea {
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(0,0,0,0.15);
  font: inherit;
}

.error {
  color: var(--red);
  font-size: 13px;
}

.form-note {
  margin-top: 10px;
  font-weight: 600;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.info-card {
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.map-embed {
  width: 100%;
  height: 220px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(0,0,0,0.08);
}

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

.offer {
  margin-top: 10px;
  color: var(--navy);
  font-weight: 700;
}

.site-footer {
  background: var(--navy-dark);
  color: var(--white);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin-bottom: 24px;
}

.site-footer a {
  display: block;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  padding-top: 16px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}

.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
  box-shadow: 0 12px 24px rgba(0,0,0,0.2);
  z-index: 90;
}

@media (max-width: 900px) {
  .nav-wrap {
    grid-template-columns: auto auto;
  }

  .nav-menu {
    position: absolute;
    top: 70px;
    right: 4%;
    left: 4%;
    background: var(--white);
    flex-direction: column;
    padding: 16px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-toggle {
    display: block;
  }

  .nav-cta {
    display: none;
  }

  .whatsapp{
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    padding:30px;
    font-size:6px;
    border-radius:50%;
  }
  
  .wa-icon{
    width:35px;
    height:35px;
  }
  .hero-grid,
  .about-grid,
  .story,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .media-row.two-up {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 70px;
  }
}

@media (max-width: 600px) {
  .section {
    padding: 60px 0;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .brand-tagline {
    display: none;
  }

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

  .stats-grid,
  .services-grid,
  .who-grid,
  .client-grid {
    grid-template-columns: 1fr;
  }

  .site-header {
    position: sticky;
  }
}
