﻿:root {
  --bg: #f4f9ff;
  --surface: rgba(255, 255, 255, 0.88);
  --surface-strong: #ffffff;
  --surface-dark: #07111f;
  --text: #0d1b2a;
  --muted: #5f7087;
  --primary: #1272ff;
  --primary-deep: #0b4dc8;
  --line: rgba(11, 53, 114, 0.1);
  --shadow-lg: 0 30px 80px rgba(7, 24, 53, 0.12);
  --shadow-md: 0 20px 55px rgba(12, 34, 66, 0.08);
  --radius-xl: 36px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --container: min(1180px, calc(100% - 40px));
  --ease: 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(18, 114, 255, 0.16), transparent 32%),
    radial-gradient(circle at 90% 15%, rgba(18, 114, 255, 0.1), transparent 22%),
    linear-gradient(180deg, #f7fbff 0%, #edf5ff 100%);
}

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

button,
input,
select {
  font: inherit;
}

button,
a {
  transition: transform var(--ease), box-shadow var(--ease), background-color var(--ease), color var(--ease), border-color var(--ease);
}

.page-shell {
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.section {
  padding: 110px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  padding: 18px 0;
  backdrop-filter: blur(18px);
  background: rgba(247, 251, 255, 0.72);
  border-bottom: 1px solid transparent;
  transition: background-color var(--ease), border-color var(--ease), box-shadow var(--ease), padding var(--ease);
}

.site-header.scrolled {
  padding: 12px 0;
  background: rgba(250, 252, 255, 0.88);
  border-color: rgba(9, 34, 74, 0.08);
  box-shadow: 0 10px 32px rgba(6, 17, 37, 0.06);
}

.nav-wrap,
.footer-wrap,
.highlight-grid,
.hero-grid,
.about-grid,
.experience-grid,
.cta-panel {
  display: grid;
  gap: 28px;
}

.nav-wrap {
  grid-template-columns: auto 1fr auto;
  align-items: center;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: inherit;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  color: white;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 800;
  font-size: 1.15rem;
  background: linear-gradient(135deg, #0b1727, #1272ff);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.25), 0 15px 35px rgba(18, 114, 255, 0.28);
}

.brand-copy {
  display: grid;
}

.brand-copy strong,
.section-heading h2,
.about-panel h2,
.experience-copy h2,
.cta-panel h2,
.hero-copy h1 {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.brand-copy strong {
  font-size: 1rem;
}

.brand-copy small {
  color: var(--muted);
  font-size: 0.82rem;
}

.main-nav {
  justify-self: center;
  display: inline-flex;
  gap: 28px;
  align-items: center;
}

.main-nav a,
.footer-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 600;
  position: relative;
}

.main-nav a::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--primary);
  transition: transform var(--ease);
}

.main-nav a:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 26px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-weight: 700;
  cursor: pointer;
}

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

.button-primary {
  color: white;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 16px 32px rgba(18, 114, 255, 0.28);
}

.button-dark {
  color: white;
  background: #08111d;
  box-shadow: 0 14px 28px rgba(8, 17, 29, 0.18);
}

.button-ghost {
  color: var(--text);
  background: rgba(255, 255, 255, 0.7);
  border-color: rgba(7, 38, 79, 0.12);
}

.button-full {
  width: 100%;
}

.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 20px 14px 14px;
  border-radius: 999px;
  color: white;
  text-decoration: none;
  background: linear-gradient(135deg, #16c75a, #0f9f46);
  box-shadow: 0 22px 45px rgba(15, 159, 70, 0.34);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: 0 26px 50px rgba(15, 159, 70, 0.4);
}

.whatsapp-float__icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.2);
}

.whatsapp-float__icon svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.whatsapp-float__content {
  display: grid;
  gap: 2px;
}

.whatsapp-float__content strong,
.whatsapp-float__content small {
  display: block;
}

.whatsapp-float__content strong {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.98rem;
}

.whatsapp-float__content small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
}

.eyebrow,
.section-tag,
.mini-label,
.card-kicker,
.testimonial-card span,
.experience-card span,
.portrait-badge {
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow,
.section-tag,
.mini-label,
.card-kicker,
.portrait-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.76rem;
  font-weight: 800;
}

.eyebrow::before,
.section-tag::before,
.mini-label::before,
.card-kicker::before,
.portrait-badge::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.45;
}

.eyebrow,
.section-tag,
.card-kicker,
.mini-label {
  color: var(--primary-deep);
}

.hero {
  padding: 74px 0 48px;
}

.hero-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: calc(100vh - 130px);
}

.hero-copy h1 {
  margin: 22px 0 20px;
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  line-height: 0.98;
  max-width: 11ch;
}

