:root {
  --primary: #0B74B8;
  --primary-dark: #075C92;
  --teal: #20B7A8;
  --dark: #1E293B;
  --muted: #64748B;
  --light: #F5FAFC;
  --green: #22C55E;
  --white: #FFFFFF;
  --border: #DDEAF0;
  --shadow: 0 20px 50px rgba(15, 23, 42, 0.10);
  --shadow-soft: 0 10px 30px rgba(15, 23, 42, 0.08);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Poppins", "Roboto", Arial, sans-serif;
  color: var(--dark);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--dark);
  color: var(--white);
  padding: 10px 14px;
  border-radius: 8px;
  z-index: 9999;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(221, 234, 240, 0.8);
}

.nav-wrap {
  min-height: 82px;
  display: flex;
  align-items: center;
  gap: 22px;
}

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

.brand-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 24px;
  box-shadow: 0 10px 22px rgba(11, 116, 184, 0.25);
}

.brand strong {
  display: block;
  font-size: 18px;
  letter-spacing: -0.02em;
}

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

.main-nav {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-left: auto;
}

.main-nav a {
  color: #334155;
  font-size: 14px;
  font-weight: 600;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  gap: 10px;
  margin-left: 4px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
  padding: 11px;
  margin-left: auto;
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  border-radius: 999px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  box-shadow: 0 14px 28px rgba(11, 116, 184, 0.22);
}

.btn-primary:hover,
.btn-primary:focus {
  box-shadow: 0 16px 34px rgba(11, 116, 184, 0.28);
}

.btn-light {
  background: #EEF8FC;
  color: var(--primary);
  border-color: #D7EEF7;
}

.btn-outline {
  color: var(--primary);
  background: var(--white);
  border-color: #BFE4F4;
}

.btn-large {
  min-height: 52px;
  padding-inline: 24px;
  font-size: 15px;
}

.btn-full {
  width: 100%;
}

.section {
  padding: 88px 0;
}

.section-soft {
  background: var(--light);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 70px;
  background:
    radial-gradient(circle at 15% 15%, rgba(32, 183, 168, 0.16), transparent 28%),
    radial-gradient(circle at 85% 10%, rgba(11, 116, 184, 0.14), transparent 30%),
    linear-gradient(180deg, #FFFFFF 0%, #F5FAFC 100%);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% -10%;
  height: 260px;
  background: linear-gradient(90deg, rgba(11, 116, 184, 0.08), rgba(32, 183, 168, 0.08));
  border-radius: 50% 50% 0 0;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  align-items: center;
  gap: 56px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  background: #EAF7FC;
  border: 1px solid #D5EEF8;
  border-radius: 999px;
  padding: 8px 13px;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 16px;
}

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

h1 {
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin-bottom: 20px;
}

h2 {
  font-size: clamp(30px, 3.6vw, 46px);
  line-height: 1.12;
  letter-spacing: -0.04em;
  margin-bottom: 18px;
}

h3 {
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  margin-bottom: 16px;
}

.hero-text {
  font-size: 18px;
  max-width: 650px;
}

.hero-actions,
.cta-inline,
.center-cta,
.timing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  margin-top: 24px;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 30px;
}

.trust-grid div {
  padding: 18px 14px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
}

.trust-grid strong {
  display: block;
  color: var(--primary);
  font-size: 24px;
  line-height: 1;
}

.trust-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  margin-top: 8px;
}

.hero-card {
  position: relative;
}

.hero-visual {
  background: var(--white);
  border: 1px solid rgba(221, 234, 240, 0.9);
  border-radius: 34px;
  padding: 18px;
  box-shadow: var(--shadow);
}

.hero-mini-card {
  position: absolute;
  right: 16px;
  bottom: -20px;
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 16px 18px;
  box-shadow: var(--shadow);
}

.hero-mini-card span {
  color: var(--green);
  font-weight: 800;
  font-size: 13px;
}

.hero-mini-card strong {
  display: block;
  margin-top: 4px;
}

.quick-contact {
  background: var(--dark);
  color: var(--white);
}

.quick-contact-inner {
  min-height: 64px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  text-align: center;
}

