:root {
  --brand: #0ea5a3;
  --brand-light: #34c3b5;
  --brand-glow: rgba(14, 165, 163, 0.35);
  --brand-dark: #097371;
  --accent-gold: #f59e0b;
  --bg: #070d18;
  --bg-alt: #0b1426;
  --surface: #0f1c30;
  --surface-hover: #15253f;
  --muted: #94a3b8;
  --text: #f1f5f9;
  --text-heading: #ffffff;
  --card: rgba(15, 28, 48, 0.75);
  --card-border: rgba(255, 255, 255, 0.08);
  --card-border-glow: rgba(14, 165, 163, 0.4);
  --shadow-lg: 0 20px 40px -15px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 10px 30px -5px rgba(14, 165, 163, 0.3);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --transition: 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background-color: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Scrollbar Customization */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: var(--surface-hover);
  border-radius: 5px;
  border: 2px solid var(--bg);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--brand-dark);
}

/* Utility Containers */
.container {
  width: min(1280px, 92%);
  margin: 0 auto;
}

.text-gradient {
  background: linear-gradient(135deg, #ffffff 0%, var(--brand-light) 50%, var(--brand) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gold {
  color: var(--accent-gold);
}

/* Header & Sticky Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 13, 24, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  transition: var(--transition);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-img {
  height: 38px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(14, 165, 163, 0.4));
}

.logo-text {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.3px;
  color: var(--text-heading);
}

.logo-tagline {
  display: block;
  font-size: 11px;
  font-weight: 500;
  color: var(--brand-light);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.badge-247 {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 12px;
  border-radius: var(--radius-full);
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #fca5a5;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}

.badge-247 .dot {
  width: 8px;
  height: 8px;
  background-color: #ef4444;
  border-radius: 50%;
  animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
  }

  70% {
    transform: scale(1);
    box-shadow: 0 0 0 6px rgba(239, 68, 68, 0);
  }

  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

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

.site-nav a {
  color: var(--muted);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: var(--transition);
  position: relative;
  padding: 4px 0;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--text-heading);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, var(--brand), var(--brand-light));
  transition: width var(--transition);
  border-radius: 2px;
}

.site-nav a:hover::after,
.site-nav a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: var(--surface);
  border: 1px solid var(--card-border);
  color: var(--text-heading);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  cursor: pointer;
  font-size: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: 1px solid transparent;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-light) 100%);
  color: #ffffff;
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(14, 165, 163, 0.5);
  background: linear-gradient(135deg, var(--brand-light) 0%, var(--brand) 100%);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  box-shadow: 0 8px 20px -5px rgba(37, 211, 102, 0.4);
}

.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 25px -5px rgba(37, 211, 102, 0.6);
}

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border-color: var(--card-border);
}

.btn-secondary:hover {
  background: var(--surface-hover);
  color: var(--text-heading);
  border-color: var(--brand-light);
  transform: translateY(-2px);
}

.btn-video {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.2);
}

.btn-video:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

/* HERO SECTION */
.hero {
  position: relative;
  padding: 100px 0 120px;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--bg);
}

.hero-img-bg,
.hero-video-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transform: translate3d(-50%, -50%, 0);
  object-fit: cover;
  z-index: 0;
  opacity: 0.65;
  filter: brightness(0.95) contrast(1.05);
  backface-visibility: hidden;
  will-change: transform;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at center, rgba(7, 13, 24, 0.3) 0%, rgba(7, 13, 24, 0.8) 100%),
    linear-gradient(to bottom, rgba(7, 13, 24, 0.25), var(--bg));
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
}

.hero-content {
  max-width: 820px;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  background: rgba(15, 28, 48, 0.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border-glow);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-heading);
}

.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
  color: var(--text-heading);
}

.hero-lead {
  font-size: clamp(16px, 2vw, 20px);
  color: #cbd5e1;
  margin: 0 0 32px;
  line-height: 1.6;
  max-width: 740px;
}

