/* ===========================
   KAV Dental — Premium Design
   =========================== */
:root {
  --blue: #0F4C81;
  --blue2: #2F80ED;
  --teal: #1ABC9C;
  --bg: #F7FAFC;
  --dark: #1A1A1A;
  --grey: #6B7280;
  --green: #22C55E;
  --glass: rgba(255, 255, 255, .72);
  --shadow: 0 8px 32px rgba(15, 76, 129, .10);
  --radius: 16px;
  --transition: .35s cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--dark);
  background: var(--bg);
  overflow-x: hidden;
  line-height: 1.7
}

h1,
h2,
h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.25
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px
}

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--transition), transform .7s var(--transition)
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0)
}

.reveal[style*="--delay"] {
  transition-delay: var(--delay)
}

/* ── Button system ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s
}

.btn--primary {
  background: linear-gradient(135deg, var(--blue), var(--blue2));
  color: #fff;
  box-shadow: 0 4px 20px rgba(15, 76, 129, .25)
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(15, 76, 129, .35)
}

.btn--secondary {
  background: var(--glass);
  color: var(--blue);
  border: 2px solid var(--blue);
  backdrop-filter: blur(8px)
}

.btn--secondary:hover {
  background: var(--blue);
  color: #fff
}

.btn--whatsapp {
  background: var(--green);
  color: #fff
}

.btn--whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(34, 197, 94, .35)
}

.btn--full {
  width: 100%;
  justify-content: center;
  font-size: 1.05rem;
  padding: 16px
}

.btn--emergency {
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  font-size: .85rem;
  padding: 10px 22px
}

/* Ripple */
.ripple {
  position: relative;
  overflow: hidden
}

.ripple .ripple-circle {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, .35);
  transform: scale(0);
  animation: rippleAnim .6s linear
}

@keyframes rippleAnim {
  to {
    transform: scale(4);
    opacity: 0
  }
}

/* ═══════════════ HEADER ═══════════════ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 12px 0;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s
}

.header.scrolled {
  background: var(--glass);
  backdrop-filter: blur(14px);
  box-shadow: var(--shadow)
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #fff
}

.logo__name {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  color: #fff;
  transition: color .3s
}

.logo__tag {
  display: block;
  font-size: .65rem;
  color: rgba(255, 255, 255, .8);
  font-family: 'Manrope', sans-serif;
  letter-spacing: .5px;
  transition: color .3s
}

/* Logo SVG default: white fill */
.logo__icon path,
.logo__icon ellipse {
  transition: fill .3s
}

.logo__icon path:first-child {
  fill: #fff
}

.logo__icon path:nth-child(2) {
  fill: rgba(255, 255, 255, .7)
}

.logo__icon ellipse {
  fill: var(--blue)
}

/* After scroll: switch to branded colors */
.header.scrolled .logo__name {
  color: var(--blue)
}

.header.scrolled .logo__tag {
  color: var(--grey)
}

.header.scrolled .logo__icon path:first-child {
  fill: var(--blue)
}

.header.scrolled .logo__icon path:nth-child(2) {
  fill: var(--teal)
}

.header.scrolled .logo__icon ellipse {
  fill: #fff
}

.nav {
  display: flex;
  gap: 28px;
  align-items: center
}

.nav__link {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  color: #fff;
  position: relative;
  transition: color .3s
}

.nav__link:hover {
  color: var(--teal)
}

.header.scrolled .nav__link {
  color: var(--dark)
}

.header.scrolled .nav__link:hover {
  color: var(--blue)
}

.nav__link--cta {
  background: var(--blue);
  color: #fff !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-size: .85rem
}

.nav__link--cta:hover {
  background: var(--blue2)
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 8px
}

.menu-toggle span {
  width: 24px;
  height: 2.5px;
  background: var(--dark);
  border-radius: 4px;
  transition: transform .3s
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px)
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px)
}