.hero-copy p,
.about-panel p,
.service-card p,
.experience-copy li,
.experience-card p,
.testimonial-card p,
.cta-panel p,
.highlight-grid p,
.info-card p,
.portrait-info p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 40px;
}

.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.trust-row li {
  padding: 22px;
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(9, 48, 104, 0.08);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.trust-row strong {
  display: block;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  margin-bottom: 8px;
}

.trust-row span {
  color: var(--muted);
}

.hero-visual {
  position: relative;
  min-height: 680px;
}

.visual-main {
  position: absolute;
  inset: 0 0 0 40px;
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.95)),
    linear-gradient(135deg, rgba(18, 114, 255, 0.14), transparent 56%);
  border: 1px solid rgba(10, 51, 109, 0.1);
  box-shadow: var(--shadow-lg);
}

.doctor-portrait,
.portrait-panel {
  height: 100%;
}

.doctor-portrait {
  position: relative;
  padding: 36px;
}

.portrait-glow {
  position: absolute;
  inset: 8% 12% auto auto;
  width: 280px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 114, 255, 0.32), transparent 68%);
  filter: blur(12px);
}

.portrait-panel {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  padding: 30px;
  border-radius: 30px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(231, 241, 255, 0.82)),
    linear-gradient(150deg, rgba(7, 17, 31, 0.92), rgba(18, 114, 255, 0.16));
  overflow: hidden;
}

.portrait-panel::before,
.portrait-panel::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(18, 114, 255, 0.08);
}

.portrait-panel::before {
  width: 420px;
  height: 420px;
  right: -140px;
  top: -120px;
}

.portrait-panel::after {
  width: 230px;
  height: 230px;
  left: -70px;
  bottom: -70px;
}

.portrait-shape {
  position: relative;
  height: 100%;
  min-height: 420px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 50% 22%, rgba(255, 255, 255, 0.95), transparent 24%),
    radial-gradient(circle at 50% 24%, rgba(18, 114, 255, 0.28), transparent 40%),
    radial-gradient(circle at 50% 66%, rgba(7, 17, 31, 0.82) 0, rgba(7, 17, 31, 0.82) 23%, transparent 24%),
    linear-gradient(180deg, rgba(18, 114, 255, 0.3), rgba(8, 17, 29, 0.12)),
    linear-gradient(180deg, #dbeaff, #ffffff 42%, #d9e8fb 100%);
  border: 1px solid rgba(255, 255, 255, 0.65);
  overflow: hidden;
}

.portrait-shape::before,
.portrait-shape::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, #0a1422, #1b2e46);
}

.portrait-shape::before {
  top: 16%;
  width: 164px;
  height: 164px;
  border-radius: 50% 50% 48% 48%;
  box-shadow: 0 8px 0 rgba(255, 255, 255, 0.16) inset;
}

.portrait-shape::after {
  top: 40%;
  width: 280px;
  height: 260px;
  border-radius: 44% 44% 20% 20%;
}

.portrait-info {
  position: relative;
  z-index: 1;
  max-width: 350px;
}

.portrait-info h2 {
  margin: 18px 0 10px;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: clamp(1.7rem, 3vw, 2.3rem);
}

.floating-card {
  position: absolute;
  padding: 20px 22px;
  max-width: 230px;
  border-radius: 22px;
  background: rgba(7, 17, 31, 0.92);
  color: white;
  box-shadow: var(--shadow-lg);
  animation: floatY 5s ease-in-out infinite;
}

.floating-card span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.8rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.floating-card strong {
  font-size: 1.05rem;
  line-height: 1.5;
}

.floating-card-top {
  top: 72px;
  left: 0;
}

.floating-card-bottom {
  right: -12px;
  bottom: 64px;
  animation-delay: 0.8s;
}

.highlight-bar {
  padding: 28px 0 0;
}

.highlight-grid {
  grid-template-columns: repeat(3, 1fr);
  padding: 26px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(8, 41, 89, 0.08);
  box-shadow: var(--shadow-md);
}

.highlight-grid > div {
  padding: 16px 22px;
}

.about-grid,
.experience-grid,
.cta-panel {
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}

.about-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.about-cards .outline-card {
  grid-column: 1 / -1;
}

.info-card,
.service-card,
.testimonial-card,
.experience-card,
.contact-card {
  position: relative;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(10, 48, 101, 0.08);
  box-shadow: var(--shadow-md);
}

.info-card,
.experience-card,
.testimonial-card {
  padding: 28px;
}

