:root {
  --bg: #ffffff;
  --text: #0f172a;
  --muted: #475569;
  --line: #e2e8f0;
  --soft: #f6f8fc;
  --brand: #0b4aa2;
  --brand2: #0ea5e9;
  --card: #ffffff;
  --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05), 0 1px 2px -1px rgba(0, 0, 0, 0.05);
  /* Softer shadow */
  --shadow-lg: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
  /* Sophisticated diffuse shadow */
  --radius: 8px;
  /* Slightly tighter radius for professional feel */
  --text: #334155;
  /* Softer text color */
  --heading: #1e293b;
  /* Dark slate for headings */
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: #fff;
  /* Clean white background */
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
strong {
  color: var(--heading);
}

img {
  max-width: 100%;
  height: auto
}

a {
  color: inherit
}

.container {
  width: min(1120px, 92%);
  margin-inline: auto
}

.section {
  padding: 96px 0
}

.section-alt {
  background: var(--soft);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.skip-link {
  position: absolute;
  left: -999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  width: auto;
  height: auto;
  background: #fff;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
  z-index: 9999
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .98);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: none;
  /* Remove header shadow for cleanliness */
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  min-width: 220px
}

.brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--brand2));
}

.brand-mark svg {
  width: 24px;
  height: 24px;
}

.brand-text strong {
  display: block;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 600;
  /* Less bold */
}

.brand-text small {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 2px
}

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

.nav a {
  text-decoration: none;
  font-size: 13px;
  color: var(--muted);
  padding: 8px 10px;
  border-radius: 10px;
}

.nav a:hover {
  background: #f1f5f9;
  color: var(--text)
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: flex-end
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  margin: 6px 10px;
  border-radius: 99px
}

.mobile-call-btn {
  display: none;
  /* Hidden on desktop */
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  /* Push to right on desktop IF visible (it's not) */
  box-shadow: 0 4px 10px rgba(11, 74, 162, 0.2);
  transition: transform 0.2s ease;
}

.mobile-call-btn:active {
  transform: scale(0.95);
}

.mobile-call-btn svg {
  width: 22px;
  height: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 12px;
  padding: 10px 20px;
  font-weight: 500;
  /* Medium weight */
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all .2s ease;
  font-size: 14px;
}

.btn:active {
  transform: translateY(1px)
}

.btn-primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 4px 12px rgba(11, 74, 162, .15);
}

.btn-primary:hover {
  background: #093c85;
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(11, 74, 162, .2);
}



.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--text)
}

.btn-ghost:hover {
  background: #fff
}

.btn-block {
  width: 100%
}

/* Hero */
.hero {
  padding: 10px 0 80px;
  background-color: #f0f9ff;
  background-image: url('../hero-bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.8) 50%, rgba(255, 255, 255, 0.4) 100%);
  /* Stronger overlay on left for text readability */
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.35fr .85fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pill {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #0f172a;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 13px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
  letter-spacing: 0.01em;
}

.hero h1 {
  font-size: 56px;
  line-height: 1.05;
  margin: 28px 0 24px;
  letter-spacing: -0.03em;
  color: #0f172a;
  font-weight: 700;
}

.accent {
  color: var(--brand);
  position: relative;
}

.accent::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(14, 165, 233, 0.15);
  z-index: -1;
  transform: rotate(-1deg);
}

.lead {
  color: #475569;
  font-size: 20px;
  line-height: 1.6;
  max-width: 58ch;
  font-weight: 400;
}

.hero-points {
  margin: 32px 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hero-points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  color: #334155;
  font-weight: 500;
}

.hero-points li::before {
  content: "✓";
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  background: #e0f2fe;
  color: #0284c7;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust {
  display: flex;
  gap: 24px;
  margin-top: 48px;
  flex-wrap: wrap;
  border-top: 1px solid #e2e8f0;
  padding-top: 24px;
}

.trust-item {
  background: transparent;
  border: none;
  padding: 0;
  min-width: auto;
  box-shadow: none;
  display: flex;
  flex-direction: column;
}

.trust-item strong {
  display: block;
  font-size: 20px;
  color: var(--text)
}

.trust-item span {
  color: var(--muted);
  font-size: 13px
}

.hero-card {
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid #f1f5f9;
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.06);
  /* Sophisticated float */
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: -40px -60px auto auto;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 30% 30%, rgba(14, 165, 233, .15), transparent 60%);
}

