
:root {
  --blue: #0057b7;
  --yellow: #ffd700;
  --dark: #0f172a;
  --light: #f8fafc;
  --muted: #64748b;
  --max-width: 1120px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--dark);
  background-color: #ffffff;
  line-height: 1.6;
}

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

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

/* Header / nav */

header {
  position: sticky;
  top: 0;
  z-index: 20;
  background-color: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #e2e8f0;
}

.nav-wrapper {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo-img {
  height: 70px;
  width: auto;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  font-size: 0.95rem;
}

nav a {
  padding-bottom: 0.15rem;
  border-bottom: 2px solid transparent;
}

nav a:hover {
  border-bottom-color: var(--yellow);
}

.nav-cta {
  display: none;
}

/* Buttons */

.btn-primary,
.btn-outline {
  border-radius: 999px;
  padding: 0.65rem 1.3rem;
  font-size: 0.95rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background-color: var(--yellow);
  color: var(--dark);
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.22);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.28);
}

.btn-outline {
  border: 1px solid #e2e8f0;
  background-color: transparent;
  color: #0f172a;
}

.btn-outline-dark {
  border-color: #cbd5e1;
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.3fr);
  max-width: var(--max-width);
  margin: 1.5rem auto 0;
  padding: 0 1rem 2.6rem;
  gap: 2rem;
  align-items: center;
}

.hero-media img {
  border-radius: 1.5rem;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.28);
}

.hero-inner {
  display: flex;
  align-items: center;
}

.hero-content {
  max-width: 32rem;
}

.hero-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.6rem;
}

.hero h1 {
  font-size: clamp(2rem, 3vw + 1rem, 2.8rem);
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

.hero-subtitle {
  font-size: 1.02rem;
  color: #4b5563;
  margin-bottom: 1.1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.7rem;
}

.hero-footnote {
  font-size: 0.87rem;
  color: var(--muted);
}

/* Sections base */

section {
  padding: 2.8rem 1rem;
}

.section-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.section-header {
  margin-bottom: 1.6rem;
}

.section-kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--muted);
  margin-bottom: 0.35rem;
}

.section-title {
  font-size: 1.7rem;
  margin-bottom: 0.35rem;
}

.section-intro {
  color: #4b5563;
  font-size: 0.98rem;
  max-width: 38rem;
}

/* About */

.two-column {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(0, 1.1fr);
  gap: 2rem;
  align-items: stretch;
}

.about-text p {
  margin-bottom: 0.9rem;
  color: #4b5563;
  font-size: 0.98rem;
}

.about-list {
  list-style: none;
  margin-top: 0.4rem;
}

.about-list li {
  position: relative;
  padding-left: 1.3rem;
  margin-bottom: 0.45rem;
  font-size: 0.93rem;
  color: #4b5563;
}

.about-list li::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--blue), var(--yellow));
  position: absolute;
  left: 0;
  top: 0.55rem;
}

.about-card {
  border-radius: 1.1rem;
  background-color: #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.about-image {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.about-card-body {
  padding: 1rem 1.1rem 1.1rem;
  font-size: 0.9rem;
  color: #475569;
}

.about-card-body strong {
  display: block;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.7rem;
}

.pill {
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  font-size: 0.78rem;
  background-color: #e2e8f0;
  color: #0f172a;
}

/* Services */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 1.6rem;
}

.service-card {
  border-radius: 0.95rem;
  border: 1px solid #e2e8f0;
  overflow: hidden;
  background-color: #ffffff;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-image {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background-color: #e5e7eb;
}

.service-content {
  padding: 0.9rem 1rem 1rem;
}

.service-title {
  font-size: 1rem;
  font-weight: 600;
  margin: 0 0 0.35rem;
}

.service-body {
  font-size: 0.9rem;
  color: #4b5563;
}

.service-note {
  margin-top: 1.6rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.85rem;
  background-color: #fef9c3;
  font-size: 0.85rem;
  color: #713f12;
}

/* Testimonial */

.testimonial {
  margin-top: 1.8rem;
  border-radius: 1rem;
  background-color: #0f172a;
  color: #e5e7eb;
  padding: 1.4rem 1.5rem;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

.testimonial::before {
  content: "\201C";
  position: absolute;
  font-size: 4rem;
  color: rgba(148, 163, 184, 0.25);
  top: -1.1rem;
  left: 0.6rem;
}

.testimonial-footer {
  margin-top: 0.7rem;
  font-size: 0.85rem;
  color: #cbd5f5;
}

/* Contact */

.contact-section {
  background: linear-gradient(135deg, #f8fafc, #eff6ff);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: 1.75rem;
  margin-top: 1.5rem;
}

.contact-card {
  background-color: white;
  border-radius: 1rem;
  padding: 1.2rem 1.3rem 1.35rem;
  border: 1px solid #e2e8f0;
}

.contact-card-media {
  padding: 0.4rem;
}

.contact-image {
  border-radius: 0.9rem;
  height: 100%;
  object-fit: cover;
}

.contact-card p {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.7rem;
}

.contact-details {
  font-size: 0.95rem;
  margin-bottom: 0.7rem;
}

.contact-details a {
  color: var(--blue);
  font-weight: 600;
}

.contact-badge {
  display: inline-block;
  margin-bottom: 0.4rem;
  font-size: 0.78rem;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  background-color: #e0f2fe;
  color: #0f172a;
}

form {
  display: grid;
  gap: 0.7rem;
  margin-top: 0.4rem;
}

label {
  font-size: 0.85rem;
  color: #4b5563;
  margin-bottom: 0.1rem;
  display: block;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select,
textarea {
  width: 100%;
  padding: 0.55rem 0.6rem;
  border-radius: 0.5rem;
  border: 1px solid #cbd5e1;
  font-size: 0.9rem;
  font-family: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
  background-color: white;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.15);
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.form-helper {
  font-size: 0.8rem;
  color: #64748b;
  margin-top: -0.2rem;
  margin-bottom: 0.4rem;
}

.btn-submit {
  justify-content: center;
  width: fit-content;
}

/* Footer */

footer {
  border-top: 1px solid #e2e8f0;
  padding: 1.25rem 1rem 1.5rem;
  font-size: 0.8rem;
  background-color: white;
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  color: #6b7280;
}

.non-medical-note {
  font-size: 0.78rem;
  color: #9ca3af;
}

/* Responsive */

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

  .nav-cta {
    display: inline-flex;
  }

  .hero {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 1rem;
  }

  .hero-media {
    order: -1;
  }

  .two-column,
  .services-grid,
  .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .form-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 600px) {
  section {
    padding: 2.4rem 1rem;
  }

  .hero {
    padding-bottom: 2.2rem;
  }

  .service-card {
    border-radius: 0.8rem;
  }

  .contact-card {
    padding: 1.05rem 1.1rem 1.15rem;
  }
}