/* ═══════════════ HERO ═══════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 120px 0 80px
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11, 61, 110, .78) 0%, rgba(15, 76, 129, .72) 40%, rgba(26, 188, 156, .55) 100%)
}

.hero__shapes {
  position: absolute;
  inset: 0;
  overflow: hidden
}

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: .18;
  animation: floatShape 8s ease-in-out infinite;
  will-change: transform
}

.shape--1 {
  width: 400px;
  height: 400px;
  background: var(--teal);
  top: -100px;
  right: -100px;
  animation-delay: 0s
}

.shape--2 {
  width: 300px;
  height: 300px;
  background: var(--blue2);
  bottom: -80px;
  left: -80px;
  animation-delay: 2s
}

.shape--3 {
  width: 200px;
  height: 200px;
  background: #fff;
  top: 40%;
  left: 60%;
  animation-delay: 4s
}

@keyframes floatShape {

  0%,
  100% {
    transform: translate(0, 0)
  }

  50% {
    transform: translate(30px, -30px)
  }
}

.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 680px
}

.hero__title {
  font-size: clamp(2rem, 5vw, 3.4rem);
  margin-bottom: 20px;
  text-shadow: 0 2px 12px rgba(0, 0, 0, .35)
}

.hero__sub {
  font-size: 1.15rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, .25);
  opacity: .88;
  margin-bottom: 36px;
  max-width: 520px
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

/* ═══════════════ TRUST ═══════════════ */
.trust {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10
}

.trust__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px
}

.trust__card {
  background: var(--glass);
  backdrop-filter: blur(12px);
  border-radius: var(--radius);
  padding: 32px 20px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, .5);
  transition: transform .3s
}

.trust__card:hover {
  transform: translateY(-6px)
}

.trust__icon {
  font-size: 2rem;
  margin-bottom: 10px
}

.trust__number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--blue);
  display: block
}

.trust__label {
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  color: var(--grey);
  margin-top: 4px
}

/* ═══════════════ SECTION TITLES ═══════════════ */
.section__title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  text-align: center;
  margin-bottom: 10px;
  color: var(--blue)
}

.section__title--left {
  text-align: left
}

.section__sub {
  text-align: center;
  color: var(--grey);
  margin-bottom: 48px;
  font-size: 1.05rem
}

/* ═══════════════ TREATMENTS ═══════════════ */
.treatments {
  padding: 100px 0
}

.treatments__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.treat-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  border: 1px solid rgba(15, 76, 129, .06);
  cursor: pointer;
  transition: transform .3s, box-shadow .3s
}

.treat-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(15, 76, 129, .15)
}

.treat-card__icon {
  font-size: 2.5rem;
  margin-bottom: 14px
}

.treat-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--dark)
}

.treat-card p {
  font-size: .88rem;
  color: var(--grey);
  line-height: 1.5
}

/* ═══════════════ BEFORE & AFTER ═══════════════ */
.before-after {
  padding: 80px 0;
  background: linear-gradient(180deg, var(--bg), #e8f0f8)
}

.ba-gallery {
  max-width: 700px;
  margin: 0 auto
}

.ba-gallery__card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff
}

.ba-gallery__card img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover
}

.ba-gallery__label {
  text-align: center;
  padding: 16px 20px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--blue);
  background: #fff
}

/* ═══════════════ ABOUT ═══════════════ */
.about {
  padding: 100px 0
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about__image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow)
}

.about__image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 4/3
}

.about__doctors {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px
}

.doctor-info h3 {
  font-size: 1.05rem;
  color: var(--blue);
  margin-bottom: 2px
}

.doctor-info__role {
  font-size: .85rem;
  color: var(--grey);
  font-family: 'Manrope', sans-serif
}

.about__content p {
  color: var(--grey);
  margin-bottom: 20px;
  font-size: 1.05rem
}

.about__list {
  list-style: none;
  margin-bottom: 28px
}

.about__list li {
  padding: 6px 0;
  font-size: .95rem;
  color: var(--dark)
}

/* ═══════════════ PHOTO GALLERY ═══════════════ */
.gallery {
  padding: 100px 0;
  background: var(--bg)
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px
}

.gallery__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer
}

.gallery__item--wide {
  grid-column: span 2
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease
}

.gallery__item:hover img {
  transform: scale(1.08)
}

.gallery__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .7));
  color: #fff;
  font-size: .85rem;
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity .3s, transform .3s
}

.gallery__item:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0)
}

