/* =========================
   COLOR SYSTEM (YOUR PALETTE)
   ========================= */
:root {
  --cream: #EEE7D3; /* Sweet Corn */
  --taupe: #B09A82; /* Incense */
  --beige: #E7D6BE; /* Pastel Rose Tan */
  --gold:  #D6BF9D; /* Marzipan */
  --olive: #796E50; /* Gothic Olive */

  --text:  #333333;
}

/* =========================
   FONTS
   ========================= */
@font-face {
  font-family: "TAN Aegean";
  src: url("fonts/TAN-Aegean-Regular.woff2") format("woff2"),
       url("fonts/TAN-Aegean-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

.hero-title,
.hero-kicker,
h1, h2, h3 {
  font-family: "TAN Aegean", serif;
  letter-spacing: 0.5px;
}

/* =========================
   SCROLL REVEAL (Apple-like)
   ========================= */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 900ms ease, transform 900ms ease;
  will-change: opacity, transform;
}

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

/* Optional: slightly smoother on large screens */
@media (min-width: 900px) {
  .reveal {
    transform: translateY(28px);
  }
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* =========================
   GLOBAL
   ========================= */

.section-divider {
  width: 100px;
  height: 2px;
  background: rgba(121,110,80,0.4);
  margin: 0 auto 32px;
}

html {
  background-color: var(--cream); /* SAME as header */
}

html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Arial, sans-serif;
  background-color: var(--cream);
  color: var(--text);
}

main {
  margin: 0;
  padding: 0;
}

/* =========================
   HEADER / TOP BAR
   ========================= */
header.top-bar {
  position: sticky;
  top: 0;
  z-index: 10000;

  display: flex;
  justify-content: space-between;
  align-items: center;

  padding: 18px 24px;
  box-sizing: border-box;

  background: rgba(238, 231, 211, 0.95); /* var(--cream) with opacity */
  backdrop-filter: blur(6px);
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 24px;
  background-color: var(--cream);
}

.logo {
  height: 36px;
  margin: 0;
  font-size: 20px; /* harmless if logo is an image; kept from your file */
  margin-left: 12px;
}

.burger-btn {
  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--olive);
}

/* =========================
   DESKTOP TOP NAV (fills header)
   ========================= */

.top-nav{
  display: flex;
  align-items: center;
  gap: 32px;
  margin-right: 12px;   /* balances logo offset */
}

.top-nav .nav-link{
  text-decoration: none;
  color: var(--text);
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 17px;
  letter-spacing: 0.3px;
  opacity: 0.92;
  position: relative;
  padding: 8px 18px;
  transition: opacity 0.2s ease;

}

.top-nav .nav-link:hover{
  opacity: 1;
}

/* subtle underline like your overlay menu */
.top-nav .nav-link::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--taupe);
  transition: width 0.25s ease;
}

.top-nav .nav-link:hover::after{
  width: 100%;
}

/* CTA style (optional, still matches your palette) */
/* Make Book Appointment behave like other nav items */
.top-nav .nav-cta{
  position: relative;
  padding: 8px 0;
  border: none;
  background: none;
}

/* underline for Book Appointment */
.top-nav .nav-cta::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--taupe);
  transition: width 0.3s ease;
}

.top-nav .nav-cta:hover::after,
.top-nav .nav-cta.active::after{
  width: 100%;
}

/* Responsive: desktop shows nav, mobile shows burger */
@media (max-width: 900px){
  .top-nav{ display: none; }
  .burger-btn{ display: block; }
}

@media (min-width: 901px){
  .burger-btn{ display: none; }
}

/* =========================
   OVERLAY MENU
   ========================= */
.overlay-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;

  background: var(--cream);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.overlay-menu.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 24px;
  right: 24px;

  font-size: 26px;
  background: none;
  border: none;
  cursor: pointer;

  z-index: 1001;
  pointer-events: auto;
  color: var(--olive);
}

/* CENTERED MENU */
.menu-content {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 28px;
}

.menu-content a {
  position: relative;
  text-decoration: none;
  font-size: 22px;
  color: var(--olive);
  letter-spacing: 1px;
  padding: 4px 0;
  transition: color 0.3s ease, opacity 0.3s ease;
  transition-delay: 0.05s;
}

