/* ===== COMPLETE DENTAL SOLUTIONS - MAIN STYLESHEET ===== */
/* ===== Tailwind CSS via CDN (utility classes available) ===== */
/* ===== Custom styles below ===== */

:root {
  --primary: #1a73e8;
  --primary-dark: #1557b0;
  --primary-light: #e8f0fe;
  --secondary: #0b57d0;
  --accent: #34a853;
  --accent-light: #ceead6;
  --dark: #202124;
  --dark-gray: #3c4043;
  --medium-gray: #5f6368;
  --light-gray: #9aa0a6;
  --border-gray: #dadce0;
  --bg-light: #f8f9fa;
  --bg-card: #ffffff;
  --star-color: #fbbc04;
  --success: #188038;
  --danger: #c5221f;
  --warning: #e37400;
  --shadow-sm: 0 1px 2px rgba(60,64,67,.3), 0 1px 3px 1px rgba(60,64,67,.15);
  --shadow-md: 0 2px 6px 2px rgba(60,64,67,.15), 0 1px 2px rgba(60,64,67,.3);
  --shadow-lg: 0 4px 8px 3px rgba(60,64,67,.15), 0 1px 3px rgba(60,64,67,.3);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Inter', 'Google Sans', sans-serif;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== BASE STYLES ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--font-primary);
  color: var(--dark);
  background-color: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; display: block; }
button { cursor: pointer; border: none; outline: none; font-family: inherit; }
input, textarea, select { font-family: inherit; outline: none; }

.container {
  width: 100%;
  max-width: 1136px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 60px 0;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.3;
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--medium-gray);
  margin-bottom: 40px;
  max-width: 600px;
}

.text-center { text-align: center; }
.text-center .section-subtitle { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  white-space: nowrap;
  min-height: 48px;
}

.btn-primary {
  background-color: var(--primary);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--border-gray);
}

.btn-outline:hover {
  background-color: var(--primary-light);
  border-color: var(--primary);
}

.btn-accent {
  background-color: var(--accent);
  color: white;
  box-shadow: var(--shadow-sm);
}

.btn-accent:hover {
  background-color: #2d8f47;
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-white {
  background-color: white;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
}

.btn-white:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 8px 20px;
  min-height: 40px;
  font-size: 0.8125rem;
}

.btn-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  box-shadow: 0 1px 2px rgba(60,64,67,.15);
  transition: var(--transition);
  height: 64px;
}

.navbar.scrolled {
  box-shadow: 0 2px 6px rgba(60,64,67,.2);
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--dark);
}

.navbar-brand img, .navbar-brand svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}

.navbar-brand .brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.navbar-brand .brand-text span:first-child {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
}

.navbar-brand .brand-text span:last-child {
  font-size: 0.6875rem;
  color: var(--medium-gray);
}

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

.nav-links a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--medium-gray);
  border-radius: var(--radius-full);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
  background-color: var(--primary-light);
}

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

.nav-cta .phone-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--accent);
  transition: var(--transition);
}

.nav-cta .phone-link:hover { color: #2d8f47; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--dark);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-md);
  z-index: 999;
  transform: translateY(-100%);
  opacity: 0;
  transition: var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
  opacity: 1;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid var(--border-gray);
}

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

/* ===== HERO SECTION ===== */
.hero {
  padding-top: 64px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0fe 0%, #f0f4ff 50%, #f8f9fa 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26,115,232,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--accent-light);
  color: var(--success);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 20px;
}

.hero-badge svg { width: 16px; height: 16px; }

.hero h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.125rem;
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

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

.hero-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat strong {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
}

.hero-stat span {
  font-size: 0.8125rem;
  color: var(--medium-gray);
}

.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-image-wrapper {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-light), #d2e3fc);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

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

.hero-floating-card {
  position: absolute;
  background: white;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  font-weight: 500;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 10%;
  right: -5%;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 15%;
  left: -5%;
  animation-delay: 1.5s;
}

.hero-floating-card .icon-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-floating-card .icon-circle.green { background: var(--accent-light); }
.hero-floating-card .icon-circle.blue { background: var(--primary-light); }

.hero-floating-card .icon-circle svg {
  width: 20px;
  height: 20px;
}

.hero-floating-card .icon-circle.green svg { color: var(--accent); }
.hero-floating-card .icon-circle.blue svg { color: var(--primary); }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== QUICK BOOKING FORM ===== */
.quick-booking-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 32px;
  align-items: center;
}

.quick-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}

/* ===== ABOUT SECTION ===== */
.about-section {
  background: white;
}

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

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/3;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-image .experience-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--primary);
  color: white;
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  box-shadow: var(--shadow-md);
}

.about-image .experience-badge strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
}

.about-image .experience-badge span {
  font-size: 0.75rem;
  opacity: 0.9;
}

.about-content h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.3;
}

.about-content h2 span { color: var(--primary); }

.about-content p {
  color: var(--medium-gray);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 24px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
}

