/* ===== NOVEL DENTAL CLINIC DESIGN ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'Outfit', sans-serif;
  background: #FAF7F2;
  color: #2D3436;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

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

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

ul {
  list-style: none
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px
}

:root {
  --teal: #4483ab;
  --teal-light: #1A6B68;
  --coral: #E8734A;
  --coral-dark: #D35F38;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --gold: #C9A96E;
  --navy: #1A1F36;
  --text: #2D3436;
  --text-light: #636E72;
  --white: #fff;
  --shadow: 0 8px 30px rgba(0, 0, 0, .08);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, .12);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xl: 24px;
}

/* ===== FLOATING SOCIAL & BOOK BTN ===== */
.social-bar {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.social-bar a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.social-bar .fb {
  background: #3b5998;
}

.social-bar .ig {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.social-bar .ph {
  background: var(--teal);
}

.social-bar a:hover {
  transform: scale(1.1) translateX(-5px);
}

.floating-book-btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
  width: 70px;
  height: 70px;
  background: var(--coral);
  color: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  box-shadow: 0 6px 20px rgba(232, 115, 74, 0.4);
  transition: all 0.3s;
  animation: pulse-coral 2s infinite;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: var(--teal);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  padding: 10px 0;
  letter-spacing: .3px
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px
}

.top-bar a {
  color: rgba(255, 255, 255, .9);
  transition: color .3s
}

.top-bar a:hover {
  color: var(--gold)
}

.top-bar-left,
.top-bar-right {
  display: flex;
  align-items: center;
  gap: 22px
}

.top-bar i {
  margin-right: 7px;
  color: var(--coral);
  font-size: 12px
}

.top-bar-right .sep {
  width: 1px;
  height: 14px;
  background: rgba(255, 255, 255, .2)
}

/* ===== HEADER ===== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 242, .95);
  backdrop-filter: blur(20px);
  transition: all .4s;
  border-bottom: 1px solid transparent
}

.header.scrolled {
  background: rgba(255, 255, 255, .98);
  border-bottom-color: rgba(0, 0, 0, .06);
  box-shadow: 0 4px 20px rgba(0, 0, 0, .05)
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px
}

.logo img {
  height: 54px
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--teal);
  position: relative;
  transition: color .3s
}

.nav a:hover {
  color: var(--coral)
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--coral);
  transition: all .3s;
  transform: translateX(-50%);
  border-radius: 2px
}

.nav a:hover::after {
  width: 100%
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  font-weight: 600;
  font-size: 14px;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all .4s;
  font-family: 'Outfit', sans-serif;
  letter-spacing: .3px
}

.btn-coral {
  background: var(--coral);
  color: #fff;
  box-shadow: 0 6px 20px rgba(232, 115, 74, .35)
}

.btn-coral:hover {
  background: var(--coral-dark);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(232, 115, 74, .45)
}

.btn-teal {
  background: var(--teal);
  color: #fff;
  box-shadow: 0 6px 20px rgba(68, 131, 171, .25)
}

.btn-teal:hover {
  background: var(--teal-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(68, 131, 171, .35)
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, .4)
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .15);
  border-color: rgba(255, 255, 255, .7)
}

.btn-ghost {
  background: transparent;
  color: var(--teal);
  border: 2px solid var(--teal)
}

.btn-ghost:hover {
  background: var(--teal);
  color: #fff
}

.nav .btn-coral {
  padding: 11px 24px;
  font-size: 13px
}

.nav .btn-coral::after {
  display: none
}

/* ===== HAMBURGER ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--teal);
  font-size: 26px;
  cursor: pointer
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 76px;
  left: 0;
  right: 0;
  background: rgba(250, 247, 242, .98);
  backdrop-filter: blur(20px);
  padding: 16px 24px;
  border-top: 1px solid rgba(0, 0, 0, .06);
  box-shadow: var(--shadow)
}

.mobile-menu.open {
  display: block
}

.mobile-menu a {
  display: block;
  padding: 14px 0;
  color: var(--teal);
  font-size: 15px;
  font-weight: 500;
  border-bottom: 1px solid var(--cream-dark)
}

.mobile-menu a:last-child {
  border-bottom: none
}

.mobile-menu a:hover {
  color: var(--coral)
}

/* ===== HERO SLIDER ===== */
.hero-slider {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #000;
  cursor: grab
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100vh
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease, visibility 1.2s ease;
  z-index: 1
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2
}

.hero-slide.exit {
  opacity: 0;
  visibility: visible;
  z-index: 1;
  transition: opacity 1.2s ease
}

/* Ken Burns background */
.hero-slide-bg {
  position: absolute;
  inset: -20px;
  background-size: cover;
  background-position: center;
  transition: transform 8s ease-out
}

.hero-slide.active .hero-slide-bg {
  animation: kenBurns 8s ease-out forwards
}

@keyframes kenBurns {
  0% {
    transform: scale(1) translate(0, 0)
  }

  100% {
    transform: scale(1.12) translate(-1%, -1%)
  }
}

.hero-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(68, 131, 171, .82) 0%, rgba(26, 31, 54, .65) 100%);
  z-index: 2
}