/* Underline effect */
.menu-content a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 1px;
  background-color: var(--taupe);
  transition: width 0.35s ease;
}

.menu-content a:hover::after {
  width: 100%;
}

.menu-content a:hover {
  opacity: 0.8;
}

/* Fade-up animation on open */
.overlay-menu.active .menu-content a {
  opacity: 0;
  transform: translateY(10px);
  animation: fadeUp 0.45s ease forwards;
}

.overlay-menu.active .menu-content a:nth-child(1) { animation-delay: 0.10s; }
.overlay-menu.active .menu-content a:nth-child(2) { animation-delay: 0.18s; }
.overlay-menu.active .menu-content a:nth-child(3) { animation-delay: 0.26s; }
.overlay-menu.active .menu-content a:nth-child(4) { animation-delay: 0.34s; }
.overlay-menu.active .menu-content a:nth-child(5) { animation-delay: 0.42s; }
.overlay-menu.active .menu-content a:nth-child(6) { animation-delay: 0.50s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* =========================
   (LEGACY) DROPDOWN MENU STYLES
   kept to avoid breaking anything
   ========================= */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0f766e;
  padding: 16px 24px;
  color: white;
}

.menu-container {
  position: relative;
}

.menu-btn {
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

.dropdown {
  display: none;
  position: absolute;
  right: 0;
  top: 48px;
  background-color: white;
  min-width: 180px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  border-radius: 6px;
  overflow: hidden;
  z-index: 100;
}

.dropdown a {
  display: block;
  padding: 12px 16px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.dropdown a:hover {
  background-color: #f3f4f6;
}

.dropdown.show {
  display: block;
}

header h1 {
  margin: 0;
  font-size: 22px;
}

/* =========================
   HERO SECTION
   ========================= */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 600px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* keep your final overlay behavior (darken image) */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0, 0, 0, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;

  max-width: 900px;
  padding: 90px 80px;
  color: var(--cream);
}

/* Base hero typography */
.hero-kicker {
  margin: 0 0 18px 0;
  font-size: 26px;
  font-weight: 500;
  color: rgba(176, 154, 130, 0.85);
}

.hero-title {
  margin: 0 0 22px 0;
  font-size: 64px;
  line-height: 1.05;
  letter-spacing: 1px;
  color: var(--cream);
}

.hero-desc {
  max-width: 680px;
  margin: 0 0 28px 0;
  font-size: 16px;
  line-height: 1.65;
  color: rgba(231, 214, 190, 0.85);
}

.hero-kicker,
.hero-title,
.hero-desc {
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
}

/* Your “bigger” hero overrides (kept, just using variables) */
.hero .hero-kicker {
  font-family: "Urbanist", system-ui, -apple-system, sans-serif;
  font-size: 34px;
  font-weight: 500;
  color: var(--beige) !important;
  margin-bottom: 10px;
}

.hero .hero-title {
  font-family: "TAN Aegean", serif;
  font-size: 65px;
  line-height: 1.05;
  letter-spacing: 1.2px;
  color: var(--cream) !important;
  margin-bottom: 20px;
}

.hero .hero-desc {
  font-family: "Urbanist", system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.7;
  max-width: 680px;
  color: var(--beige) !important;
  margin-top: 8px;
}

.hero .hero-kicker,
.hero .hero-title,
.hero .hero-desc {
  text-shadow: 0 2px 10px rgba(0,0,0,0.25);
}

@media (max-width: 768px) {
  .hero .hero-kicker { font-size: 22px; }
  .hero .hero-title  { font-size: 35px; }
  .hero .hero-desc   { font-size: 15px; }
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-btn {
  background: #0f766e;
  color: white;
  border: none;
  padding: 12px 18px;
  border-radius: 8px;
  cursor: pointer;
}

.hero-btn.secondary {
  background: rgba(255, 255, 255, 0.18);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.hero-btn:hover {
  opacity: 0.9;
}

.hero h2 {
  margin-top: 0;
  font-size: 24px;
}

.hero p {
  line-height: 1.6;
  color: #555;
}

/* =========================
   ACTIONS (kept)
   ========================= */
.actions {
  margin-top: 24px;
}

.actions button {
  background-color: #0f766e;
  color: white;
  border: none;
  padding: 12px 20px;
  margin-right: 12px;
  border-radius: 6px;
  font-size: 14px;
  cursor: pointer;
}

.actions button.secondary {
  background-color: #e5e7eb;
  color: #333;
}

.actions button:hover {
  opacity: 0.9;
}

/* =========================
   FOOTER
   ========================= */
footer {
  text-align: center;
  padding: 20px;
  color: #888;
  font-size: 13px;
}

/* =========================
   WHATSAPP BUTTON
   ========================= */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;

  width: 58px;
  height: 58px;
  background-color: #25d366;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
  z-index: 100000;

  animation: wa-pulse 2.5s infinite;
}

/* =========================
   WHAT WE DO
   ========================= */

.what-we-do{
  background: var(--cream); /* peach like your reference */
  padding: 80px 60px 48px;
}

.what-we-do-title{
  margin: 0 0 48px;
  font-family: "TAN Aegean", serif;
  font-size: 64px;
  letter-spacing: 1px;
  color: #2b2b2b;
  text-align: center;
  margin-bottom: 20px;
}

/* GRID */
.what-we-do-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

/* CARD */
.wwd-card{
  position: relative;
  min-height: 520px;
  padding: 48px 36px;
  background:
    linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.55)),
    var(--bg) center / cover no-repeat;

  color: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
  cursor: pointer;
}

