:root {
  --blue: #075db5;
  --deep-blue: #01366e;
  --green: #22a645;
  --dark: #111827;
  --muted: #5c6675;
  --line: #e5edf6;
  --bg: #f7fbff;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(1, 54, 110, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  color: var(--dark);
  background: linear-gradient(180deg, #ffffff 0%, var(--bg) 100%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.navbar {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand img {
  height: 54px;
  width: 216px;
  object-fit: contain;
  object-position: left center;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  font-weight: 600;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--blue);
}

.nav-cta,
.btn,
.contact-form button,
.whatsapp-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-weight: 800;
  border: 0;
  cursor: pointer;
}

.nav-call {
  background: var(--bg);
  color: var(--deep-blue);
  border: 1.5px solid var(--line);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}

.hero {
  width: min(1180px, calc(100% - 32px));
  margin: 54px auto 24px;
  display: grid;
  grid-template-columns: 0.95fr 1.1fr;
  gap: 36px;
  align-items: center;
}

.eyebrow,
.section-kicker {
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  font-weight: 900;
  margin: 0 0 12px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  font-size: clamp(40px, 5vw, 70px);
  line-height: 1.04;
  color: var(--deep-blue);
  margin-bottom: 22px;
}

h2 {
  font-size: clamp(28px, 3.5vw, 44px);
  line-height: 1.12;
  color: var(--deep-blue);
  margin-bottom: 16px;
}

.hero-text,
.section p,
.info-card p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.marathi-tagline {
  font-size: 17px;
  color: var(--blue);
  font-weight: 700;
  margin-top: 4px;
  margin-bottom: 0;
  letter-spacing: 0.01em;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.btn {
  padding: 15px 24px;
  min-width: 150px;
}

.btn.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 10px 20px rgba(7, 93, 181, 0.22);
}

.btn.secondary {
  background: white;
  color: var(--deep-blue);
  border: 1px solid var(--line);
}

.hero-card {
  background: white;
  border-radius: 28px;
  padding: 12px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: 18px;
}

.locations {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.locations span {
  background: white;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 18px;
  color: var(--deep-blue);
  font-weight: 800;
  transition: background 0.18s, color 0.18s, border-color 0.18s;
  cursor: default;
}

.locations span:hover {
  background: var(--blue);
  color: white;
  border-color: var(--blue);
}

.section {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 72px 0;
}

.about {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

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

.cards {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.info-card {
  background: white;
  padding: 28px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(1, 54, 110, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(1, 54, 110, 0.13);
}

.icon {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  background: #eef8f1;
  margin-bottom: 18px;
  font-size: 25px;
}

.info-card h3 {
  color: var(--deep-blue);
  font-size: 22px;
  margin-bottom: 10px;
}

.trust {
  background: linear-gradient(135deg, var(--deep-blue), var(--blue));
  color: white;
  border-radius: 32px;
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.trust h2,
.trust p {
  color: white;
}

.trust p {
  opacity: 0.88;
  max-width: 720px;
}

.trust .btn {
  background: white;
  color: var(--deep-blue);
}

.share-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--deep-blue);
  padding: 18px 32px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 16px;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.20);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.share-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(255, 255, 255, 0.30);
}

.share-cta::after {
  content: '';
  position: absolute;
  top: 0;
  left: -80%;
  width: 50%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.45), transparent);
  transform: skewX(-20deg);
  animation: shimmer-sweep 3.5s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%   { left: -80%; }
  40%  { left: 130%; }
  100% { left: 130%; }
}

.contact {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 36px;
  align-items: start;
}

.contact-info,
.contact-form {
  background: white;
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.contact-list {
  font-size: 20px;
  line-height: 1.8;
  margin: 24px 0;
}

.contact-list a {
  color: var(--blue);
  font-weight: 800;
}

.whatsapp-large {
  background: var(--green);
  color: white;
  padding: 16px 22px;
  width: 100%;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--deep-blue);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 16px;
  font-family: inherit;
  outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(7, 93, 181, 0.10);
}

.contact-form button {
  background: var(--blue);
  color: white;
  padding: 16px 22px;
  font-size: 16px;
}

.form-note {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}

.fs-success {
  padding: 14px 18px;
  border-radius: 12px;
  background: #eef8f1;
  color: var(--green);
  border: 1px solid #b8e8c6;
  font-weight: 700;
  font-size: 15px;
}

.fs-error {
  padding: 14px 18px;
  border-radius: 12px;
  background: #fff5f5;
  color: #c0392b;
  border: 1px solid #f5c0c0;
  font-weight: 700;
  font-size: 15px;
}

.fs-field-error {
  display: block;
  color: #c0392b;
  font-size: 13px;
  font-weight: 600;
  margin-top: 2px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  background: var(--green);
  color: white;
  font-weight: 900;
  padding: 15px 20px;
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(34, 166, 69, 0.30);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

footer {
  text-align: center;
  padding: 28px 16px 36px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

/* ── How It Works ── */
.process-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-top: 36px;
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 0 24px;
}

.step-num {
  width: 42px;
  height: 42px;
  background: var(--blue);
  color: white;
  border-radius: 50%;
  font-weight: 900;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.process-step .icon {
  background: var(--bg);
  margin-bottom: 14px;
  display: inline-flex;
}

.process-step h3 {
  color: var(--deep-blue);
  font-size: 18px;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin: 0;
}

.process-divider {
  flex-shrink: 0;
  width: 60px;
  height: 2px;
  border-top: 2px dashed var(--line);
  margin-top: 21px;
}

/* ── Why Us cards ── */
.why-cards {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 28px;
}

.why-card {
  background: white;
  padding: 28px 24px;
  border-radius: 20px;
  border-left: 4px solid var(--blue);
  box-shadow: 0 8px 24px rgba(1, 54, 110, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(1, 54, 110, 0.12);
}

.why-card h3 {
  color: var(--deep-blue);
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 14px;
}

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

/* ── Trust section JV callout ── */
.trust-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  flex-shrink: 0;
}

.jv-note {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
}

.jv-note a {
  color: white;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 900px) {
  .nav-links {
    display: none;
  }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .trust {
    flex-direction: column;
    align-items: flex-start;
  }

  .process-steps {
    flex-direction: column;
    gap: 28px;
  }

  .process-divider {
    width: 2px;
    height: 28px;
    border-top: none;
    border-left: 2px dashed var(--line);
    margin: 0 auto;
  }

  .process-step {
    padding: 0;
  }

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

@media (max-width: 560px) {
  .navbar {
    min-height: 68px;
  }

  .brand img {
    height: 44px;
    width: 176px;
  }

  .nav-call {
    padding: 9px 14px;
    font-size: 13px;
  }

  .hero {
    margin-top: 32px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

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

  .section {
    padding: 52px 0;
  }

  .trust,
  .contact-info,
  .contact-form {
    padding: 26px;
    border-radius: 24px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    text-align: center;
  }
}