.quick-contact a {
  color: #A7F3D0;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.badges-section {
  padding: 28px 0;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.badge {
  padding: 12px 16px;
  color: #075985;
  background: #F0FBFF;
  border: 1px solid #CFEFFC;
  border-radius: 999px;
  font-weight: 800;
  font-size: 14px;
}

.split-grid,
.doctor-grid,
.contact-grid,
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
  align-items: center;
}

.highlight-card,
.appointment-form,
.doctor-photo,
.map-card,
.timing-card,
.review-highlight {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.highlight-card {
  padding: 34px;
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin: 13px 0;
  color: #334155;
  font-weight: 600;
}

.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--green);
  font-weight: 900;
}

.doctor-grid {
  grid-template-columns: 0.75fr 1.25fr;
}

.doctor-photo {
  padding: 44px 28px;
  text-align: center;
  background: linear-gradient(180deg, #FFFFFF, #F0FBFF);
}

.doctor-avatar {
  width: 150px;
  height: 150px;
  margin: 0 auto 22px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: var(--white);
  font-size: 52px;
  font-weight: 900;
  box-shadow: 0 18px 34px rgba(11, 116, 184, 0.24);
}

.detail-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.detail-card-grid div {
  padding: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.detail-card-grid span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 6px;
}

.detail-card-grid strong {
  display: block;
  color: var(--dark);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

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

.services-grid {
  grid-template-columns: repeat(4, 1fr);
}

.feature-grid,
.review-grid {
  grid-template-columns: repeat(3, 1fr);
}

.service-card,
.feature-card,
.review-card,
.process-step {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.service-card:hover,
.feature-card:hover,
.review-card:hover,
.process-step:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: #BFE4F4;
}

.card-icon {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: #EAF7FC;
  font-size: 26px;
  margin-bottom: 18px;
}

.service-card a {
  color: var(--primary);
  font-weight: 900;
}

.feature-card span,
.process-step span {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--teal));
  border-radius: 14px;
  font-weight: 900;
  margin-bottom: 18px;
}

.center-cta {
  justify-content: center;
  margin-top: 34px;
}

.process-section {
  background: #FFFFFF;
}

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

.review-highlight {
  width: fit-content;
  margin: 0 auto 28px;
  padding: 18px 24px;
  text-align: center;
}

.review-highlight strong {
  color: #F59E0B;
  font-size: 34px;
  line-height: 1;
}

.review-highlight span {
  display: block;
  color: var(--muted);
  font-weight: 700;
  margin-top: 4px;
}

.stars {
  color: #F59E0B;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.review-card span {
  color: var(--primary);
  font-weight: 900;
}

.small-note {
  font-size: 14px;
  color: #6B7280;
}

#reviews .small-note {
  text-align: center;
  margin-top: 22px;
}

.address-text {
  font-size: 18px;
}

.info-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.info-list div {
  padding: 14px 16px;
  background: #F8FCFE;
  border: 1px solid var(--border);
  border-radius: 14px;
}

.info-list a {
  color: var(--primary);
  font-weight: 800;
}

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

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

.timing-card {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 34px;
}

.contact-grid {
  align-items: start;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin: 26px 0;
}

.contact-card {
  display: block;
  padding: 18px;
  background: #F8FCFE;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
}

.contact-card span {
  display: block;
  font-size: 24px;
  margin-bottom: 8px;
}

.contact-card strong,
.contact-card em {
  display: block;
  font-style: normal;
}

.contact-card em {
  color: var(--primary);
  font-weight: 800;
  overflow-wrap: anywhere;
}

address {
  padding: 20px;
  background: #F8FCFE;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  color: var(--muted);
  font-style: normal;
}

.appointment-form {
  padding: 32px;
}

.appointment-form label {
  display: block;
  margin: 14px 0 8px;
  color: #334155;
  font-weight: 800;
  font-size: 14px;
}

.appointment-form input,
.appointment-form select,
.appointment-form textarea {
  width: 100%;
  border: 1px solid #CCE3EC;
  background: #F8FCFE;
  color: var(--dark);
  border-radius: 14px;
  padding: 13px 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.appointment-form input:focus,
.appointment-form select:focus,
.appointment-form textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(11, 116, 184, 0.12);
}