/* Slide content with stagger animation */
.hero-slide-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  padding: 140px 0 160px;
  color: #fff;
  max-width: 620px
}

.hero-slide.active .hero-tag {
  animation: slideUp .7s .2s both
}

.hero-slide.active h1 {
  animation: slideUp .7s .4s both
}

.hero-slide.active p {
  animation: slideUp .7s .6s both
}

.hero-slide.active .hero-btns {
  animation: slideUp .7s .8s both
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px)
  }

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

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .15);
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  border-radius: 60px;
  margin-bottom: 24px;
  backdrop-filter: blur(8px);
  letter-spacing: 1px;
  text-transform: uppercase;
  width: fit-content
}

.hero-slide h1 {
  font-size: clamp(34px, 5.5vw, 62px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
  color: #fff
}

.hero-slide h1 .accent {
  color: var(--coral);
  font-style: italic
}

.hero-slide p {
  font-size: 17px;
  color: rgba(255, 255, 255, .75);
  margin-bottom: 36px;
  line-height: 1.8;
  max-width: 480px
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 14px
}

/* Arrow controls */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  border: 2px solid rgba(255, 255, 255, .15);
  color: #fff;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  backdrop-filter: blur(8px)
}

.hero-arrow:hover {
  background: rgba(255, 255, 255, .2);
  border-color: rgba(255, 255, 255, .4);
  transform: translateY(-50%) scale(1.08)
}

.hero-prev {
  left: 24px
}

.hero-next {
  right: 24px
}

/* Dots + Progress */
.hero-nav {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px
}

.hero-dots {
  display: flex;
  gap: 10px
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .25);
  border: 2px solid rgba(255, 255, 255, .3);
  cursor: pointer;
  transition: all .4s;
  padding: 0
}

.hero-dot.active {
  background: var(--coral);
  border-color: var(--coral);
  width: 32px;
  border-radius: 14px
}

.hero-progress {
  width: 180px;
  height: 3px;
  background: rgba(255, 255, 255, .12);
  border-radius: 4px;
  overflow: hidden
}

.hero-progress-bar {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  border-radius: 4px
}

/* Stats overlay bar at bottom */
.hero-stats-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 8;
  background: rgba(68, 131, 171, .55);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 18px 0
}

.hero-stats-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px
}

.hero-stat {
  text-align: center
}

.hero-stat-num {
  font-size: 30px;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1
}

.hero-stat-label {
  font-size: 11px;
  color: rgba(255, 255, 255, .55);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: rgba(255, 255, 255, .12)
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  line-height: 0;
  margin-top: -1px
}

.wave-divider svg {
  width: 100%;
  height: auto;
  display: block
}

/* ===== SECTION STYLES ===== */
.section {
  padding: 100px 0
}

.section-cream {
  background: var(--cream)
}

.section-white {
  background: var(--white)
}

.section-teal {
  background: var(--teal)
}

.sec-head {
  text-align: center;
  margin-bottom: 56px
}

.sec-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 16px;
  background: rgba(68, 131, 171, .06);
  color: var(--teal);
  font-size: 12px;
  font-weight: 700;
  border-radius: 60px;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 2px
}

