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

:root {
  --bg: #f2f7ff;
  --surface: #ffffff;
  --text: #12233a;
  --muted: #5b6d85;
  --primary: #0a67e8;
  --primary-2: #10a6dd;
  --accent: #12b886;
  --dark: #08152c;
  --radius: 16px;
  --shadow-soft: 0 10px 30px rgba(6, 37, 90, 0.10);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f7fbff 0%, #eef5ff 70%, #eaf2ff 100%);
  line-height: 1.6;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid #e3edfb;
}

.nav-container {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text);
  font-weight: 800;
}

.brand-logo {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  box-shadow: var(--shadow-soft);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 20px;
}

.main-nav a {
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--primary);
}

.menu-toggle {
  border: 0;
  background: transparent;
  display: none;
  cursor: pointer;
}

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

.hero {
  padding: 88px 0 62px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: center;
}

.badge {
  display: inline-block;
  margin-bottom: 14px;
  border-radius: 999px;
  border: 1px solid #cde2ff;
  background: #e8f2ff;
  color: var(--primary);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
}

.hero h1 {
  font-size: clamp(1.9rem, 4vw, 3.1rem);
  line-height: 1.15;
  margin-bottom: 16px;
}

.hero h1 span {
  background: linear-gradient(90deg, var(--primary), var(--primary-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero p {
  color: var(--muted);
  font-size: 1.04rem;
}

.hero-actions,
.cta-actions {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  text-decoration: none;
  border-radius: 12px;
  padding: 12px 18px;
  font-weight: 700;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 10px 22px rgba(10, 103, 232, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-secondary {
  color: var(--primary);
  background: #fff;
  border-color: #c9dcfb;
}

.btn-secondary:hover {
  background: #f4f8ff;
}

.btn-secondary.light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
}

.hero-image-wrap {
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  min-height: 360px;
}

.hero-image-wrap img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  display: block;
}

.section {
  padding: 74px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 30px;
}

.section-header.align-left {
  text-align: left;
}

.section-header h2 {
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  margin-bottom: 8px;
}

.section-header p {
  color: var(--muted);
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.card,
.service-card,
.authority-box,
.authority-data,
.why-box,
.map-card,
.faq-list details {
  background: var(--surface);
  border: 1px solid #e6effa;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card {
  padding: 22px;
}

.card-icon {
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.card h3 {
  margin-bottom: 6px;
  font-size: 1.02rem;
}

.card p {
  color: var(--muted);
}

.why-grid,
.location-grid,
.authority-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}

.check-list {
  list-style: none;
  display: grid;
  gap: 10px;
}

.check-list li {
  background: #fff;
  border: 1px solid #e6effa;
  border-radius: 12px;
  padding: 12px 14px;
}

.check-list li::before {
  content: "✔ ";
  color: var(--accent);
  font-weight: 700;
}

.why-box {
  background: linear-gradient(145deg, #0a2f65, #0f4f8f);
  color: #fff;
  padding: 28px;
}

.why-box p {
  color: #d7e8ff;
  margin: 10px 0 16px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.service-card {
  padding: 22px;
}

.service-card h3 {
  margin-bottom: 8px;
}

.service-card p {
  color: var(--muted);
}

.authority-box,
.authority-data {
  padding: 24px;
}

.authority-data p {
  margin-bottom: 8px;
  color: #324761;
}

.map-card {
  overflow: hidden;
  min-height: 320px;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 16px 18px;
}

.faq-list summary {
  font-weight: 700;
  cursor: pointer;
}

.faq-list p {
  margin-top: 10px;
  color: var(--muted);
}

.cta-final {
  padding-top: 24px;
}

.cta-final-box {
  border-radius: 24px;
  padding: 34px;
  text-align: center;
  color: #fff;
  background: linear-gradient(135deg, #0f59b7, #0f8ec8);
  box-shadow: var(--shadow-soft);
}

.cta-final-box p {
  color: #d9ecff;
  margin-top: 8px;
}

.site-footer {
  margin-top: 74px;
  background: var(--dark);
  color: #e1eafb;
}

.footer-grid {
  padding: 42px 0 26px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.site-footer h3,
.site-footer h4 {
  color: #fff;
  margin-bottom: 10px;
}

.site-footer p,
.site-footer a {
  color: #bbcee8;
  text-decoration: none;
}

.site-footer a:hover {
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid #173155;
  text-align: center;
  color: #93add1;
  padding: 14px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: grid;
  place-items: center;
  text-decoration: none;
  font-size: 1.45rem;
  box-shadow: 0 12px 28px rgba(37, 211, 102, 0.4);
  z-index: 60;
}

@media (max-width: 1000px) {
  .hero-grid,
  .why-grid,
  .location-grid,
  .authority-grid {
    grid-template-columns: 1fr;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 78px;
    right: 4%;
    width: 92%;
    padding: 12px;
    border-radius: 12px;
    border: 1px solid #e2ebfa;
    background: #fff;
    box-shadow: var(--shadow-soft);
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

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

  .cards-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 58px 0;
  }
}