:root {
  --primary: #0a4d68;
  --primary-dark: #083d54;
  --primary-light: #e8f4f8;
  --accent: #c43031;
  --accent-hover: #a82829;
  --teal: #087f8c;
  --teal-dark: #066570;
  --text: #1a2b3c;
  --text-muted: #5a6a7a;
  --bg: #ffffff;
  --bg-soft: #f7fafc;
  --bg-section: #f0f7fa;
  --border: #e2eaf0;
  --shadow: 0 4px 20px rgba(10, 77, 104, 0.08);
  --shadow-lg: 0 12px 40px rgba(10, 77, 104, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  line-height: 1.65;
  background: var(--bg);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--text);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ========== TOP BAR ========== */
.top-bar {
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  padding: 10px 0;
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.top-bar-contact {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.top-bar-contact a {
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-contact a:hover {
  color: #a8d5e5;
}

.top-bar-social {
  display: flex;
  gap: 10px;
  align-items: center;
}

.top-bar-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
}

.top-bar-social a:hover {
  background: #fff;
  color: var(--primary);
}

/* ========== HEADER / NAV ========== */
.header {
  background: #fff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo img {
  height: 56px;
  width: auto;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  border-radius: 8px;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-menu .dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 240px;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  list-style: none;
  z-index: 100;
}

.nav-menu > li:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .dropdown a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--text);
}

.nav-menu .dropdown a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: inherit;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 48, 49, 0.3);
}

.btn-teal {
  background: var(--teal);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

.btn-white {
  background: #fff;
  color: var(--primary);
}

.btn-white:hover {
  background: var(--primary-light);
}

.btn-sm {
  padding: 10px 18px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 32px;
  font-size: 16px;
}

/* Mobile menu */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--primary);
  cursor: pointer;
  padding: 8px;
}

/* ========== HERO ========== */
.hero {
  background: linear-gradient(135deg, #0a4d68 0%, #087f8c 60%, #0a5c6e 100%);
  color: #fff;
  padding: 70px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: clamp(28px, 4vw, 42px);
  color: #fff;
  margin-bottom: 12px;
  font-weight: 800;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 600;
  color: #a8d5e5;
  margin-bottom: 20px;
}

.hero-desc {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 28px;
  max-width: 540px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 36px;
}

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  text-align: left;
}

.hero-stat-num {
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 4px;
}

.hero-image-wrap {
  position: relative;
  text-align: center;
}

.hero-image-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
  max-height: 420px;
  object-fit: cover;
  margin: 0 auto;
}

.hero-image-badge {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  background: #fff;
  color: var(--text);
  padding: 12px 20px;
  border-radius: 12px;
  box-shadow: var(--shadow-lg);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

/* ========== SECTION COMMON ========== */
.section {
  padding: 80px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 12px;
}

.section-header h2 {
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 14px;
}

.section-header p {
  color: var(--text-muted);
  font-size: 16px;
}

/* ========== ABOUT ========== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.about-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.about-content h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 8px;
}

.about-role {
  color: var(--teal);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 20px;
}

.about-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15.5px;
}

.about-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 24px;
}

.about-highlight {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--bg-soft);
  padding: 14px 16px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.about-highlight i {
  color: var(--teal);
  font-size: 18px;
  margin-top: 2px;
}

.about-highlight span {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

/* ========== EXPERTISE ========== */
.expertise-section {
  background: var(--bg-section);
}

.expertise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.expertise-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #fff;
  padding: 16px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  transition: var(--transition);
}

.expertise-item:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.expertise-item i {
  color: var(--accent);
  font-size: 16px;
  margin-top: 3px;
  flex-shrink: 0;
}

.expertise-item span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
}

