:root {
  --primary: #234c8a;
  --primary-dark: #16335d;
  --primary-light: #e4edf9;
  --accent: #00a6ff;
  --text: #1b2330;
  --muted: #6b7484;
  --bg: #ffffff;
  --bg-alt: #f5f7fb;
  --border: #dde3f0;
  --radius: 12px;
  --shadow-soft: 0 10px 30px rgba(9, 30, 66, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
}

/* Layout helpers */

.container {
  width: min(1120px, 100% - 2.5rem);
  margin-inline: auto;
}

.section {
  padding: 4rem 0;
}

.bg-light {
  background-color: var(--bg-alt);
}

.mt-lg {
  margin-top: 2.5rem;
}

/* Header & Navigation */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: 0 1px 0 rgba(9, 30, 66, 0.08);
  backdrop-filter: blur(8px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.75rem;
}

.logo-wrap img {
  max-height: 90px;
  width: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  padding: 0;
}

.main-nav a {
  text-decoration: none;
  color: var(--muted);
  font-weight: 500;
  font-size: 0.95rem;
}

.main-nav a:hover {
  color: var(--primary);
}

.main-nav a.active {
  color: var(--primary-dark);
  text-decoration: underline;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 0.25rem;
  flex-direction: column;
  gap: 0.18rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background-color: var(--primary-dark);
  border-radius: 999px;
}

/* Hero */

.hero {
  padding: 4.5rem 0 3.5rem;
  background: radial-gradient(circle at top left, #e9f1ff 0, #ffffff 45%);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 2.2fr) minmax(0, 1.4fr);
  gap: 2.5rem;
  align-items: center;
}

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.hero h1 {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  margin: 0 0 1rem;
  color: var(--primary-dark);
}

.hero-text {
  margin-bottom: 1.5rem;
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.75rem;
}

.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.hero-trust div {
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid var(--border);
  background-color: #fff;
}

.hero-trust strong {
  display: block;
  font-size: 1rem;
  color: var(--primary-dark);
}

.hero-trust span {
  display: block;
  font-size: 0.8rem;
  color: var(--muted);
}

.hero-side-card {
  border-radius: 1rem;
  padding: 1.75rem;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: #fff;
  box-shadow: var(--shadow-soft);
}

.hero-side-card h2 {
  margin-top: 0;
}

.hero-side-card ul {
  padding-left: 1.1rem;
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.4rem;
  border-radius: 999px;
  border: none;
  background-color: var(--primary);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(35, 76, 138, 0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.btn:hover {
  background-color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(35, 76, 138, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary-dark);
  box-shadow: none;
  border: 1px solid var(--primary);
}

.btn-outline:hover {
  background-color: var(--primary-light);
}

.btn-small {
  padding: 0.4rem 1rem;
  font-size: 0.85rem;
}

/* Sections & cards */

.section-heading {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

.section-heading h2 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.section-heading p {
  color: var(--muted);
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

.card {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-card h3 {
  margin-top: 0;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

.service-card p {
  margin-bottom: 1rem;
  color: var(--muted);
}

.text-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  text-decoration: none;
}

.text-link:hover {
  text-decoration: underline;
}

/* Trust section */

.trust-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.6fr);
  gap: 2.5rem;
}

.trust-stats .stat-card {
  min-height: 120px;
}

.stat-card strong {
  display: block;
  margin-bottom: 0.35rem;
}

/* CTA */

.cta-section {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary));
  color: #fff;
}

.cta-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1.5rem;
  align-items: center;
}

.cta-inner h2 {
  margin-top: 0;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* Page hero */

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background-color: var(--primary-light);
  border-bottom: 1px solid var(--border);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  color: var(--primary-dark);
}

/* Two column layout */

.two-col {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 2.5rem;
}

/* Lists */

.checklist {
  padding-left: 0;
  list-style: none;
}

.checklist li {
  margin-bottom: 0.6rem;
  position: relative;
  padding-left: 1.4rem;
}

.checklist li::before {
  content: "✔";
  position: absolute;
  left: 0;
  top: 0.1rem;
  font-size: 0.85rem;
  color: var(--accent);
}

.simple-list {
  margin: 0;
  padding-left: 1.2rem;
}

/* Services detail page */

.service-details article {
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 2rem;
}

.service-details article:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}

.service-details h2 {
  color: var(--primary-dark);
}

.service-details h3 {
  margin-top: 1.25rem;
}

.services-cta {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

/* Contact */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1.2fr);
  gap: 2.5rem;
  align-items: flex-start;
}

.contact-form {
  background-color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  margin-bottom: 0.35rem;
  font-weight: 500;
}

input,
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.75rem;
  border-radius: 0.6rem;
  border: 1px solid var(--border);
  font-family: inherit;
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 1px rgba(35, 76, 138, 0.1);
}

textarea {
  resize: vertical;
}

.map-placeholder {
  border-radius: var(--radius);
  border: 1px dashed var(--border);
  padding: 1rem;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

/* Footer */

.site-footer {
  background-color: #0f1c34;
  color: #d7deee;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr) minmax(0, 1.1fr);
  gap: 2rem;
  padding: 2.5rem 0 1.5rem;
}

.footer-logo {
  max-height: 40px;
  margin-bottom: 0.75rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.4rem;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer a:hover {
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 0.8rem;
  font-size: 0.85rem;
}

/* WhatsApp button */

.whatsapp-btn {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background-color: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.5rem;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  z-index: 999;
}

/* Responsive */

@media (max-width: 960px) {
  .hero-inner,
  .trust-grid,
  .two-col,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 3.5rem;
  }

  .hero-side-card {
    /* order: -2; */
  }

  .grid-3 {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 720px) {
  .header-inner {
    padding-block: 0.6rem;
  }

  .nav-toggle {
    display: flex;
  }
  
  .logo-wrap img {
  max-height: 78px;
  width: auto;
}
  

  .main-nav {
    position: absolute;
    inset-inline: 0;
    top: 100%;
    background-color: #ffffff;
    box-shadow: 0 12px 20px rgba(9, 30, 66, 0.12);
    padding: 0.75rem 1.25rem 1rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    transform: translateY(-18px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .main-nav.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-trust {
    grid-template-columns: 1fr;
  }

  .grid-3 {
    grid-template-columns: 1fr;
  }

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 0.4rem;
  }
}