.sec-tag i {
  color: var(--coral);
  font-size: 10px
}

.sec-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 14px
}

.sec-desc {
  color: var(--text-light);
  max-width: 560px;
  margin: 0 auto;
  font-size: 15px;
  line-height: 1.8
}

/* ===== ABOUT ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center
}

.about-imgs {
  position: relative;
  height: 500px
}

.about-img-main {
  width: 75%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2
}

.about-img-float {
  width: 55%;
  height: 250px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 3;
  border: 5px solid var(--cream)
}

.about-shape {
  position: absolute;
  top: 20px;
  right: 40px;
  width: 120px;
  height: 120px;
  background: var(--coral);
  border-radius: 50%;
  opacity: .12;
  z-index: 1
}

.about-text .sec-tag {
  margin-bottom: 14px
}

.about-text h2 {
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 800;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
  margin-bottom: 18px
}

.about-text p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
  font-size: 15px
}

.about-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px
}

.about-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  background: var(--white);
  border: 1px solid rgba(68, 131, 171, .1);
  border-radius: 60px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  transition: all .3s
}

.about-pill:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal)
}

.about-pill i {
  font-size: 14px;
  color: var(--coral)
}

.about-pill:hover i {
  color: var(--gold)
}

/* ===== BENTO SERVICES ===== */
.bento-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 20px
}

.bento-card {
  background: var(--white);
  border: 1.5px solid rgba(68, 131, 171, 0.25); /* More visible division border */
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  position: relative;
  overflow: hidden;
  transition: all .5s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: default;
  z-index: 1;
}

/* Background hover effect */
.bento-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(68, 131, 171, 0.08), rgba(232, 115, 74, 0.08));
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: -1;
}

.bento-card:hover::after {
  opacity: 1;
}

.bento-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--coral), var(--gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s
}

.bento-card:hover::before {
  transform: scaleX(1)
}

.bento-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(68, 131, 171, 0.15);
  border-color: var(--teal);
}

.bento-card.featured {
  grid-column: span 2;
  background: var(--teal);
  color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center
}

.bento-card.featured .bento-icon {
  background: rgba(255, 255, 255, .12);
  color: var(--gold)
}

.bento-card.featured h4 {
  color: #fff
}

.bento-card.featured p {
  color: rgba(255, 255, 255, .7)
}

.bento-card.featured::before {
  background: linear-gradient(90deg, var(--gold), var(--coral))
}

.bento-icon {
  width: 64px;
  height: 64px;
  background: rgba(68, 131, 171, .07);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--teal);
  margin-bottom: 20px;
  transition: all .4s
}

.bento-card:hover .bento-icon {
  background: var(--coral);
  color: #fff;
  transform: rotate(-5deg) scale(1.05)
}

.bento-card.featured:hover .bento-icon {
  background: var(--gold);
  color: var(--teal)
}

.bento-card h4 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  font-family: 'Playfair Display', serif
}

.bento-card p {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.7
}

.bento-featured-img {
  border-radius: var(--radius);
  overflow: hidden;
  height: 100%
}

.bento-featured-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius)
}

/* ===== EXPERIENCE STRIP ===== */
.exp-strip {
  background: linear-gradient(135deg, var(--teal) 0%, #0A3D3B 100%);
  padding: 70px 0;
  position: relative;
  overflow: hidden
}

.exp-strip::before {
  content: '';
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: var(--coral);
  opacity: .05;
  top: -40%;
  right: -5%
}

.exp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px
}

.exp-item {
  text-align: center;
  position: relative
}

.exp-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 50px;
  background: rgba(255, 255, 255, .12)
}

.exp-item:last-child::after {
  display: none
}

.exp-num {
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  font-family: 'Playfair Display', serif;
  line-height: 1
}

.exp-label {
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 500
}

/* ===== TEAM ===== */
.team-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 100%;
  margin: 0 auto
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, .06);
  transition: all .5s;
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

@media (max-width: 800px) {
  .team-card {
    flex-direction: column;
  }
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent
}

.team-img {
  width: 35%;
  min-height: 400px;
  overflow: hidden;
  position: relative;
  flex-shrink: 0;
}

