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

:root {
  --blue-50: #f0f9ff;
  --blue-100: #e0f2fe;
  --blue-200: #bae6fd;
  --blue-300: #7dd3fc;
  --blue-400: #38bdf8;
  --blue-500: #0ea5e9;
  --blue-600: #0284c7;
  --blue-700: #0369a1;
  --teal-50: #f0fdfa;
  --teal-100: #ccfbf1;
  --teal-200: #99f6e4;
  --teal-400: #2dd4bf;
  --teal-500: #14b8a6;
  --teal-600: #0d9488;
  --teal-700: #0f766e;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --gray-400: #9ca3af;
  --gray-500: #6b7280;
  --gray-600: #4b5563;
  --gray-700: #374151;
  --gray-800: #1f2937;
  --gray-900: #111827;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.10);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--gray-700);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--gray-900);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; line-height: 1.75; }

.section-label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 12px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--teal-600), var(--blue-600));
  color: white;
  box-shadow: 0 4px 16px rgba(14, 165, 233, 0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45);
}

.btn-outline {
  background: transparent;
  color: var(--teal-700);
  border: 2px solid var(--teal-200);
}
.btn-outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
}

.btn-white {
  background: white;
  color: var(--teal-700);
  box-shadow: var(--shadow-md);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--teal-700);
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--teal-500), var(--blue-500));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
}

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

.nav-links a {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--gray-600);
  transition: var(--transition);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav-cta {
  margin-left: 12px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.hamburger {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  position: relative;
  transition: var(--transition);
}
.hamburger::before, .hamburger::after {
  content: '';
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--gray-700);
  transition: var(--transition);
}
.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: white;
  padding: 16px 24px 24px;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--teal-50); color: var(--teal-700); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, #f0f9ff 0%, #e8f8f5 40%, #ffffff 100%);
  overflow: hidden;
  padding-top: 72px;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 55%; height: 100%;
  background-image: linear-gradient(160deg, rgba(240,249,255,0.92) 0%, rgba(232,248,245,0.92) 40%, rgba(255,255,255,0.95) 100%), url('https://images.unsplash.com/photo-1606811841689-9183d314d54b?auto=format&fit=crop&w=1400&q=70');
  background-size: cover;
  background-position: center;
  opacity: 0.10;
  pointer-events: none;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(14,165,233,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  border: 1px solid var(--teal-100);
  border-radius: 50px;
  padding: 6px 16px 6px 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--teal-700);
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--teal-400), var(--teal-500));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 { margin-bottom: 20px; }
.hero h1 span {
  background: linear-gradient(135deg, var(--teal-600), var(--blue-600));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  max-width: 500px;
}

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

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--teal-700);
}

.hero-stat-label {
  font-size: 0.85rem;
  color: var(--gray-400);
  font-weight: 500;
}

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

.hero-card {
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  padding: 32px;
  width: 100%;
  max-width: 460px;
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--blue-500));
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--teal-100), var(--blue-100));
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.hero-card h3 { margin-bottom: 8px; }
.hero-card p { color: var(--gray-500); font-size: 0.95rem; margin-bottom: 20px; }

.hero-card-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--gray-600);
}

.hero-card-check {
  width: 20px;
  height: 20px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--teal-600);
  flex-shrink: 0;
}

.hero-floating {
  position: absolute;
  background: white;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
}

.hero-floating-1 {
  top: -20px;
  right: -20px;
  animation: float 3s ease-in-out infinite;
}

.hero-floating-2 {
  bottom: 30px;
  left: -30px;
  animation: float 3s ease-in-out infinite 1.5s;
}

.hero-floating-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

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

/* ===== SECTION SPACING ===== */
.section { padding: 100px 0; }
.section-gray { background: var(--gray-50); }
.section-white { background: white; }

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}

.section-header p {
  color: var(--gray-500);
  font-size: 1.1rem;
  margin-top: 16px;
}

