:root {
  --green: #1a6b3c;
  --green-dark: #064725;
  --gold: #f0a500;
  --ink: #13201a;
  --muted: #627067;
  --line: #dfe8e2;
  --soft: #f5faf6;
  --white: #ffffff;
  --shadow: 0 18px 42px rgba(12, 74, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

.container {
  width: min(1140px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  background: var(--green-dark);
  color: var(--white);
  font-size: 13px;
}

.topbar .container {
  display: flex;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  flex-wrap: wrap;
}

.topbar span {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 86px;
}

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

.brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.brand-text strong {
  display: block;
  color: var(--green-dark);
  font-size: clamp(18px, 4vw, 24px);
  line-height: 1.05;
  font-weight: 900;
}

.brand-text span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-toggle {
  display: none;
}

.nav {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  padding: 8px 12px;
  border-radius: 6px;
  color: var(--green-dark);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

.nav a.active,
.nav a:hover {
  background: var(--soft);
  color: var(--green);
}

.hero {
  background: var(--white);
  color: var(--ink);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-areas:
    "eyebrow card"
    "title card"
    "subtitle card"
    "actions card"
    "desc card";
  gap: 16px 48px;
  align-items: center;
  min-height: 580px;
  padding: 48px 0 36px;
}

.hero-inner > .eyebrow {
  grid-area: eyebrow;
  margin: 0;
}

.hero-title {
  grid-area: title;
  font-size: clamp(36px, 6vw, 68px);
  color: var(--green-dark);
  font-weight: 900;
  margin: 0;
  line-height: 1.1;
}

.hero-subtitle {
  grid-area: subtitle;
  font-size: clamp(16px, 2.5vw, 20px);
  color: var(--muted);
  font-weight: 700;
  margin: 0;
  line-height: 1.4;
}

.hero-desc {
  grid-area: desc;
  font-size: 16.5px;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
  max-width: 680px;
}

.hero-actions {
  grid-area: actions;
  margin: 0;
}

.hero-inner > .doctor-card {
  grid-area: card;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
  font-size: 13px;
}

h1, h2, h3 {
  margin: 0;
  line-height: 1.15;
}

h1 {
  font-size: clamp(36px, 6vw, 68px);
}

h2 {
  font-size: clamp(28px, 4vw, 44px);
}

h3 {
  font-size: 22px;
}

.hero p {
  max-width: 680px;
  font-size: 18px;
  color: var(--muted);
}

.hero-actions,
.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  min-width: 48px;
  padding: 12px 20px;
  border-radius: 6px;
  border: 2px solid transparent;
  font-weight: 800;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.button:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
}

.button:active {
  transform: translateY(1px) scale(0.98);
  filter: brightness(0.95);
}

.button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

.button.primary {
  background: var(--gold);
  color: var(--ink);
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.72);
  color: var(--white);
}

.hero .button.secondary {
  border-color: var(--green);
  color: var(--green-dark);
}

.button.whatsapp-nav-btn {
  background: #25d366;
  color: var(--white);
}

.nav-mobile-actions {
  display: none;
}

.doctor-card {
  background: var(--white);
  color: var(--ink);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 500px;
  justify-self: end;
  position: relative;
}

.doctor-card::before {
  content: "";
  position: absolute;
  top: 0;
  right: 28px;
  width: 170px;
  height: 14px;
  border-radius: 0 0 8px 8px;
  background: var(--green);
  z-index: 1;
}

.doctor-card img {
  width: 100%;
  aspect-ratio: 4 / 4.55;
  object-fit: cover;
  object-position: center top;
}

.doctor-card-content {
  padding: 22px;
}

.doctor-card-content p {
  margin: 8px 0 0;
  color: var(--muted);
}

.section {
  padding: 76px 0;
}

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

.lead-strip {
  margin-top: -18px;
  position: relative;
  z-index: 2;
}

.lead-box {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: stretch;
  background: var(--white);
  box-shadow: var(--shadow);
  border-radius: 8px;
  overflow: hidden;
}

.lead-location {
  background: var(--green);
  color: var(--white);
  padding: 24px;
}

.lead-location strong {
  display: block;
  font-size: 20px;
  margin-bottom: 8px;
}

.lead-form {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 12px;
  align-items: end;
  padding: 20px;
}

.field label {
  display: block;
  font-size: 12px;
  font-weight: 800;
  color: var(--green-dark);
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
}

.field input,
.field textarea {
  width: 100%;
  min-height: 42px;
  border: 2px solid var(--line);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 4px rgba(26, 107, 60, 0.08);
}

.field input::placeholder,
.field textarea::placeholder {
  color: rgba(19, 32, 26, 0.5);
}

.field input:invalid:not(:placeholder-shown),
.field textarea:invalid:not(:placeholder-shown) {
  border-color: #e74c3c;
}

.lead-form .button {
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.lead-form .button:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

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

.icon-service {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 10px 24px rgba(18, 64, 38, 0.06);
}

.icon-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--soft);
  color: var(--green);
  border: 2px solid var(--gold);
  font-weight: 900;
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 44px;
  align-items: center;
}

.portrait {
  border-radius: 8px;
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.lead {
  color: var(--muted);
  font-size: 18px;
}

.details-list {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.details-list li {
  padding-left: 20px;
  position: relative;
  font-weight: 700;
}

.details-list li::before {
  content: "";
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  left: 0;
  top: 11px;
}

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

.service-card,
.post-card,
.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  min-height: 100%;
  box-shadow: 0 10px 24px rgba(18, 64, 38, 0.06);
}

.service-number {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 16px;
}

.service-card p,
.post-card p,
.contact-card p {
  color: var(--muted);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(18, 64, 38, 0.06);
}

.stars {
  color: var(--gold);
  font-weight: 900;
  margin: 8px 0 14px;
}

.faq-list {
  display: grid;
  gap: 10px;
  margin-top: 34px;
}

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 18px;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 800;
  color: var(--green-dark);
  padding: 16px 0;
}

.faq-list details p {
  margin: 0 0 18px;
  color: var(--muted);
}

.page-hero {
  background: var(--green-dark);
  color: var(--white);
  padding: 72px 0;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 34px;
}

.map-wrap iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 8px;
}