@media (max-width: 800px) {
  .team-img {
    width: 100%;
    height: 340px;
    min-height: auto;
  }
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s
}

.team-card:hover .team-img img {
  transform: scale(1.06)
}

.team-img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(0, 0, 0, .5), transparent);
  pointer-events: none
}

.team-socials {
  position: absolute;
  bottom: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .4s
}

.team-card:hover .team-socials {
  opacity: 1;
  transform: translateY(0)
}

.team-socials a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 13px;
  transition: all .3s
}

.team-socials a:hover {
  background: var(--coral);
  color: #fff
}

.team-info {
  padding: 36px 40px;
  text-align: left;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (max-width: 800px) {
  .team-info {
    padding: 24px 28px;
  }
}

.team-info h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  font-family: 'Playfair Display', serif;
  margin-bottom: 5px;
}

.team-info .role {
  color: var(--coral);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: .5px;
  text-transform: uppercase;
}

.team-info p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 14px;
  line-height: 1.8;
}

.team-info p:last-child {
  margin-bottom: 0;
}

/* ===== TESTIMONIALS ===== */
.review-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl)
}

.review-track {
  display: flex;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1)
}

.review-slide {
  min-width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  padding: 0 4px
}

.review-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-xl);
  padding: 32px;
  position: relative;
  transition: all .3s
}

.review-card:hover {
  box-shadow: var(--shadow)
}

.review-quote {
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 48px;
  color: var(--cream-dark);
  font-family: 'Playfair Display', serif;
  line-height: 1
}

.stars {
  color: var(--gold);
  margin-bottom: 16px;
  font-size: 15px;
  letter-spacing: 2px
}

.review-card p {
  font-size: 14px;
  color: var(--text-light);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 18px
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px
}

.reviewer-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px
}

.reviewer h5 {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px
}

.reviewer span {
  font-size: 12px;
  color: var(--text-light)
}

.slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 32px
}

.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid rgba(68, 131, 171, .15);
  color: var(--teal);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s;
  font-size: 14px
}

.slider-btn:hover {
  background: var(--teal);
  color: #fff;
  border-color: var(--teal)
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--cream-dark);
  border: none;
  cursor: pointer;
  transition: all .3s
}

.dot.active {
  background: var(--coral);
  width: 28px;
  border-radius: 14px
}

/* ===== GALLERY ===== */
.gallery-section {
  background: linear-gradient(135deg, #4483ab 0%, #759cc3 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden
}

.gallery-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: #759cc3;
  border-radius: 50%;
  opacity: .12;
  filter: blur(80px)
}

.gallery-section .sec-tag {
  background: rgba(255, 255, 255, .08);
  color: var(--gold)
}

.gallery-section .sec-title {
  color: #fff
}

.gallery-section .sec-desc {
  color: rgba(255, 255, 255, .5)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 14px
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer
}

.gallery-item.tall {
  grid-row: span 2
}

.gallery-item.wide {
  grid-column: span 2
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all .7s
}

.gallery-item::after {
  content: '\\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(68, 131, 171, .55);
  color: #fff;
  font-size: 22px;
  opacity: 0;
  transition: all .4s;
  backdrop-filter: blur(2px)
}

.gallery-item:hover::after {
  opacity: 1
}

.gallery-item:hover img {
  transform: scale(1.12)
}

/* ===== CTA ===== */
.cta {
  position: relative;
  padding: 90px 0;
  background: var(--cream);
  overflow: hidden
}

.cta-inner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  border-radius: var(--radius-xl);
  padding: 70px 50px;
  text-align: center;
  position: relative;
  overflow: hidden
}

.cta-inner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, .08);
  border-radius: 50%
}

.cta-inner::after {
  content: '';
  position: absolute;
  bottom: -60px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, .06);
  border-radius: 50%
}

.cta h2 {
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
  position: relative;
  z-index: 2
}

.cta p {
  color: rgba(255, 255, 255, .85);
  font-size: 16px;
  margin-bottom: 32px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 2;
  line-height: 1.7
}

.btn-white {
  background: #fff;
  color: var(--coral);
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  position: relative;
  z-index: 2
}

.btn-white:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .18)
}

/* ===== LOCATION ===== */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: stretch
}