.appointment-form button {
  margin-top: 18px;
}

.form-message {
  min-height: 22px;
  margin: 12px 0 0;
  color: var(--green);
  font-weight: 800;
}

.site-footer {
  background: #0F172A;
  color: var(--white);
  padding: 58px 0 96px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr;
  gap: 36px;
}

.footer-brand .brand-icon {
  box-shadow: none;
}

.footer-grid p,
.footer-grid small {
  color: #CBD5E1;
}

.footer-grid h3 {
  color: var(--white);
}

.footer-grid a:not(.brand) {
  display: block;
  color: #CBD5E1;
  margin-bottom: 10px;
  transition: color 0.2s ease;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  margin-top: 34px;
  padding-top: 20px;
}

.footer-bottom p {
  color: #CBD5E1;
  margin: 0;
}

.floating-actions {
  position: fixed;
  right: 20px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  z-index: 998;
}

.floating-actions a {
  min-width: 102px;
  padding: 12px 16px;
  border-radius: 999px;
  color: var(--white);
  font-weight: 900;
  text-align: center;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.22);
}

.float-call {
  background: var(--primary);
}

.float-whatsapp {
  background: var(--green);
}

.mobile-sticky-cta {
  display: none;
}

.legal-page,
.thankyou-page {
  min-height: 100vh;
  background: var(--light);
  padding: 60px 0;
}

.legal-card,
.thankyou-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: 40px;
}

.legal-card h1,
.thankyou-card h1 {
  font-size: clamp(34px, 4vw, 54px);
}

@media (max-width: 1100px) {
  .header-actions {
    display: none;
  }

  .main-nav {
    gap: 14px;
  }

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

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

@media (max-width: 880px) {
  .container {
    width: min(100% - 28px, var(--container));
  }

  .nav-wrap {
    min-height: 74px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: absolute;
    top: 74px;
    left: 14px;
    right: 14px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 18px;
    box-shadow: var(--shadow);
  }

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

  .main-nav a {
    padding: 13px 12px;
    border-radius: 12px;
  }

  .main-nav a:hover,
  .main-nav a:focus {
    background: #F0FBFF;
  }

  .hero-grid,
  .split-grid,
  .doctor-grid,
  .contact-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 64px;
  }

  .hero-card {
    max-width: 560px;
    margin-inline: auto;
  }

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

  .quick-contact-inner {
    flex-direction: column;
    gap: 4px;
    padding: 14px 0;
  }

  .feature-grid,
  .review-grid {
    grid-template-columns: 1fr;
  }

  .detail-card-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .timing-card {
    display: block;
  }

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

@media (max-width: 640px) {
  body {
    padding-bottom: 64px;
  }

  .section {
    padding: 64px 0;
  }

  .brand strong {
    font-size: 16px;
  }

  .brand small {
    font-size: 11px;
  }

  .brand-icon {
    width: 42px;
    height: 42px;
  }

  .hero-actions,
  .cta-inline,
  .center-cta,
  .timing-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .btn,
  .cta-inline .btn,
  .center-cta .btn,
  .timing-actions .btn {
    width: 100%;
  }

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

  .hero-mini-card {
    position: static;
    margin-top: 14px;
  }

  .highlight-card,
  .appointment-form,
  .legal-card,
  .thankyou-card,
  .timing-card {
    padding: 24px;
  }

  .service-card,
  .feature-card,
  .review-card,
  .process-step {
    padding: 24px;
  }

  .floating-actions {
    display: none;
  }

  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    background: var(--white);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 24px rgba(15, 23, 42, 0.12);
  }

  .mobile-sticky-cta a {
    padding: 14px 8px;
    text-align: center;
    color: var(--primary);
    font-weight: 900;
    font-size: 13px;
  }

  .mobile-sticky-cta a:nth-child(2) {
    color: var(--green);
    border-left: 1px solid var(--border);
    border-right: 1px solid var(--border);
  }
}