.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 48px 0 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr 1fr 1fr;
  gap: 28px;
}

.footer h3 {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 14px;
}

.footer-logo {
  width: 86px;
  height: 86px;
  object-fit: contain;
  margin-bottom: 12px;
  background: var(--white);
  border-radius: 8px;
  padding: 6px;
}

.footer p,
.footer li {
  color: rgba(255, 255, 255, 0.82);
}

.footer ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 28px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
}

.floating-actions {
  display: none;
}

.floating-actions a {
  display: inline-flex;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--green);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(12, 74, 42, 0.3);
  font-weight: 900;
  font-size: 24px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.floating-actions a.whatsapp-btn {
  background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
}

.floating-actions a.whatsapp-btn:hover {
  background: linear-gradient(135deg, #20c656 0%, #0c6c56 100%);
  transform: scale(1.08);
}

.floating-actions a.call-btn {
  background: linear-gradient(135deg, #1a6b3c 0%, #064725 100%);
}

.floating-actions a.call-btn:hover {
  background: var(--green);
  transform: scale(1.08);
}

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

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

  h1 {
    font-size: clamp(32px, 5vw, 56px);
  }

  h2 {
    font-size: clamp(24px, 4vw, 40px);
  }
}

@media (max-width: 768px) {
  .container {
    width: min(100% - 20px, 1140px);
  }

  .topbar .container {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .topbar span {
    white-space: normal;
    font-size: 12px;
  }

  .header-inner {
    min-height: 70px;
    gap: 12px;
  }

  .brand img {
    width: 56px;
    height: 56px;
  }

  .brand-text strong {
    font-size: 18px;
  }

  .brand-text span {
    font-size: 10px;
  }

  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    background-color: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 20;
    min-height: 48px;
    min-width: 48px;
    -webkit-appearance: none;
    appearance: none;
    box-shadow: none;
  }
  
  .hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    position: relative;
    transition: background 0.2s ease;
    flex-shrink: 0;
  }
  
  .hamburger::before,
  .hamburger::after {
    content: "";
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-dark);
    position: absolute;
    transition: transform 0.2s ease, top 0.2s ease;
  }
  
  .hamburger::before {
    top: -8px;
  }
  
  .hamburger::after {
    top: 8px;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .nav-toggle[aria-expanded="true"] .hamburger::after {
    top: 0;
    transform: rotate(-45deg);
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 12px 30px rgba(12, 74, 42, 0.12);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 0;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 0.25s ease, transform 0.25s ease;
    z-index: 9;
  }
  
  .nav.nav-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  
  .nav a {
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    border-radius: 0;
    font-size: 16px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
  }

  .nav-mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 18px 16px;
  }

  .nav-mobile-actions .button {
    width: 100%;
  }

  .hero-inner {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 20px;
    min-height: auto;
    padding: 24px 0;
  }

  .split {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: auto;
    padding: 32px 0 24px;
  }

  .hero-inner > .doctor-card {
    order: 1;
    justify-self: center;
    max-width: 100%;
  }

  .hero-inner > .eyebrow {
    order: 2;
    margin: 0;
  }

  .hero-inner > .hero-title {
    order: 3;
    font-size: clamp(28px, 5vw, 42px);
    line-height: 1.1;
  }

  .hero-inner > .hero-subtitle {
    order: 4;
    font-size: 16px;
  }

  .hero-inner > .hero-actions {
    order: 5;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 10px;
    width: 100%;
  }

  .hero-inner > .hero-desc {
    order: 6;
    font-size: 15px;
    line-height: 1.5;
  }

  .lead-box {
    grid-template-columns: 1fr;
  }

  .lead-location {
    padding: 18px;
  }

  .lead-form {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding: 18px;
  }

  .lead-form .button {
    grid-column: 1 / -1;
  }

  .icon-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .icon-service {
    padding: 16px 12px;
  }

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

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

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

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

  .floating-actions {
    display: grid;
    position: fixed;
    right: 12px;
    bottom: 80px;
    gap: 8px;
    z-index: 20;
  }

  .floating-actions a {
    width: 48px;
    height: 48px;
    font-size: 22px;
  }

  .section {
    padding: 48px 0;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 16px, 1140px);
  }

  .topbar .container {
    gap: 6px;
  }

  .topbar span {
    font-size: 11px;
  }

  .header-inner {
    min-height: 60px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

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

  .brand-text span {
    font-size: 9px;
  }

  .nav {
    gap: 2px;
  }

  .nav a {
    padding: 6px 8px;
    font-size: 12px;
  }

  .hero-inner {
    gap: 20px;
    padding: 20px 0 16px;
  }

  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 22px;
  }

  .hero p {
    font-size: 15px;
  }

  .hero-actions,
  .actions {
    flex-direction: column;
    gap: 10px;
  }

  .button {
    width: 100%;
    min-height: 44px;
    font-size: 14px;
  }

  .doctor-card {
    max-width: 100%;
  }

  .lead-location strong {
    font-size: 16px;
  }

  .lead-location {
    padding: 16px;
  }

  .lead-form {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
  }

  .field label {
    font-size: 11px;
  }

  .field input,
  .field textarea {
    min-height: 40px;
    padding: 9px 10px;
    font-size: 13px;
  }

  .icon-row {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 20px;
  }

  .icon-service {
    padding: 14px 10px;
  }

  .icon-mark {
    width: 48px;
    height: 48px;
    font-size: 20px;
    margin-bottom: 8px;
  }

  .split {
    gap: 24px;
  }

  .portrait {
    aspect-ratio: 4 / 5;
  }

  .details-list {
    gap: 8px;
    margin: 16px 0 0;
  }

  .details-list li {
    font-size: 14px;
  }

  .footer {
    padding: 32px 0 16px;
  }

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

  .footer-logo {
    width: 64px;
    height: 64px;
  }

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

  .footer p,
  .footer li {
    font-size: 13px;
  }

  .floating-actions {
    right: 10px;
    bottom: 70px;
  }

  .floating-actions a {
    width: 46px;
    height: 46px;
    font-size: 20px;
  }

  .section {
    padding: 36px 0;
  }

  .eyebrow {
    font-size: 12px;
  }

  .lead {
    font-size: 16px;
  }
}