/* Hover effect */
.wwd-card:hover{
  transform: scale(1.05);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    var(--bg) center / cover no-repeat;
}

/* Softer, luxury hover */
.wwd-card.reveal:hover {
  transform: translateY(-4px) scale(1.015);
  box-shadow: 0 14px 32px rgba(0,0,0,0.22);
}

/* Title */
.wwd-card h3{
  margin: 0 0 20px;
  font-family: "TAN Aegean", serif;
  font-size: 36px;
  line-height: 1.1;
  text-align: center;
}

/* Divider line */
.wwd-line{
  display: block;
  width: 80px;
  height: 2px;
  background: #c77a3a;
  margin: 0 auto 26px;
}

/* Description */
.wwd-card p{
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  opacity: 0.95;
}

/* Button */
.wwd-btn{
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 26px;

  border: 2px solid #f2c9b6;
  border-radius: 999px;
  color: #f2c9b6;
  text-decoration: none;
  font-size: 14px;
  letter-spacing: 1px;

  transition: background 0.3s ease, color 0.3s ease;
}

.wwd-btn:hover{
  background: #f2c9b6;
  color: #2b2b2b;
}

.view-all-treatments {
  text-align: center;
  margin-top: 56px;
}

.view-all-btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 999px;
  border: 2px solid #c7b089;
  color: #6b5f4b;
  font-size: 15px;
  letter-spacing: 0.5px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.view-all-btn:hover {
  background: #c7b089;
  color: #fff;
}

/* =========================
   OUR DOCTORS (STACKED)
   ========================= */

.doctor-section {
  padding: 25px 24px;
  background: var(--cream);
  overflow: auto;
}

.doctor-wrapper {
  max-width: 1200px;
  margin: 0 auto;
}

/* Each doctor row */
.doctor-row {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 80px;
  margin-top: 54px;
}

/* Image */
.doctor-image {
  overflow: hidden;                 /* clip image cleanly */
  background: var(--beige);         /* keep your beige */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;

  border-radius: 20px;              /* luxury soft corner */

  box-shadow:
    0 18px 40px rgba(0,0,0,0.12),   /* soft outer depth */
    inset 0 0 0 1px rgba(255,255,255,0.35); /* subtle inner edge */
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-height: 580px;
  display: block;

}

/* Text */
.doctor-content {
  max-width: 420px;
}

.doctor-label {
  display: inline-block;
  margin-bottom: 12px;
  font-size: 13px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(47,47,47,0.55);
  font-family: "Urbanist", system-ui, sans-serif;
}

.doctor-name {
  margin: 0 0 12px 0;
  font-family: "TAN Aegean", serif;
  font-size: 46px;
  color: #2b2b2b;
  line-height: 1.05;
}