/* ========== SPECIALITIES ========== */
.specialities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.specialty-card {
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.specialty-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.specialty-card-img {
  height: 180px;
  overflow: hidden;
  background: var(--bg-soft);
}

.specialty-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.specialty-card:hover .specialty-card-img img {
  transform: scale(1.05);
}

.specialty-card-body {
  padding: 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.specialty-card-body h3 {
  font-size: 18px;
  margin-bottom: 10px;
}

.specialty-card-body p {
  font-size: 14.5px;
  color: var(--text-muted);
  flex: 1;
  margin-bottom: 16px;
}

.specialty-card-body .link {
  color: var(--teal);
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.specialty-card-body .link:hover {
  color: var(--teal-dark);
  gap: 10px;
}

/* ========== WHY CHOOSE ========== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.why-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.why-card:hover {
  border-color: var(--teal);
  box-shadow: var(--shadow);
}

.why-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin: 0 auto 16px;
}

.why-card h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.why-card p {
  font-size: 14px;
  color: var(--text-muted);
}

/* ========== COMPREHENSIVE CARE ========== */
.care-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: #fff;
}

.care-section .section-header h2,
.care-section .section-label {
  color: #fff;
}

.care-section .section-header p {
  color: rgba(255, 255, 255, 0.85);
}

.care-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.care-content p {
  font-size: 16.5px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

/* ========== TESTIMONIALS ========== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow);
}

.testimonial-stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-card p {
  font-size: 15px;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 18px;
  line-height: 1.7;
}

.testimonial-author {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.testimonial-note {
  margin-top: 30px;
  text-align: center;
  font-size: 13px;
  color: var(--text-muted);
  background: var(--bg-soft);
  padding: 14px 20px;
  border-radius: 10px;
  border: 1px dashed var(--border);
}

/* ========== FAQ ========== */
.faq-section {
  background: var(--bg-section);
}

.faq-list {
  max-width: 1140px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  margin-bottom: 12px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: inherit;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-question i {
  color: var(--teal);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.active .faq-question i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}

.faq-answer-inner {
  padding: 0 22px 18px;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.active .faq-answer {
  max-height: 450px;
}

/* ========== APPOINTMENT ========== */
.appointment-section {
  background: var(--bg-soft);
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.appointment-info h2 {
  font-size: clamp(24px, 3vw, 32px);
  margin-bottom: 12px;
}

.appointment-info .role {
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 16px;
}

.appointment-info p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 15.5px;
}

.appointment-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.appointment-form {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.appointment-form h3 {
  font-size: 20px;
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  margin-bottom: 14px;
}

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg-soft);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(8, 127, 140, 0.12);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

/* ========== VIDEOS ========== */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #000;
  aspect-ratio: 16 / 9;
}

.video-card iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ========== FEEDBACK CTA ========== */
.feedback-banner {
  background: linear-gradient(135deg, #f7fcfd 0%, #e9f7f8 100%);
  border: 1px solid #d4eaed;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  margin-top: 50px;
}

.feedback-banner h3 {
  font-size: 24px;
  margin-bottom: 10px;
}

.feedback-banner p {
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SPECIALTY PAGE (Content + Sidebar) ========== */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 50px;
  align-items: start;
}

.main-content img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  margin-bottom: 28px;
  width: 100%;
}

.main-content h2 {
  font-size: clamp(24px, 3vw, 30px);
  margin-bottom: 18px;
}

.main-content h3 {
  font-size: 20px;
  margin: 32px 0 14px;
  color: var(--primary);
}

.main-content p {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 15.5px;
  line-height: 1.75;
}

.main-content ul {
  margin: 12px 0 24px 20px;
  color: var(--text-muted);
}

.main-content ul li {
  margin-bottom: 10px;
  font-size: 15.5px;
  line-height: 1.65;
}

.main-content ul li strong {
  color: var(--text);
}

/* Sidebar */
.sidebar {
  position: sticky;
  top: 100px; /* adjust based on header height */
}

.sidebar-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-card h4 {
  font-size: 17px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary-light);
  color: var(--primary);
}

.sidebar-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.sidebar-links li {
  margin-bottom: 4px;
}

.sidebar-links a {
  display: block;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  transition: var(--transition);
}

.sidebar-links a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.sidebar-links li.active a {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

/* Appointment Box (Sidebar) */
.appointment-box {
  background: linear-gradient(135deg, var(--primary) 0%, var(--teal) 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 28px 24px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.appointment-box h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 6px;
  border: none;
  padding: 0;
}

.appointment-box p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 20px;
  line-height: 1.5;
}

.appointment-box .form-group {
  margin-bottom: 12px;
  text-align: left;
}

.appointment-box input,
.appointment-box textarea {
  width: 100%;
  padding: 12px 14px;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.appointment-box input::placeholder,
.appointment-box textarea::placeholder {
  color: #888;
}

.appointment-box textarea {
  resize: vertical;
  min-height: 90px;
}

.appointment-box .btn {
  width: 100%;
  margin-top: 8px;
  padding: 13px;
  font-size: 15px;
}

/* ========== FOOTER ========== */
.footer {
  background: #1a2b3c;
  color: rgba(255, 255, 255, 0.8);
  padding-top: 60px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-brand img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
}

.footer-social a:hover {
  background: var(--teal);
}

.footer h4 {
  color: #fff;
  font-size: 17px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 14.5px;
  color: rgba(255, 255, 255, 0.75);
}

.footer-links a:hover {
  color: #fff;
  padding-left: 4px;
}

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14.5px;
}

.footer-contact i {
  color: var(--teal);
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.55);
}

/* ========== SCROLL TOP ========== */
.scroll-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 4px 16px rgba(196, 48, 49, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
  cursor: pointer;
}

.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta,
  .hero-stats {
    justify-content: center;
  }

  .hero-image-wrap {
    order: -1;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-image {
    max-width: 400px;
    margin: 0 auto;
  }

  .expertise-grid,
  .specialities-grid,
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .videos-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .content-grid {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
    margin-top: 40px;
  }
}

@media (max-width: 768px) {
  .top-bar {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 16px;
    box-shadow: var(--shadow-lg);
    border-top: 1px solid var(--border);
  }

  .nav-menu.open {
    display: flex;
  }

  .nav-menu .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    padding-left: 16px;
    display: none;
  }

  .nav-menu > li:hover .dropdown,
  .nav-menu > li.open .dropdown {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .section {
    padding: 60px 0;
  }

  .expertise-grid,
  .specialities-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: 50px 0 60px;
  }

  .about-highlights {
    grid-template-columns: 1fr;
  }
}