/* ===== CARDS GRID ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}

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

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.card-icon-teal { background: linear-gradient(135deg, var(--teal-100), var(--teal-200)); }
.card-icon-blue { background: linear-gradient(135deg, var(--blue-100), var(--blue-200)); }
.card-icon-teal-blue { background: linear-gradient(135deg, var(--teal-200), var(--blue-200)); }

.card h3 { margin-bottom: 10px; }
.card p { color: var(--gray-500); font-size: 0.95rem; }

/* ===== FEATURES ROW ===== */
.features-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}

.feature-item {
  padding: 40px 32px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--teal-50); }

.feature-item-icon {
  width: 52px;
  height: 52px;
  background: var(--teal-50);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  margin: 0 auto 16px;
}

.feature-item h4 { margin-bottom: 6px; }
.feature-item p { font-size: 0.85rem; color: var(--gray-400); }

/* ===== TESTIMONIALS ===== */
.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  color: var(--teal-100);
  position: absolute;
  top: 10px;
  left: 24px;
  line-height: 1;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.testimonial-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 16px;
}

.star { color: #fbbf24; font-size: 1rem; }

.testimonial-text {
  font-size: 1.05rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
  position: relative;
  z-index: 1;
}

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

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal-400), var(--blue-400));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1rem;
}

.testimonial-name { font-weight: 600; color: var(--gray-800); font-size: 0.95rem; }
.testimonial-role { font-size: 0.82rem; color: var(--gray-400); }

/* ===== TEAM ===== */
.team-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.team-photo {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  background: linear-gradient(135deg, var(--teal-100), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--teal-400);
}

.team-info { padding: 24px; }
.team-info h3 { margin-bottom: 4px; }
.team-role { color: var(--teal-600); font-size: 0.85rem; font-weight: 600; margin-bottom: 10px; }
.team-info p { font-size: 0.9rem; color: var(--gray-500); }

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
  background: linear-gradient(135deg, var(--teal-100), var(--blue-100));
}

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

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

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.6));
  color: white;
}

.gallery-overlay span { font-size: 0.85rem; font-weight: 500; }

/* ===== BEFORE / AFTER ===== */
.before-after-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 32px;
}

.before-after-item {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--gray-100);
}

.before-after-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.before-after-half {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.before-after-half img {
  width: 200%;
  height: 100%;
  object-fit: cover;
}

.before-after-half:first-child img { object-position: left center; }
.before-after-half:last-child img { object-position: right center; }

.before-label, .after-label {
  position: absolute;
  top: 12px;
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.before-label { left: 12px; background: rgba(0,0,0,0.6); color: white; }
.after-label { right: 12px; background: var(--teal-600); color: white; }

.before-after-info { padding: 24px; }
.before-after-info h3 { margin-bottom: 6px; }
.before-after-info p { font-size: 0.9rem; color: var(--gray-500); }

/* ===== CONTACT ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
}

.contact-info-card {
  background: linear-gradient(160deg, var(--teal-600), var(--blue-600));
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  color: white;
}

.contact-info-card h2 { color: white; margin-bottom: 12px; }
.contact-info-card > p { opacity: 0.85; font-size: 0.95rem; margin-bottom: 36px; }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.15);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-label { font-size: 0.8rem; opacity: 0.7; margin-bottom: 2px; }
.contact-item-value { font-weight: 600; font-size: 0.95rem; }

.contact-hours {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}

.contact-hours h4 { color: white; margin-bottom: 12px; font-size: 1rem; }

.hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  opacity: 0.85;
  margin-bottom: 6px;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
  min-height: 300px;
  background: var(--gray-100);
}

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

/* ===== FORM ===== */
.form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--gray-100);
}

.form-card h2 { margin-bottom: 8px; }
.form-card > p { color: var(--gray-500); margin-bottom: 32px; font-size: 0.95rem; }

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

.form-group { margin-bottom: 20px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--gray-700);
  transition: var(--transition);
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal-400);
  box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.12);
}

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

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

.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; font-size: 1rem; padding: 16px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-600), var(--blue-600));
  border-radius: var(--radius-lg);
  padding: 80px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(255,255,255,0.08), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 { color: white; margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 36px; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-banner .btn-white { font-size: 1rem; padding: 16px 36px; }

/* ===== FOOTER ===== */
.footer {
  background: var(--gray-900);
  color: rgba(255,255,255,0.6);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand { }
.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: white;
  margin-bottom: 16px;
}

.footer-brand p { font-size: 0.9rem; line-height: 1.7; }

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a { font-size: 0.9rem; transition: var(--transition); }
.footer-col ul a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.82rem;
}