.card-inner {
  position: relative;
  padding: 32px
}

.card-inner h2 {
  margin: 0 0 10px;
  font-size: 20px
}

.card-inner p {
  margin: 0 0 16px;
  color: var(--muted);
  line-height: 1.6
}

.mini {
  margin: 20px 0 24px;
  border-top: 1px solid var(--line);
  padding-top: 20px
}

.mini-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0
}

.mini-label {
  font-size: 13px;
  color: var(--muted)
}

.mini-value {
  font-size: 14px;
  color: var(--text);
  text-decoration: none;
  font-weight: 500
}

.tiny {
  font-size: 12px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center
}

/* Sections */
.section-head {
  max-width: 72ch;
  margin-bottom: 22px
}

.section-head h2 {
  font-size: 30px;
  margin: 0 0 10px;
  letter-spacing: -.02em
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65
}

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center
}

.facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px
}

.fact {
  border: 1px solid var(--line);
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px
}

.fact strong {
  display: block;
  font-size: 14px;
  color: #0f172a
}

.fact span {
  display: block;
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.4
}

.media-card {
  border: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: transparent;
  box-shadow: none;
  border: 1px solid #f1f5f9;
}

.media-visual {
  height: 320px;
  background: #f0f9ff;
  position: relative;
  border-radius: var(--radius);
}

.media-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(15, 23, 42, .03) 1px, transparent 1px),
    linear-gradient(180deg, rgba(15, 23, 42, .03) 1px, transparent 1px);
  background-size: 24px 24px;
}

.media-caption {
  padding: 16px 0 0;
  border-top: none
}

.media-caption strong {
  display: block;
  font-size: 15px;
  color: #0f172a
}

.media-caption span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-top: 4px;
  line-height: 1.5
}

/* Cards */
.grid {
  display: grid;
  gap: 24px;
  grid-auto-rows: 1fr;
  /* Equal height cards */
}

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

.card {
  border: 1px solid #e2e8f0;
  border-radius: var(--radius);
  background: #fff;
  padding: 32px 28px;
  box-shadow: var(--shadow);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  overflow: hidden;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  border-color: #cbd5e1;
}

.card:hover::before {
  transform: scaleX(1);
}

.card-icon {
  width: 52px;
  height: 52px;
  background: #f0f9ff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand);
  margin-bottom: 20px;
  transition: background 0.3s, color 0.3s;
}

.card:hover .card-icon {
  background: var(--brand);
  color: #fff;
}



.card h3 {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px
}

.note {
  margin-top: 24px;
  padding: 16px 20px;
  border: 1px solid #bae6fd;
  background: #f0f9ff;
  border-radius: var(--radius)
}

.note p {
  margin: 0;
  color: #0369a1;
  line-height: 1.6;
  font-size: 14px
}

.note a {
  color: #0284c7;
  font-weight: 700
}

/* Why */
/* Why */
.why-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.why-item {
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: #f8fafc;
  padding: 30px;
  transition: all 0.3s ease;
  position: relative;
}

.why-item:hover {
  background: #fff;
  border-color: #cbd5e1;
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.05);
  /* very soft shadow */
  transform: translateY(-4px);
}

.why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: #e0f2fe;
  color: var(--brand);
  border-radius: 8px;
  margin-bottom: 16px;
}

.why-item h3 {
  margin: 0 0 10px;
  font-size: 18px;
  font-weight: 600;
  color: #1e293b;
}

.why-item p {
  margin: 0;
  color: #475569;
  line-height: 1.6;
  font-size: 15px;
}

/* Testimonials */
/* Testimonials */
.testimonial-grid {
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  margin: 0;
  border: none;
  border-radius: 12px;
  background: #fff;
  padding: 32px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}

.testimonial::before {
  content: "“";
  position: absolute;
  top: 10px;
  right: 24px;
  font-size: 80px;
  color: #f1f5f9;
  font-family: serif;
  line-height: 1;
  pointer-events: none;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  margin-bottom: 16px;
  font-size: 14px;
}

.testimonial blockquote {
  margin: 0 0 24px;
  color: #334155;
  line-height: 1.7;
  font-size: 15px;
  font-style: normal;
  position: relative;
  z-index: 1;
}

.testimonial figcaption {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 20px;
  margin-top: auto;
}