.dark-card,
.dark-block {
  color: white;
  background: linear-gradient(160deg, #08111d, #113972);
}

.dark-card .card-kicker,
.dark-block span,
.dark-card p,
.dark-block p {
  color: rgba(255, 255, 255, 0.78);
}

.outline-card {
  background: transparent;
  border-style: dashed;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 38px;
}

.section-heading h2,
.about-panel h2,
.experience-copy h2,
.cta-panel h2 {
  margin: 16px 0 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.08;
}

.services-grid,
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  min-height: 280px;
  padding: 30px;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30px -40px auto;
  width: 140px;
  aspect-ratio: 1;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(18, 114, 255, 0.16), transparent 70%);
}

.service-card:hover,
.info-card:hover,
.testimonial-card:hover,
.experience-card:hover,
.contact-card:hover {
  transform: translateY(-6px);
}

.service-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  margin-bottom: 22px;
  font-weight: 800;
  color: var(--primary-deep);
  background: rgba(18, 114, 255, 0.1);
}

.service-card h3,
.info-card h3,
.experience-card strong,
.testimonial-card strong {
  font-family: "Plus Jakarta Sans", sans-serif;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 16px;
}

.feature-list li {
  position: relative;
  padding-left: 34px;
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 16px;
  height: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: 0 0 0 6px rgba(18, 114, 255, 0.12);
}

.experience-stack {
  display: grid;
  gap: 20px;
}

.experience-card strong {
  display: block;
  font-size: 1.4rem;
  margin: 14px 0 10px;
}

.testimonial-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.testimonial-card p {
  font-size: 1.08rem;
}

.testimonial-card span {
  display: block;
  margin-top: 6px;
  font-size: 0.78rem;
  color: var(--primary-deep);
  font-weight: 700;
}

.cta-section {
  padding-top: 40px;
}

.cta-panel {
  padding: 48px;
  border-radius: 34px;
  background: linear-gradient(145deg, #07111f, #0e2b56 70%, #1272ff 130%);
  box-shadow: var(--shadow-lg);
}

.cta-panel,
.cta-panel p,
.cta-panel h2 {
  color: white;
}

.section-tag.light {
  color: rgba(255, 255, 255, 0.85);
}

.contact-card {
  padding: 24px;
  background: rgba(255, 255, 255, 0.96);
}

.contact-card label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--text);
  font-weight: 700;
}

.contact-card span {
  font-size: 0.95rem;
}

.contact-card input,
.contact-card select {
  width: 100%;
  min-height: 56px;
  border-radius: 16px;
  border: 1px solid rgba(7, 38, 79, 0.12);
  background: #f7fbff;
  padding: 0 16px;
  outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
}

.contact-card input:focus,
.contact-card select:focus {
  border-color: rgba(18, 114, 255, 0.6);
  box-shadow: 0 0 0 5px rgba(18, 114, 255, 0.12);
}

.site-footer {
  padding: 30px 0 42px;
}

.footer-wrap {
  grid-template-columns: 1fr auto;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid rgba(8, 41, 89, 0.1);
}

.footer-wrap p {
  margin: 8px 0 0;
  color: var(--muted);
}

.footer-links {
  display: inline-flex;
  gap: 22px;
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 720ms ease, transform 720ms ease;
}

.reveal-delay {
  transition-delay: 140ms;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@media (max-width: 1120px) {
  .hero-grid,
  .about-grid,
  .experience-grid,
  .cta-panel {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 44px;
  }

  .hero-grid {
    min-height: auto;
  }

  .hero-visual {
    min-height: 620px;
  }

  .visual-main {
    inset: 0;
  }

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

  .main-nav {
    display: none;
  }

  .nav-wrap {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }
}

@media (max-width: 760px) {
  .section {
    padding: 84px 0;
  }

  .site-header {
    padding: 14px 0;
  }

  .nav-cta {
    display: none;
  }

  .hero-copy h1 {
    max-width: none;
  }

  .hero-actions,
  .footer-links {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-row,
  .services-grid,
  .testimonials-grid,
  .highlight-grid,
  .about-cards {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 520px;
  }

  .doctor-portrait {
    padding: 18px;
  }

  .portrait-panel {
    padding: 22px;
  }

  .portrait-shape {
    min-height: 280px;
  }

  .portrait-shape::before {
    width: 124px;
    height: 124px;
  }

  .portrait-shape::after {
    width: 210px;
    height: 210px;
  }

  .floating-card {
    position: relative;
    inset: auto;
    margin-top: 14px;
    max-width: none;
  }

  .cta-panel {
    padding: 30px;
  }

  .whatsapp-float {
    right: 16px;
    left: 16px;
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    justify-content: center;
    padding-right: 16px;
  }

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

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