.about-feature svg {
  width: 24px;
  height: 24px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.about-feature div strong {
  display: block;
  font-size: 0.9375rem;
  color: var(--dark);
  margin-bottom: 2px;
}

.about-feature div span {
  font-size: 0.8125rem;
  color: var(--medium-gray);
}

/* ===== SERVICES SECTION ===== */
.services-section {
  background: var(--bg-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px 24px;
  box-shadow: 0 1px 2px rgba(60,64,67,.1);
  border: 1px solid var(--border-gray);
  transition: var(--transition);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary);
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: var(--primary-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.service-icon svg {
  width: 28px;
  height: 28px;
  color: var(--primary);
}

.service-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.service-card p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card .service-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  display: block;
}

/* ===== SERVICE FILTER BUTTONS ===== */
.filter-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}

/* ===== DOCTORS SECTION ===== */
.doctors-section {
  background: white;
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.doctor-card {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-gray);
  transition: var(--transition);
}

.doctor-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.doctor-image {
  width: 200px;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

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

.doctor-info { display: flex; flex-direction: column; justify-content: center; }

.doctor-info .doctor-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 12px;
  width: fit-content;
}

.doctor-info h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--dark);
}

.doctor-info .doctor-title {
  font-size: 0.9375rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

.doctor-info p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.6;
}

/* ===== DOCTOR SPECIALTIES GRID ===== */
.doctor-specialties {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
}

/* ===== GALLERY SECTION ===== */
.gallery-section {
  background: var(--bg-light);
}

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

.gallery-item {
  border-radius: var(--radius-sm);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-item:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-sm);
}

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

.gallery-item:nth-child(2) { aspect-ratio: 1; grid-row: span 2; }
.gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 16/5; }

/* ===== TESTIMONIALS ===== */
.testimonials-section {
  background: white;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--bg-light);
  border-radius: var(--radius-md);
  padding: 28px;
  border: 1px solid var(--border-gray);
  transition: var(--transition);
}

.testimonial-card:hover {
  box-shadow: var(--shadow-sm);
}

.testimonial-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.testimonial-stars svg {
  width: 20px;
  height: 20px;
  color: var(--star-color);
}

.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--dark-gray);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}

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

.testimonial-author .avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, #e8f0fe, #d2e3fc);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testimonial-author .avatar svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
  opacity: 0.5;
}

.testimonial-author .author-info strong {
  display: block;
  font-size: 0.875rem;
  color: var(--dark);
}

.testimonial-author .author-info span {
  font-size: 0.75rem;
  color: var(--medium-gray);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: var(--bg-light);
}

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

.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-info-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: white;
  padding: 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gray);
  transition: var(--transition);
}

.contact-info-card:hover {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.contact-info-card .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .ci-icon svg {
  width: 24px;
  height: 24px;
  color: var(--primary);
}

.contact-info-card .ci-content h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--dark);
}

.contact-info-card .ci-content p,
.contact-info-card .ci-content a {
  font-size: 0.875rem;
  color: var(--medium-gray);
  line-height: 1.5;
}

.contact-info-card .ci-content a:hover { color: var(--primary); }

/* ===== CONTACT FORM ===== */
.contact-form-wrapper {
  background: white;
  border-radius: var(--radius-md);
  padding: 32px;
  border: 1px solid var(--border-gray);
  box-shadow: var(--shadow-sm);
}

.contact-form-wrapper h3 {
  font-size: 1.375rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--dark);
}

.contact-form-wrapper > p {
  font-size: 0.875rem;
  color: var(--medium-gray);
  margin-bottom: 24px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  font-size: 0.9375rem;
  border: 1px solid var(--border-gray);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  background: white;
  color: var(--dark);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,115,232,0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

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

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-message {
  display: none;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  font-size: 0.875rem;
}

.form-message.success {
  display: block;
  background: var(--accent-light);
  color: var(--success);
  border: 1px solid var(--accent);
}

.form-message.error {
  display: block;
  background: #fce8e6;
  color: var(--danger);
  border: 1px solid #f5c6c2;
}

/* ===== HOURS TABLE ===== */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table td {
  padding: 8px 0;
  font-size: 0.9375rem;
  color: var(--dark);
  border-bottom: 1px solid var(--border-gray);
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 500;
}

.hours-table .closed { color: var(--danger); }
.hours-table .open-status {
  display: inline-block;
  padding: 3px 10px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
}

.open-status.open { background: var(--accent-light); color: var(--success); }
.open-status.closed { background: #fce8e6; color: var(--danger); }

/* ===== INSIGHTS SECTION ===== */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.insight-category {
  margin-bottom: 24px;
}

.insight-category h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.insight-category .tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.insight-category .tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-light);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.8125rem;
  color: var(--dark-gray);
  border: 1px solid var(--border-gray);
}

.tag svg { width: 16px; height: 16px; }
.tag.green svg { color: var(--accent); }

/* ===== REVIEWS SUMMARY ===== */
.reviews-summary {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--bg-light);
  border-radius: var(--radius-md);
}

.reviews-summary .rating-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}

.reviews-summary .rating-stars {
  display: flex;
  gap: 4px;
  margin: 4px 0;
}

.reviews-summary .rating-stars svg {
  width: 28px;
  height: 28px;
  color: var(--star-color);
}