.cta-group {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

/* Feature Highlights Bar */
.highlights-bar {
  position: relative;
  z-index: 10;
  margin-top: -50px;
  margin-bottom: 40px;
}

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

.highlight-card {
  background: rgba(15, 28, 48, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.highlight-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-light);
  box-shadow: var(--shadow-lg);
}

.highlight-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(14, 165, 163, 0.15);
  border: 1px solid rgba(14, 165, 163, 0.3);
  color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.highlight-info h3 {
  margin: 0 0 2px;
  font-size: 15px;
  font-weight: 700;
  color: var(--text-heading);
}

.highlight-info p {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

/* Section Shared Styling */
.section {
  padding: 80px 0;
  position: relative;
}

.section-alt {
  background-color: var(--bg-alt);
  border-top: 1px solid var(--card-border);
  border-bottom: 1px solid var(--card-border);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.section-subtitle {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--brand-light);
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin: 0 0 16px;
  color: var(--text-heading);
}

.section-desc {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
}

/* Split Layout */
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.split-content h2 {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 16px;
  color: var(--text-heading);
}

.split-content p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 16px;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--text);
}

.feature-list li i {
  color: var(--brand-light);
}

/* Image Card & Media Frame */
.media-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  box-shadow: var(--shadow-lg);
  background: var(--surface);
}

.media-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.media-frame:hover img {
  transform: scale(1.04);
}

.video-tour-banner {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.video-tour-banner video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 13, 24, 0.4);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: var(--transition);
}

.play-btn {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  background: var(--brand);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  box-shadow: 0 0 30px var(--brand-glow);
  transition: var(--transition);
}

.video-tour-banner:hover .play-btn {
  transform: scale(1.1);
  background: var(--brand-light);
}

/* Services Grid Section */
.services-grid-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 28px;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--card-border-glow);
  box-shadow: var(--shadow-lg);
  background: var(--surface-hover);
}

.service-icon-box {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(14, 165, 163, 0.2), rgba(52, 195, 181, 0.05));
  border: 1px solid var(--card-border-glow);
  color: var(--brand-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--text-heading);
}

.service-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0 0 20px;
  flex-grow: 1;
  line-height: 1.6;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--brand-light);
  text-decoration: none;
  transition: var(--transition);
}

.service-link:hover {
  color: #ffffff;
  gap: 10px;
}

/* Office & Facility Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid var(--card-border);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

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

.gallery-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 13, 24, 0.8), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 16px;
}

.gallery-item:hover .overlay {
  opacity: 1;
}

.gallery-item .caption {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
}

/* Doctor Profile Section */
.doctor-card {
  background: var(--card);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 36px;
  align-items: center;
}

.doctor-img-wrapper {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid var(--card-border-glow);
  box-shadow: var(--shadow-lg);
  aspect-ratio: 1 / 1;
}

.doctor-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-info h3 {
  font-size: 28px;
  font-weight: 800;
  margin: 0 0 4px;
  color: var(--text-heading);
}

.doctor-degree {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(14, 165, 163, 0.15);
  border: 1px solid var(--card-border-glow);
  color: var(--brand-light);
  border-radius: var(--radius-full);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 16px;
}

.doctor-specialties {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.specialty-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--card-border);
}

.specialty-tag i {
  color: var(--brand-light);
}

/* Testimonial Slider */
.testimonials-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.google-rating-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 32px;
  background: var(--surface);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: 1px solid var(--card-border);
  width: fit-content;
  margin-inline: auto;
}

.stars {
  color: var(--accent-gold);
  font-size: 16px;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  padding: 40px;
}

.slides {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.slides::-webkit-scrollbar {
  display: none;
}

.slides blockquote {
  flex: 0 0 100%;
  scroll-snap-align: start;
  margin: 0;
  padding: 0 10px;
}

.slides p {
  font-size: 18px;
  font-style: italic;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.7;
}

.slides cite {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: var(--brand-light);
  font-style: normal;
  margin-bottom: 8px;
}

.slides .google-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.slides .google-link:hover {
  color: var(--text-heading);
}

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

.slider-controls button {
  background: var(--surface);
  border: 1px solid var(--card-border);
  color: var(--text-heading);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  transition: var(--transition);
}

.slider-controls button:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.dots {
  display: flex;
  gap: 8px;
}

.dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--card-border);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: var(--transition);
}

.dots button.active {
  background: var(--brand-light);
  width: 24px;
  border-radius: 5px;
}

/* FAQ Accordions */
.faq-grid {
  max-width: 840px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1),
    border-color 300ms ease,
    background-color 300ms ease,
    box-shadow 300ms ease;
}