.contact-card {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, .06);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 26px
}

.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(68, 131, 171, .06);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--teal);
  font-size: 18px;
  transition: all .3s
}

.contact-item:hover .contact-icon {
  background: var(--coral);
  color: #fff
}

.contact-item h4 {
  color: var(--navy);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 4px
}

.contact-item p,
.contact-item a {
  color: var(--text-light);
  font-size: 14px;
  line-height: 1.6
}

.contact-item a:hover {
  color: var(--coral)
}

.map-wrap {
  border-radius: var(--radius-xl);
  overflow: hidden;
  min-height: 100%;
  box-shadow: var(--shadow)
}

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

/* ===== FAQ SECTION ===== */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: flex-start;
}

.faq-col {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.faq-item {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid rgba(68, 131, 171, 0.1);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 25px rgba(68, 131, 171, 0.08);
  border-color: rgba(68, 131, 171, 0.2);
}

.faq-item.active {
  border-color: var(--teal);
  box-shadow: 0 8px 30px rgba(68, 131, 171, 0.12);
}

.faq-q {
  width: 100%;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  transition: all 0.3s;
}

.faq-item.active .faq-q {
  color: var(--teal);
  padding-bottom: 12px;
}

.faq-q i {
  color: var(--teal);
  font-size: 14px;
  background: rgba(68, 131, 171, 0.1);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-q i {
  transform: rotate(135deg);
  background: var(--teal);
  color: #fff;
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-item.active .faq-a {
  max-height: 500px;
}

.faq-a p {
  padding: 0 24px 24px 24px;
  color: var(--text-light);
  line-height: 1.7;
  font-size: 15px;
  margin: 0;
}

/* ===== BLOG SECTION ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(68, 131, 171, 0.15);
}

.blog-img {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-img img {
  transform: scale(1.08);
}

.blog-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--teal);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 60px;
  backdrop-filter: blur(4px);
  z-index: 2;
}

.blog-content {
  padding: 30px 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-meta {
  display: flex;
  align-items: center;
  color: #8fa0a8;
  font-size: 13px;
  margin-bottom: 12px;
}

.blog-meta i {
  color: var(--coral);
  margin-right: 6px;
}

.blog-title {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.35;
}

.blog-title a {
  color: var(--navy);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-title a:hover {
  color: var(--teal);
}

.blog-excerpt {
  color: var(--text-light);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.blog-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.blog-author-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .5px;
  flex-shrink: 0;
}

.blog-author span {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.blog-link {
  display: inline-flex;
  align-items: center;
  font-weight: 600;
  font-size: 14px;
  color: var(--teal);
  text-decoration: none;
  transition: all 0.3s;
}

.blog-link i {
  font-size: 12px;
  margin-left: 6px;
  transition: transform 0.3s;
}

.blog-link:hover {
  color: var(--coral);
}

.blog-link:hover i {
  transform: translateX(4px);
}

/* ===== FOOTER ===== */
.footer {
  background: #4483ab;
  color: rgba(255, 255, 255, .7);
  padding: 70px 0 0
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
  gap: 40px
}

.footer h4 {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 22px;
  font-family: 'Playfair Display', serif;
  position: relative;
  padding-bottom: 14px
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 35px;
  height: 3px;
  background: var(--coral);
  border-radius: 2px
}

.footer p {
  font-size: 13px;
  line-height: 1.8
}

.footer-links a {
  display: block;
  font-size: 13px;
  color: rgba(255, 255, 255, .55);
  padding: 6px 0;
  transition: all .3s
}

.footer-links a:hover {
  color: var(--coral);
  padding-left: 6px
}

.footer-links a i {
  margin-right: 8px;
  font-size: 9px;
  color: var(--coral)
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.social-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, .07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .6);
  font-size: 15px;
  transition: all .3s
}

.social-icon:hover {
  background: var(--coral);
  color: #fff;
  transform: translateY(-3px)
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  margin-top: 50px;
  padding: 22px 0;
  text-align: center;
  font-size: 12px;
  color: rgba(255, 255, 255, .4)
}

/* ===== FLOATING ===== */
.social-bar {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  gap: 6px
}

.social-bar a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  border-radius: 12px 0 0 12px;
  font-size: 15px;
  transition: all .3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .15)
}