/* Modal Popup Styles */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  animation: fadeIn 0.3s ease;
}

.modal.modal-open {
  display: flex;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.modal-content {
  background: var(--white);
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(12, 74, 42, 0.15);
  max-width: 500px;
  width: 90%;
  animation: slideUp 0.4s ease;
  overflow: hidden;
}

.modal-header {
  background: linear-gradient(135deg, var(--green) 0%, var(--green-dark) 100%);
  color: var(--white);
  padding: 28px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h2 {
  margin: 0;
  font-size: 24px;
}

.modal-close {
  background: transparent;
  border: none;
  color: var(--white);
  font-size: 32px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  padding: 0;
}

.modal-close:hover {
  transform: rotate(90deg);
}

.modal-body {
  padding: 28px 24px;
}

.modal-message {
  margin: 0 0 20px;
  font-size: 16px;
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

.submission-details {
  background: var(--soft);
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 20px;
}

.detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  font-weight: 700;
  color: var(--green-dark);
  font-size: 14px;
}

.detail-value {
  color: var(--ink);
  font-weight: 600;
  text-align: right;
  word-break: break-word;
  max-width: 200px;
}

.modal-info {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
  margin: 16px 0 0;
}

.modal-footer {
  padding: 20px 24px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: center;
}

.modal-footer .button {
  min-width: 140px;
}

@media (max-width: 768px) {
  .modal-content {
    width: 90%;
    max-width: 100%;
    border-radius: 16px;
  }

  .modal-header h2 {
    font-size: 22px;
  }

  .modal-header {
    padding: 20px 18px;
  }

  .modal-body,
  .modal-footer {
    padding: 18px 16px;
  }

  .detail-value {
    max-width: 160px;
  }

  .modal-footer .button {
    min-width: 120px;
    font-size: 13px;
  }
}

@media (max-width: 560px) {
  .modal-content {
    width: 92%;
    border-radius: 14px;
  }

  .modal-header h2 {
    font-size: 18px;
  }

  .modal-header {
    padding: 16px 14px;
  }

  .modal-body {
    padding: 16px 14px;
  }

  .modal-footer {
    padding: 14px 12px;
    flex-direction: column;
  }

  .modal-message {
    font-size: 14px;
  }

  .submission-details {
    padding: 14px;
    border-radius: 10px;
  }

  .detail-item {
    padding: 10px 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .detail-label {
    font-size: 12px;
  }

  .detail-value {
    max-width: 100%;
    font-size: 14px;
  }

  .modal-info {
    font-size: 12px;
  }

  .modal-footer .button {
    min-width: auto;
    width: 100%;
    font-size: 12px;
  }
}

/* Treatment Expertise styling */
.expertise-section {
  border-top: 1px solid var(--line);
  padding-top: 48px;
  margin-top: 48px;
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.expertise-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 24px;
  box-shadow: 0 8px 20px rgba(18, 64, 38, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.expertise-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(12, 74, 42, 0.08);
}

.expertise-card h3 {
  color: var(--green-dark);
  font-size: 18px;
  margin: 0 0 16px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--gold);
}

.expertise-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.expertise-list li {
  font-size: 13.5px;
  color: var(--muted);
  padding-left: 14px;
  position: relative;
  line-height: 1.4;
}

.expertise-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: bold;
}

@media (max-width: 1024px) {
  .expertise-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}

@media (max-width: 560px) {
  .expertise-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  
  .expertise-card {
    padding: 18px;
  }
}