.faq-item:hover {
  border-color: var(--card-border-glow);
  background: var(--surface-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(14, 165, 163, 0.12);
}

.faq-item[open] {
  border-color: var(--card-border-glow);
  background: var(--surface-hover);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.2);
}

.faq-summary {
  padding: 20px 24px;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
  transition: color 300ms ease, background-color 300ms ease, padding 300ms ease;
}

.faq-summary:hover {
  color: var(--primary);
}

.faq-item[open] .faq-summary {
  color: var(--primary);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary::after {
  content: "+";
  font-size: 24px;
  font-weight: 400;
  color: var(--brand-light);
  transition: transform 300ms cubic-bezier(0.4, 0, 0.2, 1), color 300ms ease, background-color 300ms ease;
  line-height: 1;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(14, 165, 163, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-left: 16px;
}

.faq-summary:hover::after {
  background: rgba(14, 165, 163, 0.2);
}

.faq-item[open] .faq-summary::after {
  transform: rotate(45deg);
  color: #fff;
  background: var(--primary);
}

.faq-answer {
  padding: 16px 24px 20px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
}

.faq-item.opening .faq-answer {
  animation: faqFadeIn 300ms cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes faqFadeIn {
  from {
    opacity: 0;
    transform: translateY(-4px);
  }

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

/* Contact & Map Section */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
}

.contact-list li i {
  font-size: 18px;
  color: var(--brand-light);
  margin-top: 3px;
}

.contact-list a {
  color: var(--text);
  text-decoration: none;
  transition: var(--transition);
}

.contact-list a:hover {
  color: var(--brand-light);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 16px;
}

.hours-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--card-border);
  font-size: 14px;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--brand-light);
}

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--card-border);
  aspect-ratio: 16 / 11;
  box-shadow: var(--shadow-lg);
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating Sticky CTA Bar */
.floating-cta-bar {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translate3d(-50%, 0, 0);
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 16px;
  background: rgba(15, 28, 48, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--card-border-glow);
  border-radius: var(--radius-full);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
  transition: transform var(--transition), opacity var(--transition);
  backface-visibility: hidden;
  will-change: transform, opacity;
}

.floating-cta-bar.hidden {
  transform: translate3d(-50%, 100px, 0);
  opacity: 0;
  pointer-events: none;
}

/* Lightbox Modal */
.image-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(5, 9, 17, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.image-modal.open {
  opacity: 1;
  pointer-events: auto;
}

.modal-content-wrapper {
  position: relative;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.modal-content-wrapper img,
.modal-content-wrapper video {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

.modal-caption {
  margin-top: 14px;
  color: var(--text-heading);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}

.image-modal .close {
  position: absolute;
  top: 24px;
  right: 28px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.image-modal .close:hover {
  background: rgba(239, 68, 68, 0.8);
}

.image-modal .modal-prev,
.image-modal .modal-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.1);
  border: none;
  color: #ffffff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  transition: var(--transition);
}

.image-modal .modal-prev {
  left: 24px;
}

.image-modal .modal-next {
  right: 24px;
}

.image-modal .modal-prev:hover,
.image-modal .modal-next:hover {
  background: var(--brand);
}

/* Footer */
.site-footer {
  background: #040810;
  border-top: 1px solid var(--card-border);
  padding: 40px 0 30px;
  font-size: 14px;
  color: var(--muted);
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  color: var(--muted);
  text-decoration: none;
  font-size: 18px;
  transition: var(--transition);
}

.footer-social a:hover {
  color: var(--brand-light);
}

/* Hardware Acceleration & Rendering Performance */
.service-card,
.highlight-card,
.gallery-item,
.doctor-card,
.contact-card {
  backface-visibility: hidden;
}

/* Responsive Media Queries */
@media (max-width: 1100px) {
  .badge-247 {
    display: none !important;
  }
}

@media (max-width: 1024px) {

  html,
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .container {
    width: min(100%, 92%);
  }

  /* Header & Navigation */
  .site-header {
    padding: 2px 0;
  }

  .header-inner {
    padding: 10px 0;
  }

  .header-actions {
    gap: 10px;
  }

  .site-nav {
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11, 20, 38, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--card-border);
    flex-direction: column;
    padding: 20px 24px 28px;
    gap: 10px;
    transform: translateY(-150%);
    transition: transform var(--transition), opacity var(--transition);
    opacity: 0;
    pointer-events: none;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7);
  }

  .site-nav.open {
    transform: translateY(0) !important;
    opacity: 1 !important;
    pointer-events: auto !important;
  }

  .site-nav a {
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    width: 100%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: block;
  }

  .nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
    font-size: 20px;
  }

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

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

  .split-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .doctor-card {
    grid-template-columns: 1fr;
    text-align: center;
  }

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

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