.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a:hover { color: white; }

/* ===== PAGE HEROES ===== */
.page-hero {
  background: linear-gradient(160deg, #f0f9ff 0%, #e8f8f5 60%);
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 50%;
  /* background-image removed */
  background-size: cover;
  background-position: center bottom;
  opacity: 0.08;
  pointer-events: none;
}

.page-hero h1 { margin-bottom: 16px; }
.page-hero p { color: var(--gray-500); font-size: 1.15rem; max-width: 560px; margin: 0 auto; }

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: 0.85rem;
  color: var(--gray-400);
}
.breadcrumb a:hover { color: var(--teal-600); }
.breadcrumb span { opacity: 0.5; }

/* ===== SERVICES LIST ===== */
.services-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 24px;
}

.service-list-item {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--gray-100);
  display: flex;
  gap: 20px;
  transition: var(--transition);
}
.service-list-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.service-list-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--teal-100), var(--blue-100));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  flex-shrink: 0;
}

.service-list-content h3 { margin-bottom: 8px; }
.service-list-content p { color: var(--gray-500); font-size: 0.92rem; }

/* ===== HYGIENIST SECTION ===== */
.hygienist-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hygienist-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(204,251,241,0.7), rgba(186,230,253,0.7)), url('https://images.unsplash.com/photo-1609840114035-3c981b782dfe?auto=format&fit=crop&w=600&q=70') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: var(--teal-300);
}

.hygienist-content .section-label { margin-bottom: 16px; }
.hygienist-content h2 { margin-bottom: 20px; }
.hygienist-content p { color: var(--gray-500); margin-bottom: 24px; }

.hygienist-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}

.hygienist-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--gray-600);
}

.hygienist-list li::before {
  content: '✓';
  width: 22px;
  height: 22px;
  background: var(--teal-100);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  color: var(--teal-600);
  flex-shrink: 0;
}

/* ===== PAGE-SPECIFIC LAYOUTS ===== */
.two-col-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.text-block h2 { margin-bottom: 20px; }
.text-block p { color: var(--gray-500); margin-bottom: 16px; }

.values-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 32px;
}

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