/* ═══════════════ WHY CHOOSE ═══════════════ */
.why {
  padding: 100px 0;
  background: linear-gradient(180deg, #e8f0f8, var(--bg))
}

.why__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px
}

.why__card {
  background: #fff;
  border-radius: var(--radius);
  padding: 40px 24px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: transform .3s
}

.why__card:hover {
  transform: translateY(-6px)
}

.why__icon {
  font-size: 2.4rem;
  margin-bottom: 14px
}

.why__card h3 {
  margin-bottom: 8px;
  font-size: 1rem;
  color: var(--blue)
}

.why__card p {
  font-size: .88rem;
  color: var(--grey)
}

/* ═══════════════ REVIEWS ═══════════════ */
.reviews {
  padding: 100px 0
}

.reviews__carousel {
  position: relative;
  overflow: hidden;
  max-width: 900px;
  margin: 0 auto
}

.reviews__track {
  display: flex;
  transition: transform .5s ease
}

.review-card {
  min-width: 100%;
  padding: 40px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid rgba(15, 76, 129, .05)
}

.review-card__stars {
  font-size: 1.3rem;
  margin-bottom: 16px
}

.review-card p {
  font-size: 1.05rem;
  color: var(--dark);
  font-style: italic;
  max-width: 500px;
  margin: 0 auto 20px;
  line-height: 1.7
}

.review-card__author {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  color: var(--blue);
  display: block
}

.review-card__src {
  font-size: .78rem;
  color: var(--grey);
  display: block;
  margin-top: 4px
}

.reviews__dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px
}

.reviews__dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--grey);
  opacity: .3;
  cursor: pointer;
  transition: opacity .3s, background .3s;
  border: none
}

.reviews__dots .dot.active {
  opacity: 1;
  background: var(--blue);
  transform: scale(1.2)
}

/* ═══════════════ LOCATION ═══════════════ */
.location {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg), #e8f0f8)
}

.location__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start
}

.location__detail {
  margin-bottom: 20px
}

.location__detail strong {
  color: var(--dark);
  font-size: .95rem
}

.location__detail p {
  color: var(--grey);
  margin-top: 4px;
  font-size: .92rem
}

.location__detail a {
  color: var(--blue);
  text-decoration: none
}

/* ═══════════════ BOOKING ═══════════════ */
.booking {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--blue) 0%, #0b3d6e 100%);
  color: #fff
}

.booking .section__title {
  color: #fff
}

.booking .section__sub {
  color: rgba(255, 255, 255, .7)
}

.booking__form {
  max-width: 520px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px
}

.form__group label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  margin-bottom: 6px;
  opacity: .85
}

.form__group input,
.form__group select {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid rgba(255, 255, 255, .2);
  border-radius: 12px;
  background: rgba(255, 255, 255, .1);
  color: #fff;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border .3s;
  backdrop-filter: blur(4px)
}

.form__group input::placeholder {
  color: rgba(255, 255, 255, .45)
}

.form__group input:focus,
.form__group select:focus {
  border-color: var(--teal)
}

.form__group select option {
  color: var(--dark);
  background: #fff
}

/* ═══════════════ FOOTER ═══════════════ */
.footer {
  background: var(--dark);
  color: #fff;
  padding: 60px 0 0
}

.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 40px
}

.footer__brand p {
  color: var(--grey);
  margin-top: 8px;
  font-size: .9rem
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 8px
}

.footer__links strong,
.footer__contact strong {
  margin-bottom: 8px;
  display: block;
  font-family: 'Poppins', sans-serif
}

.footer__links a {
  color: var(--grey);
  text-decoration: none;
  font-size: .9rem;
  transition: color .2s
}

.footer__links a:hover {
  color: var(--teal)
}

.footer__contact p {
  color: var(--grey);
  font-size: .88rem;
  margin-bottom: 6px
}

.footer__contact a {
  color: var(--teal);
  text-decoration: none
}

.footer__bottom {
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 40px;
  padding: 20px 0;
  color: var(--grey);
  font-size: .82rem
}

/* ═══════════════ FLOATING WHATSAPP ═══════════════ */
.fab-whatsapp {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  text-decoration: none;
  box-shadow: 0 6px 24px rgba(34, 197, 94, .4);
  z-index: 999;
  transition: transform .3s
}