.author-avatar {
  width: 40px;
  height: 40px;
  background: #f1f5f9;
  color: #475569;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
}

.testimonial figcaption strong {
  display: block;
  font-size: 15px;
  color: #1e293b;
  font-weight: 600;
}

.testimonial figcaption span {
  display: block;
  color: #94a3b8;
  font-size: 13px;
  margin-top: 2px;
}

/* Areas */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0 24px
}

.tag {
  font-size: 13px;
  color: #0369a1;
  background: #f0f9ff;
  border: 1px solid #bae6fd;
  padding: 6px 12px;
  border-radius: 999px
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  padding: 32px;
  box-shadow: var(--shadow)
}

.contact-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
}

.contact-card p {
  margin: 10px 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 15px
}

.contact-card a {
  font-weight: 600;
  color: var(--brand)
}

.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
  box-shadow: var(--shadow);
  min-height: 400px
}

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

/* FAQ */
.faq details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  padding: 16px;
  margin-bottom: 12px;
  transition: background 0.2s
}

.faq details[open] {
  background: #f8fafc
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: #0f172a
}

.faq-body {
  margin-top: 12px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px
}

/* CTA */
.cta {
  padding: 80px 0;
  background: linear-gradient(135deg, #0b4aa2 0%, #0284c7 100%);
  color: #fff
}

.cta-inner {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap
}

.cta h2 {
  margin: 0 0 8px;
  font-size: 32px;
  letter-spacing: -.02em
}

.cta p {
  margin: 0;
  color: rgba(255, 255, 255, .9);
  font-size: 18px
}

.cta .btn-ghost {
  border-color: rgba(255, 255, 255, .4);
  color: #fff
}

.cta .btn-ghost:hover {
  background: rgba(255, 255, 255, .15);
  border-color: #fff
}

/* Footer */
.footer {
  padding: 64px 0 32px;
  background: #0f172a;
  color: #e2e8f0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr;
  gap: 22px;
  align-items: start
}

.footer a {
  color: #e5e7eb
}

.footer h3 {
  margin: 0 0 10px;
  font-size: 14px
}

.footer ul {
  list-style: none;
  padding: 0;
  margin: 0
}

.footer li {
  margin: 10px 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5
}

.footer-text {
  color: #cbd5e1;
  line-height: 1.6;
  font-size: 13px;
  margin: 12px 0 0
}

.footer-brand .brand-text small {
  color: #cbd5e1
}

.footer-bottom {
  border-top: 1px solid rgba(148, 163, 184, .18);
  margin-top: 18px;
  padding-top: 16px;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap
}

/* Responsive */
@media (max-width: 920px) {
  .hero-grid {
    grid-template-columns: 1fr
  }

  .two-col {
    grid-template-columns: 1fr
  }

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

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

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

  .facts {
    grid-template-columns: 1fr
  }

  .brand {
    min-width: unset
  }
}

@media (max-width: 680px) {
  .section {
    padding: 56px 0
  }

  .hero h1 {
    font-size: 34px
  }

  .nav-toggle {
    display: inline-block
  }

  .nav-toggle {
    display: inline-block;
    order: 3;
    /* Ensure toggle is last (right) */
  }

  .mobile-call-btn {
    display: flex;
    /* Show on mobile */
    order: 2;
    /* Call button middle/right */
    margin-left: auto;
    /* Push to right next to toggle */
  }

  .header-inner {
    justify-content: space-between;
    /* Layout: Brand ... [Space] ... Button Toggle */
  }

  .nav {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 68px;
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 10px 4%;
    flex-direction: column;
    gap: 6px
  }

  .nav a {
    width: 100%;
    justify-content: flex-start
  }

  .nav.is-open {
    display: flex
  }

  .header-inner {
    position: relative
  }

  .header-cta {
    display: none
  }

  .cards {
    grid-template-columns: 1fr
  }

  .why-grid {
    grid-template-columns: 1fr
  }

  .testimonial-grid {
    grid-template-columns: 1fr
  }

  .footer-grid {
    grid-template-columns: 1fr
  }

  .trust-item {
    min-width: unset;
    flex: 1;
  }
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: #fff;
  border-radius: 50%;
  text-align: center;
  font-size: 30px;
  box-shadow: 0 4px 10px rgba(37, 211, 102, 0.3);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 14px rgba(37, 211, 102, 0.4);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
}