.doctor-degree {
  margin: 0 0 20px 0;
  font-size: 16px;
  color: rgba(47,47,47,0.7);
  font-family: "Urbanist", system-ui, sans-serif;
}

.doctor-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(47,47,47,0.75);
  font-family: "Urbanist", system-ui, sans-serif;
}

.meet-doctors-title {
  margin: 0 0 64px 0;
  font-family: "TAN Aegean", serif;
  font-size: 56px;
  color: #2b2b2b;
  line-height: 1.05;
  text-align: center;
  margin-bottom: 20px;

}

/* Mobile */
@media (max-width: 900px) {
  .doctor-row {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .doctor-image img {
    height: 420px;
  }

  .doctor-name {
    font-size: 38px;
  }

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

/* =========================
   TECHNOLOGY PARTNERS
   ========================= */

.tech-partners {
  background: var(--olive); /* taupe like reference image */
  padding: 90px 24px 110px;
  text-align: center;
}

.tech-title {
  margin: 0 0 14px;
  font-family: "TAN Aegean", serif;
  font-size: 56px;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.95);
}

.tech-subtitle {
  max-width: 820px;
  margin: 0 auto 70px;
  font-family: "Urbanist", system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}

/* 3x3 grid */
.tech-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px 80px;
  align-items: center;
  justify-items: center;
}

.tech-grid img {
  max-height: 52px;
  width: auto;
  object-fit: contain;

  /* luxury muted look */
  filter: brightness(0) invert(1);
  opacity: 0.78;

  transition: transform 0.35s ease, filter 0.35s ease, opacity 0.35s ease;
  transform: translateY(0) scale(1);
}

.tech-grid img:hover {
  opacity: 1;
  transform: translateY(-6px) scale(1.05);
}

/* Normalize visual weight for smaller logos */
.tech-grid img.logo-small {
  transform: translateY(0) scale(1.30);
}

.tech-grid img.logo-small:hover {
  transform: translateY(-6px) scale(1.30);
}

/* Responsive */
@media (max-width: 900px) {
  .tech-grid {
    gap: 46px 40px;
  }
}

@media (max-width: 600px) {
  .tech-title { font-size: 40px; }
  .tech-subtitle { font-size: 16px; margin-bottom: 48px; }

  .tech-grid {
    grid-template-columns: repeat(2, 1fr);
    padding: 0 20px;
  }

  .tech-grid img {
    max-width: 100%;
    max-height: 45px;
    width: auto;
    height: auto;
  }
}

/* =========================
   FOOTER BAR
   ========================= */

.site-footer {
  background: var(--cream); /* warm dark taupe/grey */
  padding: 34px 28px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 42px;
}

.footer-brand-text {
  font-family: "TAN Aegean", serif;
  font-size: 46px;
  letter-spacing: 0.5px;
  color: var(--gold);
}

.footer-brand {
  display: flex;
  justify-content: center;
}

.footer-socials {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

.footer-logo {
  height: 56px;          /* slightly smaller than header */
  width: auto;
  display: block;
  opacity: 0.95;
}

.footer-socials a {
  width: 48px;
  height: 48px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.25);
  transition: transform 0.25s ease, background 0.25s ease;
  color: rgba(47,47,47,0.7);
  border: none;
  font-size: 36px;

}

.footer-socials img {
  width: 44px;
  height: 44px;
  filter: brightness(0);
  opacity: 0.9;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,0.06);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 54px;
  justify-content: end;
}

.footer-title {
  font-size: 20px;
  color: rgba(47,47,47,0.7);
  margin-bottom: 10px;
  font-family: "Urbanist", system-ui, sans-serif;
}

.footer-text {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(47,47,47,0.7);
  font-family: "Urbanist", system-ui, sans-serif;
}

.footer-rights {
  margin-top: 42px; /* adjust: 16–32px */
}

footer a i,
footer a svg {
  color: var(--gold) !important;
  fill: var(--gold)!important;
}

/* Force social icons to match footer text color */
footer svg,
footer svg path {
  fill: var(--gold) !important;
  stroke: var(--gold) !important;
}