.social-bar .fb {
  background: #1877f2
}

.social-bar .ig {
  background: linear-gradient(135deg, #833ab4, #e1306c)
}

.social-bar .ph {
  background: var(--teal)
}

.floating-book-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 76px;
  height: 76px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--coral) !important;
  color: #fff !important;
  border-radius: 50% !important;
  border: 3px solid #fff;
  cursor: pointer;
  z-index: 91;
  box-shadow: 0 8px 24px rgba(232, 115, 74, 0.4) !important;
  text-decoration: none;
  animation: pulseButton 2s infinite;
  padding: 0;
  transition: all .3s;
}

.floating-book-btn i {
  font-size: 22px;
  margin-bottom: 4px;
}

.floating-book-btn span {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.1;
}

.floating-book-btn:hover {
  background: var(--coral-dark) !important;
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 30px rgba(232, 115, 74, 0.5) !important;
}

@keyframes pulseButton {
  0% {
    box-shadow: 0 0 0 0 rgba(232, 115, 74, 0.7);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(232, 115, 74, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(232, 115, 74, 0);
  }
}

.back-top {
  position: fixed;
  bottom: 90px;
  right: 28px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--teal);
  color: #fff;
  border: none;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  z-index: 90;
  box-shadow: 0 6px 20px rgba(68, 131, 171, .35);
  transition: all .3s
}

.back-top:hover {
  transform: translateY(-4px);
  background: var(--coral)
}

/* ===== LIGHTBOX ===== */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .3s
}

.lightbox.open {
  display: flex;
  opacity: 1
}

.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  transform: scale(.85);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1);
  object-fit: contain
}

.lightbox.open img {
  transform: scale(1)
}

.lb-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255, 255, 255, .08);
  border: none;
  color: #fff;
  font-size: 24px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: all .3s;
  backdrop-filter: blur(8px)
}

.lb-close:hover {
  background: rgba(255, 255, 255, .2)
}

.lb-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, .08);
  border: none;
  color: #fff;
  font-size: 20px;
  cursor: pointer;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  transition: all .3s;
  backdrop-filter: blur(8px)
}

.lb-nav:hover {
  background: rgba(255, 255, 255, .2)
}

.lb-prev {
  left: 20px
}

.lb-next {
  right: 20px
}

.lb-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, .6);
  font-size: 14px;
  font-weight: 500;
  background: rgba(0, 0, 0, .3);
  padding: 6px 16px;
  border-radius: 60px;
  backdrop-filter: blur(8px)
}

/* ===== BOOKING MODAL ===== */
.booking-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0, 0, 0, .55);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .3s
}

.booking-overlay.open {
  display: flex;
  opacity: 1
}

.booking-modal {
  background: var(--cream);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: translateY(20px) scale(.95);
  transition: transform .5s cubic-bezier(.34, 1.56, .64, 1)
}

.booking-overlay.open .booking-modal {
  transform: translateY(0) scale(1)
}

.booking-header {
  background: linear-gradient(135deg, var(--teal), var(--teal-light));
  padding: 28px 30px;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.booking-header h3 {
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  font-family: 'Playfair Display', serif
}

.booking-header p {
  color: rgba(255, 255, 255, .7);
  font-size: 13px;
  margin: 4px 0 0
}

.booking-close {
  background: rgba(255, 255, 255, .12);
  border: none;
  color: #fff;
  width: 38px;
  height: 38px;
  border-radius: 12px;
  cursor: pointer;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .3s
}

.booking-close:hover {
  background: rgba(255, 255, 255, .25)
}

.booking-body {
  padding: 30px
}

.form-group {
  margin-bottom: 18px
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 7px
}

.form-group label span {
  color: var(--coral)
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(0, 0, 0, .08);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  transition: all .3s;
  background: var(--white)
}

.form-input:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(68, 131, 171, .08);
  background: #fff
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24'%3E%3Cpath fill='%23636E72' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px
}

textarea.form-input {
  resize: vertical;
  min-height: 72px
}