@media (max-width: 768px) {

  /* Hero Section */
  .hero {
    padding: 50px 0 60px;
    min-height: auto;
  }

  .hero h1 {
    font-size: clamp(26px, 7vw, 38px);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
  }

  .hero-lead {
    font-size: 15px;
    margin-bottom: 24px;
  }

  .hero-badges {
    justify-content: center;
    gap: 6px;
  }

  .hero-badge {
    font-size: 12px;
    padding: 4px 12px;
  }

  .cta-group {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 12px;
  }

  .cta-group .btn {
    width: 100%;
    justify-content: center;
    padding: 14px 20px;
    font-size: 15px;
  }

  /* Highlights Bar */
  .highlights-bar {
    margin-top: 20px;
    margin-bottom: 30px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .highlight-card {
    padding: 16px;
  }

  /* Sections */
  .section {
    padding: 48px 0;
  }

  .section-header {
    margin-bottom: 32px;
  }

  .section-title {
    font-size: clamp(22px, 6vw, 32px);
  }

  .section-desc {
    font-size: 14px;
  }

  /* Split Grid */
  .split-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .split-content h2 {
    font-size: clamp(22px, 5vw, 30px);
  }

  .split-content p {
    font-size: 14px;
  }

  .feature-list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

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

  /* Services Grid Cards */
  .services-grid-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .service-card {
    padding: 20px 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 14px;
  }

  /* Gallery Grid */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }

  .gallery-item .overlay {
    opacity: 1;
    background: linear-gradient(to top, rgba(7, 13, 24, 0.85) 0%, transparent 100%);
    padding: 10px;
  }

  .gallery-item .caption {
    font-size: 11px;
    line-height: 1.3;
  }

  /* Video Tour Banner */
  .video-tour-banner {
    aspect-ratio: 16 / 9;
  }

  .video-tour-title {
    font-size: 14px !important;
    text-align: center;
    padding: 0 12px;
  }

  .play-btn {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  /* Doctor Cards */
  .doctor-card {
    padding: 24px 16px;
    gap: 20px;
  }

  .doctor-info h3 {
    font-size: 22px;
  }

  .doctor-info p {
    font-size: 14px;
  }

  .specialty-tag {
    justify-content: center;
    font-size: 13px;
    padding: 6px 10px;
  }

  /* Testimonials */
  .google-rating-badge {
    flex-wrap: wrap;
    padding: 10px 16px;
    gap: 8px;
    width: 100%;
    border-radius: var(--radius-md);
  }

  .testimonial-slider {
    padding: 24px 16px;
    border-radius: var(--radius-md);
  }

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

  /* FAQ */
  .faq-summary {
    padding: 16px 18px;
    font-size: 15px;
  }

  .faq-answer {
    padding: 12px 18px 16px;
    font-size: 14px;
  }

  /* Contact & Map */
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .contact-card {
    padding: 20px 16px;
  }

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

  .qr-box {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }

  .map-frame {
    aspect-ratio: 4 / 3;
    height: 240px;
  }

  /* Floating CTA Bar */
  .floating-cta-bar {
    bottom: 12px;
    width: calc(100% - 24px);
    padding: 8px 12px;
    justify-content: space-between;
    gap: 8px;
    border-radius: var(--radius-lg);
  }

  .floating-cta-bar .btn {
    flex: 1;
    padding: 10px 6px;
    font-size: 13px;
  }

  /* Image Modal Lightbox */
  .image-modal {
    padding: 12px;
  }

  .image-modal .close {
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .image-modal .modal-prev {
    left: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  .image-modal .modal-next {
    right: 8px;
    width: 36px;
    height: 36px;
    font-size: 20px;
  }

  /* Footer */
  .site-footer {
    padding: 30px 0 20px;
    text-align: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .logo-text {
    font-size: 16px;
  }

  .logo-tagline {
    font-size: 9px;
  }

  .logo-img {
    height: 30px;
  }

  .header-actions .btn-primary {
    padding: 8px 14px;
    font-size: 13px;
  }
}