footer a:hover svg {
  opacity: 0.85;
  transform: translateY(-2px);
  transition: all 0.25s ease;
}

/* Desktop only - shift socials left for better centering */
@media (min-width: 901px) {
  .footer-socials {
    transform: translateX(-80px);
  }
}

/* Mobile */
@media (max-width: 900px) {
  .footer-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 22px;
  }

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

  .footer-brand-text {
    font-size: 40px;
  }
}

/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 1200px){
  .what-we-do-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px){
  .what-we-do{
    padding: 60px 24px;
  }

  .what-we-do-title{
    font-size: 42px;
  }

  .what-we-do-grid{
    grid-template-columns: 1fr;
  }

  .wwd-card{
    min-height: 460px;
  }
}

@keyframes wa-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70%  { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Tooltip text */
.wa-tooltip {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.whatsapp-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(0);
}

.whatsapp-float:hover {
  transform: scale(1.08) translateY(-3px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.35);
}

/* Fix doctor image layout on windowed/mobile */
@media (max-width: 900px) {

  .doctor-row{
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .doctor-image{
    width: 100%;
  }

  /* Make image fill the width, no awkward centering */
  .doctor-image img{
    width: 100%;
    height: auto;
    max-height: none;
    object-fit: cover;          /* fills nicely */
    object-position: top;       /* keep head visible */
  }
}

/* Active nav item */
.top-nav a.active{
  font-weight: 600; /* bold but still elegant */
}

/* underline stays visible for active */
.top-nav a.active::after{
  width: 100%;
}

/* =========================
   ENHANCED MOBILE RESPONSIVENESS
   ========================= */

/* Hero section mobile improvements */
@media (max-width: 900px) {
  .hero {
    height: 70vh;
    min-height: 500px;
  }
  
  .hero-content {
    padding: 60px 32px;
  }
  
  .hero-kicker {
    font-size: 22px;
  }
  
  .hero-title {
    font-size: 52px;
    line-height: 1.1;
  }
  
  .hero-desc {
    font-size: 16px;
    line-height: 1.6;
  }
}

@media (max-width: 640px) {
  .hero {
    height: 60vh;
    min-height: 450px;
  }
  
  .hero-content {
    padding: 40px 24px;
  }
  
  .hero-kicker {
    font-size: 20px;
    margin-bottom: 12px;
  }
  
  .hero-title {
    font-size: 40px;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
    line-height: 1.15;
  }
  
  .hero-desc {
    font-size: 16px;
    max-width: 100%;
    line-height: 1.6;
  }
  
  /* What We Do section */
  .what-we-do-title {
    font-size: 48px !important;
  }
  
  /* Treatment cards mobile improvements */
  .wwd-card {
    min-height: 420px;
    padding: 36px 28px;
  }
  
  .wwd-card h3 {
    font-size: 32px;
    margin-bottom: 14px;
  }
  
  .wwd-card p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  
  .wwd-btn {
    font-size: 15px;
    padding: 13px 28px;
  }
  
  /* Doctor section mobile improvements */
  .meet-doctors-title {
    font-size: 42px;
    margin-bottom: 20px;
  }
  
  .doctor-name {
    font-size: 36px;
    margin-bottom: 10px;
  }
  
  .doctor-degree {
    font-size: 16px;
    margin-bottom: 16px;
  }
  
  .doctor-desc {
    font-size: 16px;
    line-height: 1.7;
  }
  
  /* Tech partners mobile improvements */
  .tech-partners {
    padding: 60px 24px 80px;
  }
  
  .tech-title {
    font-size: 38px;
  }
  
  .tech-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
    line-height: 1.6;
  }
  
  /* View all button mobile */
  .view-all-btn {
    font-size: 16px;
    padding: 14px 32px;
  }
  
  /* Footer mobile improvements */
  .footer-inner {
    padding: 40px 24px;
  }
  
  .footer-title {
    font-size: 18px;
    margin-bottom: 10px;
  }
  
  .footer-text {
    font-size: 15px;
    line-height: 1.6;
  }
  
  /* Navigation mobile */
  .top-nav a {
    font-size: 16px;
  }
}


/**/