.reviews-summary .rating-label {
  font-size: 0.875rem;
  color: var(--medium-gray);
  font-weight: 500;
}

/* ===== MAP ===== */
.map-container {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--border-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.map-container svg {
  width: 48px;
  height: 48px;
  color: var(--medium-gray);
  opacity: 0.4;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark);
  color: white;
  padding: 48px 0 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  margin-bottom: 24px;
}

.footer-brand h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.6;
  max-width: 320px;
}

.footer h4 {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: white;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
}

.footer-links a:hover { color: var(--primary-light); }

.footer-contact li {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}

.footer-contact svg {
  width: 20px;
  height: 20px;
  color: var(--primary-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.5);
}

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

.footer-social a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.footer-social a:hover { background: var(--primary); }

.footer-social svg {
  width: 18px;
  height: 18px;
  color: white;
}

/* ===== FIXED CALL BUTTON (MOBILE) ===== */
.fixed-call-btn {
  display: none;
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--accent);
  color: white;
  box-shadow: 0 4px 12px rgba(52,168,83,0.4);
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.fixed-call-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(52,168,83,0.5);
}

.fixed-call-btn svg {
  width: 24px;
  height: 24px;
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 999;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  box-shadow: 0 4px 12px rgba(37,211,102,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.5);
}

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

/* ===== ANIMATIONS ===== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.stagger-item {
  opacity: 0;
  transform: translateY(20px);
}

.stagger-item.visible {
  animation: staggerFadeIn 0.5s ease forwards;
}

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

/* ===== CLINIC STATS ===== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* ===== PRICING NOTE ===== */
.pricing-note {
  background: var(--primary-light);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }
  .hero p { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image-wrapper { max-width: 320px; }
  .hero-floating-card { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .quick-booking-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  
  .hero { min-height: auto; padding-bottom: 40px; }
  .hero .container { padding-top: 20px; padding-bottom: 20px; }
  .hero h1 { font-size: 1.75rem; }
  .hero p { font-size: 0.9375rem; margin-bottom: 24px; }
  .hero-stats { gap: 16px; }
  .hero-stat strong { font-size: 1.25rem; }
  
  .section-title { font-size: 1.5rem !important; }
  .section-subtitle { font-size: 0.9375rem; margin-bottom: 24px; }
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  
  .quick-booking-grid { grid-template-columns: 1fr; text-align: center; }
  .quick-form-grid { grid-template-columns: 1fr; }
  .quick-booking-grid .hero-badge { margin: 0 auto 8px; }
  
  .about-features { grid-template-columns: 1fr; }
  .about-content h2 { font-size: 1.5rem; }
  
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 24px 20px; }
  .filter-buttons { gap: 8px; }
  .filter-buttons .btn { font-size: 0.75rem; padding: 8px 14px; min-height: 36px; }
  
  .doctors-grid { grid-template-columns: 1fr; }
  .doctor-card { grid-template-columns: 1fr; text-align: center; padding: 20px !important; }
  .doctor-image { width: 140px; height: 140px; margin: 0 auto 16px; border-radius: 50% !important; }
  .doctor-info .doctor-badge { margin: 0 auto 12px; }
  .doctor-specialties { grid-template-columns: 1fr; text-align: left; }
  
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .gallery-item { aspect-ratio: 4/3 !important; }
  .gallery-item:nth-child(2) { aspect-ratio: 4/3; grid-row: auto; }
  .gallery-item:nth-child(7) { grid-column: span 2; aspect-ratio: 4/3; }
  
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonial-card { padding: 20px; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form-wrapper { padding: 24px 20px; }
  .form-row { grid-template-columns: 1fr; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .footer-brand p { max-width: 100%; }
  
  .fixed-call-btn { display: flex; }
  .whatsapp-float { bottom: 24px; left: 16px; width: 48px; height: 48px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .fixed-call-btn { bottom: 24px; right: 16px; width: 48px; height: 48px; }
  .fixed-call-btn svg { width: 22px; height: 22px; }
  
  .reviews-summary { flex-direction: column; text-align: center; gap: 16px; padding: 20px; }
  .reviews-summary .rating-number { font-size: 2.5rem; }
  
  .page-header { padding: 80px 0 40px; }
  .page-header h1 { font-size: 1.75rem; }
  .page-header p { font-size: 0.9375rem; }
  
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .why-choose-grid { grid-template-columns: 1fr; }
  .pricing-note { flex-direction: column; text-align: center; }
  
  .hours-table td { font-size: 0.8125rem; }
  
  .cta-section h2 { font-size: 1.5rem !important; }
  .cta-section .btn { width: 100%; }
  
  .insights-grid { grid-template-columns: 1fr; }
  
  .back-to-top { bottom: 90px; right: 16px; width: 40px; height: 40px; }
}

@media (min-width: 769px) {
  .fixed-call-btn { display: none; }
}

/* ===== PAGE HEADER ===== */
.page-header {
  padding-top: 64px;
  background: linear-gradient(135deg, var(--primary-light), #f0f4ff);
  padding: 100px 0 60px;
  text-align: center;
}

.page-header h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 12px;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--medium-gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== LOADING / SPINNER ===== */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: white;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--dark);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}