.fab-whatsapp:hover {
  transform: scale(1.1)
}

.fab-whatsapp.pulse {
  animation: waPulse .6s ease
}

@keyframes waPulse {
  0% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, .5)
  }

  70% {
    box-shadow: 0 0 0 18px rgba(34, 197, 94, 0)
  }

  100% {
    box-shadow: 0 0 0 0 rgba(34, 197, 94, 0)
  }
}

/* ═══════════════ MOBILE BAR ═══════════════ */
.mobile-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--glass);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(15, 76, 129, .1);
  padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  justify-content: center;
  gap: 6px
}

.mobile-bar__btn {
  flex: 1;
  text-align: center;
  padding: 12px 6px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .78rem;
  text-decoration: none;
  border-radius: 12px;
  color: var(--blue);
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .06);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.mobile-bar__btn--wa {
  background: var(--green);
  color: #fff
}

.mobile-bar__btn--book {
  background: var(--blue);
  color: #fff
}

/* ═══════════════ EMERGENCY BAR ═══════════════ */
.emergency-bar {
  text-align: center;
  padding: 12px 0;
  position: relative;
  z-index: 5
}

/* ═══════════════ RESPONSIVE ═══════════════ */

/* ── Tablet landscape ── */
@media (max-width: 1024px) {

  .treatments__grid,
  .why__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .treatments {
    padding: 80px 0
  }

  .why,
  .reviews,
  .booking,
  .about {
    padding: 80px 0
  }

  .location {
    padding: 80px 0
  }
}