.value-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-100), var(--blue-100));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.value-item h4 { margin-bottom: 4px; }
.value-item p { font-size: 0.9rem; color: var(--gray-500); margin: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 480px; margin: 0 auto; }
  .features-row { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-bottom: 1px solid var(--gray-100); }
  .feature-item:nth-child(2n) { border-right: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hygienist-split { grid-template-columns: 1fr; }
  .two-col-content { grid-template-columns: 1fr; }
  .before-after-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero-stats { gap: 24px; flex-wrap: wrap; }
  .features-row { grid-template-columns: 1fr; }
  .feature-item { border-right: none; }
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .cta-banner { padding: 60px 24px; }
  .form-card { padding: 32px 24px; }
  .contact-info-card { padding: 36px 28px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
  .testimonials-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ===== MOBILE FIXES (< 768px) ===== */
@media (max-width: 768px) {
  /* HERO: hide the big background image overlay, fix overflow */
  .hero::after { display: none; }

  /* HERO INNER: single column, tighter padding */
  .hero-inner {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    padding: 48px 0 60px !important;
  }

  /* Hero visual: full width, no fixed max-width */
  .hero-visual {
    max-width: 100% !important;
    width: 100%;
  }

  /* Hero image: ensure it doesn't overflow */
  .hero-image {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
  }

  /* Hero card: full width, no max-width constraint */
  .hero-card {
    width: 100% !important;
    max-width: 100% !important;
  }

  /* FLOATING BADGES: hide on mobile */
  .hero-floating-1,
  .hero-floating-2 {
    display: none !important;
  }

  /* HERO STATS: wrap nicely */
  .hero-stats {
    gap: 16px !important;
    flex-wrap: wrap !important;
  }

  /* PAGE HERO: hide the background image pseudo-element */
  .page-hero::after { display: none; }

  /* PAGE HERO: remove inline background-image style that causes overflow */
  .page-hero[style*="background-image"] {
    background-image: none !important;
  }

  /* PAGE HERO: adjust padding for mobile */
  .page-hero {
    padding: 100px 0 60px !important;
  }

  /* TESTIMONIALS: override any inline grid-template-columns */
  .cards-grid[style*="repeat(3"] {
    grid-template-columns: 1fr !important;
  }

  /* BEFORE/AFTER GRID: single column */
  .before-after-grid {
    grid-template-columns: 1fr !important;
  }

  /* BEFORE/AFTER HALF IMAGES: fix 200% width that breaks mobile */
  .before-after-half img {
    width: 100% !important;
    height: auto !important;
    object-fit: cover !important;
  }

  .before-after-half:first-child img { object-position: center; }
  .before-after-half:last-child img { object-position: center; }

  /* SERVICES LIST: single column, images don't overflow */
  .services-list-grid {
    grid-template-columns: 1fr !important;
  }

  /* Service list item: flex column on mobile */
  .service-list-item {
    flex-direction: column !important;
    gap: 16px !important;
  }

  /* Service list item img: full width, auto height */
  .service-list-item img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* HYGIENIST SPLIT: single column */
  .hygienist-split {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* Hygienist image: full width, auto height */
  .hygienist-image img {
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
  }

  /* CONTACT GRID: single column */
  .contact-grid {
    grid-template-columns: 1fr !important;
  }

  /* FORM GRID: single column */
  .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* GALLERY GRID: single column on very small screens */
  .gallery-grid {
    grid-template-columns: 1fr !important;
  }

  /* TWO COL CONTENT: single column */
  .two-col-content {
    grid-template-columns: 1fr !important;
    gap: 32px !important;
  }

  /* FOOTER GRID: single column */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* CTA BANNER: full width, reasonable padding */
  .cta-banner {
    padding: 48px 20px !important;
  }

  /* SECTION: reduce padding on mobile */
  .section {
    padding: 64px 0 !important;
  }

  /* Any inline max-width images that could overflow */
  img[style*="max-width"] {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Cards grid: single column */
  .cards-grid {
    grid-template-columns: 1fr !important;
  }

  /* Team cards: single column */
  .team-grid {
    grid-template-columns: 1fr !important;
  }

  /* Buttons full width on small mobile */
  .btn {
    padding: 14px 20px !important;
    font-size: 0.9rem !important;
  }
}

/* ===== MOBILE-SAFE IMAGE BACKGROUNDS ===== */
@media (max-width: 768px) {
  .hero::after {
    background-image: linear-gradient(160deg, rgba(240,249,255,0.97) 0%, rgba(232,248,245,0.97) 40%, rgba(255,255,255,0.98) 100%) !important;
    /* Nearly opaque on mobile so text is always readable */
  }
  .gallery-item {
    min-height: 200px !important;
  }
  .hygienist-image {
    min-height: 250px;
  }
}

/* ===== SMALL PHONES (< 480px) ===== */
@media (max-width: 480px) {
  .container {
    padding: 0 16px !important;
  }

  .hero {
    padding-top: 72px;
    padding-bottom: 40px;
  }

  .hero-inner {
    padding: 32px 0 48px !important;
  }

  .hero-badge {
    font-size: 0.78rem !important;
  }

  .hero h1 {
    font-size: 1.8rem !important;
  }

  .hero-desc {
    font-size: 1rem !important;
  }

  .hero-card {
    padding: 24px !important;
  }

  .section-header {
    margin-bottom: 40px !important;
  }

  .section-header h2 {
    font-size: 1.8rem !important;
  }

  .card {
    padding: 24px !important;
  }

  .service-list-item {
    padding: 24px !important;
  }

  .form-card {
    padding: 28px 20px !important;
  }

  .contact-info-card {
    padding: 28px 20px !important;
  }

  /* Ensure no horizontal scroll anywhere */
  body {
    overflow-x: hidden;
  }
}