.form-submit {
  width: 100%;
  padding: 14px;
  background: var(--coral);
  color: #fff;
  border: none;
  border-radius: 60px;
  font-size: 15px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  cursor: pointer;
  transition: all .4s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(232, 115, 74, .3)
}

.form-submit:hover {
  background: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(232, 115, 74, .4)
}

.form-submit:disabled {
  opacity: .6;
  cursor: not-allowed;
  transform: none
}

.form-msg {
  text-align: center;
  padding: 12px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 500;
  margin-top: 14px;
  display: none
}

.form-msg.success {
  display: block;
  background: #ecfdf5;
  color: #065f46;
  border: 1px solid #a7f3d0
}

.form-msg.error {
  display: block;
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca
}

/* ===== ANIMATIONS ===== */
.anim {
  opacity: 0;
  transform: translateY(30px);
  transition: all .8s cubic-bezier(.4, 0, .2, 1)
}

.anim.show {
  opacity: 1;
  transform: translateY(0)
}

.anim-delay-1 {
  transition-delay: .1s
}

.anim-delay-2 {
  transition-delay: .2s
}

.anim-delay-3 {
  transition-delay: .3s
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px) {
  .hero-arrow {
    width: 42px;
    height: 42px;
    font-size: 14px
  }

  .hero-prev {
    left: 12px
  }

  .hero-next {
    right: 12px
  }

  .hero-stats-inner {
    gap: 24px
  }

  .hero-stat-num {
    font-size: 24px
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 40px
  }

  .about-imgs {
    height: 350px
  }

  .bento-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .bento-card.featured {
    grid-column: span 2
  }

  .gallery-grid {
    grid-template-columns: repeat(3, 1fr)
  }

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

  .exp-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px
  }

  .exp-item:nth-child(2)::after {
    display: none
  }

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

@media(max-width:768px) {
  .nav {
    display: none
  }

  .hamburger {
    display: block
  }

  .hero-slides {
    height: 80vh
  }

  .hero-slider {
    min-height: 85vh
  }

  .hero-slide-content {
    min-height: 85vh;
    padding: 120px 0 140px
  }

  .hero-slide h1 {
    font-size: 22px
  }

  .hero-slide p {
    font-size: 13px;
    margin-bottom: 20px;
  }

  .hero-arrow {
    display: none
  }

  .hero-nav {
    bottom: 50px
  }

  .hero-stats-bar {
    display: none;
  }

  .hero-slider {
    min-height: 80vh;
  }

  .hero-slide-content {
    min-height: 80vh;
    padding-bottom: 80px;
  }

  .about-text h2 {
    font-size: 26px;
    line-height: 1.25;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  /* Global section adjustments for mobile */
  .section {
    padding: 60px 0;
  }

  h2.sec-title {
    font-size: 26px;
    line-height: 1.25;
  }

  p.sec-desc {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 30px;
  }

  /* Adjust bento grid cards for better readability */
  .bento-card h4 {
    font-size: 18px;
  }

  .bento-card p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  /* Adjust doctor profile for better text fitting */
  .doctor-profile-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .doctor-profile-content p {
    font-size: 14.5px;
    line-height: 1.6;
  }

  .dr-name {
    font-size: 18px;
  }

  /* Top info bar tweaks */
  .top-bar-inner {
    flex-direction: column;
    text-align: center;
    gap: 8px;
    font-size: 12.5px;
  }

  .top-bar-left {
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
  }

  .top-bar-right {
    display: flex;
    justify-content: center;
  }

  /* Prevent overlapping fixed elements */
  .social-bar {
    display: none !important;
  }

  .floating-book-btn {
    width: 50px;
    height: 50px;
    font-size: 10px;
    right: 15px;
    bottom: 15px;
    padding: 8px;
    text-align: center;
    line-height: 1.2;
  }
  /* Force 1-column layout for grids */
  .bento-grid,
  .review-slide,
  .blog-grid,
  .team-grid,
  .faq-grid,
  .gallery-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  /* Fix testimonials slider overflow */
  .review-slider {
    width: 100%;
    overflow: hidden;
  }
  
  .review-grid {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-card.featured {
    grid-column: 1 / -1;
  }
}

/* End of @media 768px block */