/* ── Tablet portrait / small screens ── */
@media (max-width: 768px) {

  /* ── PERFORMANCE: disable expensive effects on mobile ── */
  .shape {
    display: none !important
  }

  .header.scrolled {
    backdrop-filter: none;
    background: rgba(255, 255, 255, .96)
  }

  .mobile-bar {
    backdrop-filter: none;
    background: rgba(255, 255, 255, .96)
  }

  .reveal {
    transition-duration: .4s
  }

  .trust__card,
  .treat-card,
  .why__card,
  .review-card {
    backdrop-filter: none
  }

  /* Header & Nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: #fff;
    flex-direction: column;
    padding: 80px 30px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, .1);
    transition: right .35s ease;
    gap: 16px;
    overflow-y: auto
  }

  .nav.open {
    right: 0
  }

  .nav .nav__link {
    color: var(--dark)
  }

  .nav .nav__link:hover {
    color: var(--blue)
  }

  .nav .nav__link--cta {
    color: #fff !important
  }

  .menu-toggle {
    display: flex
  }

  /* Hero */
  .hero {
    min-height: 85vh;
    min-height: 85dvh;
    padding: 100px 0 60px
  }

  .hero__title {
    font-size: 1.8rem
  }

  .hero__sub {
    font-size: 1rem;
    margin-bottom: 28px
  }

  .hero__cta {
    flex-direction: column;
    gap: 10px
  }

  .hero__cta .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: .9rem
  }

  /* Trust */
  .trust {
    margin-top: -30px
  }

  .trust__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px
  }

  .trust__card {
    padding: 24px 14px
  }

  .trust__number {
    font-size: 1.8rem
  }

  /* Treatments */
  .treatments {
    padding: 60px 0
  }

  .treatments__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .treat-card {
    padding: 28px 18px
  }

  /* Before & After */
  .before-after {
    padding: 60px 0
  }

  .ba-gallery {
    max-width: 100%
  }

  /* About */
  .about {
    padding: 60px 0
  }

  .about__inner {
    grid-template-columns: 1fr;
    gap: 32px
  }

  .about__image img {
    aspect-ratio: 16/10
  }

  .section__title--left {
    text-align: center
  }

  .about__doctors {
    align-items: center;
    text-align: center
  }

  /* Gallery */
  .gallery {
    padding: 60px 0
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px
  }

  .gallery__item--wide {
    grid-column: span 1
  }

  .gallery__caption {
    opacity: 1;
    transform: translateY(0);
    font-size: .75rem;
    padding: 8px 10px
  }

  /* Why Choose */
  .why {
    padding: 60px 0
  }

  .why__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
  }

  .why__card {
    padding: 28px 18px
  }

  /* Reviews */
  .reviews {
    padding: 60px 0
  }

  .review-card {
    padding: 28px 20px
  }

  .review-card p {
    font-size: .95rem
  }

  /* Location */
  .location {
    padding: 60px 0
  }

  .location__inner {
    grid-template-columns: 1fr;
    gap: 28px
  }

  .location__info {
    text-align: center
  }

  .location__info .section__title--left {
    text-align: center
  }

  .location__info .btn {
    display: inline-flex
  }

  .location__map iframe {
    height: 280px
  }

  /* Booking */
  .booking {
    padding: 60px 0
  }

  .section__sub {
    margin-bottom: 32px;
    font-size: .95rem
  }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center
  }

  .footer__links {
    align-items: center
  }

  .footer {
    padding: 48px 0 0
  }

  /* Floating elements for mobile */
  .fab-whatsapp {
    bottom: 80px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.3rem
  }

  .mobile-bar {
    display: flex
  }

  .emergency-bar {
    padding: 10px 16px;
    margin-bottom: 60px
  }

  .btn--emergency {
    font-size: .78rem;
    padding: 10px 16px
  }

  /* Add bottom padding to body so mobile bar doesn't cover content */
  body {
    padding-bottom: 70px
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {

  .container {
    padding: 0 16px
  }

  .hero {
    min-height: 80vh;
    min-height: 80dvh;
    padding: 90px 0 50px
  }

  .hero__title {
    font-size: 1.5rem
  }

  .hero__sub {
    font-size: .92rem
  }

  .trust__grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px
  }

  .trust__card {
    padding: 18px 10px
  }

  .trust__number {
    font-size: 1.5rem
  }

  .trust__icon {
    font-size: 1.6rem
  }

  .trust__label {
    font-size: .75rem
  }

  .treatments__grid,
  .why__grid {
    grid-template-columns: 1fr
  }

  .treat-card {
    padding: 24px 16px
  }

  .treat-card__icon {
    font-size: 2rem
  }

  .why__card {
    padding: 24px 16px
  }

  .review-card {
    padding: 24px 16px
  }

  .review-card p {
    font-size: .9rem;
    line-height: 1.6
  }

  .doctor-info h3 {
    font-size: .95rem
  }

  .doctor-info__role {
    font-size: .8rem
  }

  .about__content p {
    font-size: .95rem
  }

  .about__list li {
    font-size: .88rem
  }

  .booking__form {
    gap: 14px
  }

  .form__group input,
  .form__group select {
    padding: 12px 14px;
    font-size: .95rem
  }

  .mobile-bar__btn {
    padding: 10px 4px;
    font-size: .72rem;
    border-radius: 10px
  }

  .section__title {
    font-size: 1.4rem
  }

  .section__sub {
    font-size: .88rem;
    margin-bottom: 28px
  }

  .btn {
    padding: 12px 22px;
    font-size: .88rem
  }

  .btn--full {
    padding: 14px;
    font-size: .95rem
  }

  .footer__bottom {
    font-size: .75rem;
    padding: 16px 10px
  }
}

/* ── Extra small phones (360px and below) ── */
@media (max-width: 360px) {

  .hero__title {
    font-size: 1.35rem
  }

  .trust__grid {
    gap: 8px
  }

  .trust__card {
    padding: 14px 8px
  }

  .trust__number {
    font-size: 1.3rem
  }

  .mobile-bar__btn {
    font-size: .68rem;
    padding: 8px 2px
  }

  .btn {
    padding: 10px 18px;
    font-size: .82rem
  }
}

/* ── Desktop: hide mobile bar ── */
@media (min-width: 769px) {
  .mobile-bar {
    display: none !important
  }

  .fab-whatsapp {
    bottom: 32px
  }

  .emergency-bar {
    margin-bottom: 0
  }
}

/* ── Custom Hours Table & Trust Badge ── */
.hours-table {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
  background: rgba(15, 76, 129, 0.04);
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid rgba(15, 76, 129, 0.1);
}

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--dark);
  font-weight: 500;
}

.hours-row span:first-child {
  color: var(--blue);
  font-weight: 600;
}

.trust__badge-text {
  display: block;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.2;
}