/* ===== 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;
  font-size: 17px;
}

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;
  font-weight: 700;
  font-size: 0.95rem;
}
.nav-phone {
  display: none;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: var(--teal-700);
  font-weight: 600;
}
@media (max-width: 768px) {
  .nav-phone {
    display: flex;
  }
}

.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 STICKY BOTTOM BAR ===== */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 12px;
  left: 12px;
  right: 12px;
  z-index: 9999;
  display: none;
  gap: 10px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 10px;
  border-radius: 18px;
  box-shadow: 0 10px 35px rgba(0,0,0,0.12);
  transition: transform 0.3s ease;
}
.mobile-sticky-bar.hidden {
  transform: translateY(calc(100% + 24px));
}
@media (max-width: 767px) {
  .mobile-sticky-bar {
    display: flex;
    bottom: 10px !important;
    left: 14px !important;
    right: 14px !important;
    padding: 7px 10px !important;
    gap: 8px !important;
    border-radius: 16px !important;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.04) !important;
  }
  body { padding-bottom: 100px !important; overflow-x: hidden; }
  html { overflow-x: hidden; }
}
.mobile-sticky-btn {
  flex: 1;
    height: 42px !important;
    font-size: 14px !important;
  min-width: 0;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 15px !important;
  text-decoration: none;
  line-height: 1;
  transition: 0.2s ease;
}
.mobile-sticky-call {
  background: #ffffff;
  border: 2px solid var(--teal-600);
  color: var(--teal-700);
}
.mobile-sticky-book {
  background: linear-gradient(135deg, var(--teal-600), var(--blue-600));
  color: #ffffff;
  border: 2px solid transparent;
  box-shadow: 0 4px 14px rgba(14,165,233,0.3);
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: white;
  border: 1px solid var(--teal-100);
  border-radius: 50px;
  padding: 5px 12px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--teal-700);
  box-shadow: var(--shadow-sm);
}

/* ===== WHY CHOOSE US ===== */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  background: white;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--gray-100);
}
.why-choose-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--gray-100);
  transition: var(--transition);
}
.why-choose-item:last-child { border-right: none; }
.why-choose-item:hover { background: var(--teal-50); }
.why-choose-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 14px;
}
.why-choose-item h4 { font-size: 0.9rem; margin-bottom: 4px; }
.why-choose-item p { font-size: 0.78rem; color: var(--gray-400); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }


/* ===== HERO ===== */
.hero {
 position: relative;
 background: linear-gradient(160deg, #f0f9ff 0%, #e8f8f5 45%, #ffffff 100%);
 overflow: hidden;
 padding: 96px 0 72px;
}

.hero-inner {
 display: grid;
 grid-template-columns: 45% 55%;
 gap: 48px;
 align-items: center;
}

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

.hero-badge {
 display: inline-flex;
 align-items: center;
 gap: 8px;
 background: #ffffff;
 border: 1px solid var(--teal-100);
 border-radius: 999px;
 padding: 6px 16px 6px 8px;
 font-size: 0.85rem;
 font-weight: 600;
 color: var(--teal-700);
 margin-bottom: 22px;
 box-shadow: var(--shadow-sm);
}
.hero-pill {
 font-size: 13px;
 padding: 6px 12px;
 background: rgba(255,255,255,0.7);
 border: 1px solid rgba(0,0,0,0.05);
 color: var(--gray-500);
 box-shadow: none;
 font-weight: 500;
}

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

.hero-headline {
 font-family: 'Playfair Display', Georgia, serif;
 font-weight: 700;
 color: var(--gray-900);
 letter-spacing: -0.02em;
 margin: 0;
}

.hero-headline-desktop {
 display: block;
 font-size: clamp(32px, 4vw, 56px);
 line-height: 1.1;
 max-width: 550px;
}

.hero-headline-mobile {
 display: none;
}

.hero-desc {
 font-size: 1.15rem;
 line-height: 1.6;
 color: var(--gray-500);
 max-width: 520px;
 margin: 16px 0 16px;
}


 box-shadow: var(--shadow-sm);
}

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

.hero-micro-trust {
 font-size: 0.8rem;
 color: var(--gray-400);
 margin-top: 12px;
 line-height: 1.4;
}

.hero-actions .btn-outline {
 margin-top: 4px;
 font-weight: 600;
}

.hero-reassurance {
 margin-top: 14px;
}

.hero-reassurance p {
 margin: 4px 0;
 font-size: 0.86rem;
 color: var(--gray-500);
}

.hero-reassurance p:first-child {
 font-style: italic;
 color: var(--gray-400);
}

.hero-visual {
 position: relative;
}

.hero-image-wrapper {
 position: relative;
 width: 100%;
 height: 520px;
 border-radius: 20px;
 overflow: hidden;
 box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.hero-image-wrapper img {
 width: 100%;
 height: 100%;
 object-fit: cover;
 object-position: 38% center;
 display: block;
}

.hero-image-overlay {
 position: absolute;
 inset: 0;
 background: linear-gradient(
 to right,
 rgba(255,255,255,0.55) 0%,
 rgba(255,255,255,0.22) 40%,
 rgba(255,255,255,0) 70%
 );
 pointer-events: none;
}


/* ===== HERO TRUST SECTION ===== */
.hero-trust-section {
  padding: 32px 0 0;
  margin-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.hero-trust-title {
  text-align: center;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--gray-900);
  margin-bottom: 20px;
}

.hero-trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0 auto;
}

.hero-trust-card {
  background: white;
  border: 1px solid rgba(15, 118, 110, 0.06);
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.05);
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  color: var(--gray-700);
  font-weight: 500;
}

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

/* ===== SECTION SPACING ===== */
.section { padding: 120px 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: 0 12px 40px rgba(0,0,0,0.14);
  border-color: var(--teal-100);
}
.testimonial-card {
  box-shadow: var(--shadow-md);
}

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

.star { color: #f59e0b; font-size: 1.5rem; }

.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 a {
  text-decoration: none;
  color: inherit;
  display: block;
  transition: var(--transition);
}
.service-list-item a:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal-100);
}

.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; }

/* ===== NERVOUS PATIENTS SECTION ===== */
.nervous-section {
  background: var(--gray-50);
}

.nervous-points {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.nervous-point {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  font-weight: 500;
}

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

/* ===== MINI CTA ===== */
.mini-cta-section {
  background: var(--gray-50);
  padding: 60px 0;
}

/* ===== RESPONSIVE NERVOUS SECTION ===== */
@media (max-width: 768px) {
  .nervous-points {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .hero-image-wrapper {
    margin-left: 0;
    min-height: 340px;
    border-radius: 16px;
  }
  .hero-image-wrapper img {
    min-height: 340px;
  }
  .hero-image-overlay {
    background: linear-gradient(
      to bottom,
      rgba(255,255,255,0) 60%,
      rgba(255,255,255,0.7) 100%
    );
  }
  .hero-trust-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  .hero-trust-card {
    padding: 14px !important;
  }
}

@media (max-width: 480px) {
  .nervous-points {
    grid-template-columns: 1fr;
  }
}

/* ===== BUTTONS ===== */
.btn:hover {
  transform: translateY(-2px);
}

.btn-primary:hover {
  box-shadow: 0 8px 28px rgba(14, 165, 233, 0.45);
}

.btn-outline:hover {
  background: var(--teal-50);
  border-color: var(--teal-400);
  transform: translateY(-2px);
}

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

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


/* =========================
 TABLET
========================= */

@media (min-width: 768px) and (max-width: 1024px) {
 .hero {
 min-height: auto;
 padding: 38px 0 34px;
 }

 .hero-inner {
 grid-template-columns: 52% 48%;
 gap: 22px;
 align-items: flex-start;
 }

 .hero-badge {
 margin-bottom: 14px;
 font-size: 0.78rem;
 padding: 5px 13px 5px 7px;
 }

 .hero-badge-dot {
 width: 22px;
 height: 22px;
 }

 .hero-headline-desktop {
 display: none;
 }

 .hero-headline-mobile {
 display: block;
 font-size: 34px;
 line-height: 1.08;
 max-width: 95%;
 }

 .hero-desc {
 font-size: 15px;
 line-height: 1.4;
 margin: 12px 0 10px;
 max-width: 430px;
 }

 .trust-badges {
 gap: 6px;
 margin-bottom: 10px;
 }

 .trust-badge {
 font-size: 11.5px;
 padding: 5px 8px;
 }

 .hero-actions {
 margin-top: 10px;
 gap: 8px;
 }

 .hero-actions .btn {
 padding: 12px 20px;
 font-size: 0.85rem;
 }

 .hero-reassurance {
 display: none;
 }

 .hero-image-wrapper {
 height: 260px;
 border-radius: 18px;
 }

  .hero-trust-grid { grid-template-columns: repeat(2, 1fr); }
  .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; }
}

/* =========================
 MOBILE
========================= */

@media (max-width: 767px) {
 .hero {
 padding: 40px 20px 28px;
 }

 .hero-inner {
 display: flex;
 flex-direction: column;
 gap: 0;
 }

 .hero-headline-desktop {
 display: none;
 }

 .hero-headline-mobile {
 display: block;
 font-size: 36px;
 line-height: 1.08;
 max-width: 100%;
 }

 .hero-badge {
 width: 100%;
 justify-content: flex-start;
 margin-bottom: 18px;
 font-size: 13px;
 padding: 6px 12px;
 background: rgba(255,255,255,0.7);
 border: 1px solid rgba(0,0,0,0.05);
 color: var(--gray-500);
 box-shadow: none;
 font-weight: 500;
 }

 .hero {
 padding-top: 80px !important;
 padding-bottom: 20px !important;
 }

 .hero-content {
 gap: 0 !important;
 }

 .hero-headline-mobile {
 font-size: 34px !important;
 line-height: 1.04 !important;
 margin-bottom: 18px !important;
 letter-spacing: -0.025em;
 }

 .hero-desc {
 font-size: 16px !important;
 line-height: 1.45 !important;
 margin: 0 0 18px !important;
 }

 .trust-badges {
 gap: 7px !important;
 margin: 0 0 16px !important;
 }

 .trust-badge {
 font-size: 12px !important;
 padding: 5px 9px !important;
 }

 .hero-actions {
 margin-top: 14px !important;
 margin-bottom: 10px !important;
 gap: 10px !important;
 flex-direction: column;
 }

 .hero-actions .btn-primary {
 width: 100%;
 height: 50px !important;
 justify-content: center;
 padding: 0 20px;
 font-size: 16px;
 border-radius: 999px;
 }

 .hero-actions .btn-outline {
 border: none !important;
 background: transparent !important;
 color: var(--teal-600) !important;
 font-size: 15px !important;
 height: auto !important;
 padding: 6px 0 !important;
 text-decoration: underline;
 opacity: 0.85;
 width: 100%;
 text-align: center;
 }

 .hero-reassurance {
 margin-top: 12px !important;
 }

 .hero-reassurance p {
 font-size: 13.5px !important;
 line-height: 1.35 !important;
 }

 .hero-visual {
 margin-top: 16px !important;
 width: 100%;
 }

 .hero-image-wrapper {
 height: 250px !important;
 min-height: 250px !important;
 max-height: 250px !important;
 border-radius: 16px !important;
 }

 .hero-image-wrapper img {
 height: 250px !important;
 min-height: 250px !important;
 max-height: 250px !important;
 object-fit: cover !important;
 object-position: 38% center !important;
 }

 .hero-image-overlay {
 background: linear-gradient(
 to right,
 rgba(255,255,255,0.35) 0%,
 rgba(255,255,255,0.12) 45%,
 rgba(255,255,255,0) 75%
 );
 }

  /* Navigation */
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .nav-inner { height: 64px; padding: 0 16px; }

  /* Section spacing */
  .section { padding: 48px 20px; }
  .section h2 { margin-bottom: 14px; }
  .section p { margin-bottom: 10px; }

  /* Trust grid */
  .hero-trust-grid { grid-template-columns: 1fr !important; gap: 10px !important; }
  .hero-trust-card { padding: 14px !important; }

  /* Why choose */
  .why-choose-grid { grid-template-columns: 1fr; gap: 12px; }
  .why-choose-item { padding: 18px 16px !important; margin-bottom: 0; border-radius: 16px; }
  .why-choose-item h4 { font-size: 16px !important; line-height: 1.25 !important; margin-bottom: 4px !important; }
  .why-choose-item p { font-size: 13px !important; line-height: 1.4 !important; }

  /* Features */
  .features-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .feature-item { border-right: none; padding: 20px 16px !important; text-align: center; min-height: auto; }
  .feature-item h4 { font-size: 16px !important; line-height: 1.25 !important; margin-bottom: 4px !important; }
  .feature-item p { font-size: 13px !important; line-height: 1.4 !important; }

  /* Hygienist & two-col — force single column */
  .hygienist-split { grid-template-columns: 1fr !important; gap: 24px !important; }
  .hygienist-image { order: 2; width: 100%; height: 220px; aspect-ratio: auto; border-radius: 16px; }
  .hygienist-content { order: 1; width: 100%; }
  .two-col-content { grid-template-columns: 1fr !important; gap: 32px !important; }
  .values-list { order: 2; }
  .text-block { order: 1; }

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

  /* Before/after */
  .before-after-grid { grid-template-columns: 1fr !important; }

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

  /* Forms */
  .form-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* CTA Banner */
  .cta-banner { padding: 48px 20px 120px !important; }

  /* Review proof */
  .review-proof { margin-top: 2px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr !important; gap: 24px; width: 100%; max-width: 100%; }
  .contact-info-card { padding: 28px 24px; border-radius: 20px; width: 100%; max-width: 100%; box-sizing: border-box; }
  .contact-map { width: 100%; max-width: 100%; height: 320px; border-radius: 20px; overflow: hidden; box-sizing: border-box; min-height: auto; }
  .contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* Section spacing */
  section { margin-bottom: 32px; }

  /* Nav phone */
  .nav-phone span { display: none; }
}

@media (min-width: 390px) {
  .nav-phone span { display: inline; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .container { padding: 0 16px; }
  .features-row { grid-template-columns: 1fr; }
}

/* ===== SERVICES ACCORDION NAV ===== */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { cursor: pointer; display: inline-flex; align-items: center; gap: 4px; }
.nav-dropdown-toggle::after { content: ' ▾'; font-size: 0.7em; transition: transform 0.25s ease; }
.nav-dropdown.open .nav-dropdown-toggle::after { transform: rotate(180deg); }
.nav-dropdown-menu {
  display: none; position: absolute; top: 100%; left: 0; background: white;
  min-width: 260px; box-shadow: 0 8px 30px rgba(0,0,0,0.12); border-radius: 12px;
  padding: 12px 0; z-index: 1000; max-height: 80vh; overflow-y: auto;
}
.nav-dropdown.open .nav-dropdown-menu { display: block; }
.nav-dropdown-menu a {
  display: block; padding: 8px 20px; color: var(--gray-600); font-size: 0.88rem;
  text-decoration: none; white-space: nowrap;
}
.nav-dropdown-menu a:hover { background: var(--teal-50); color: var(--teal-700); }

/* Mobile Accordion Nav */
.mobile-accordion { border-bottom: 1px solid var(--gray-200); }
.mobile-accordion-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 0; font-size: 16px; font-weight: 600; color: var(--gray-800);
  cursor: pointer; border: none; background: none; width: 100%; text-align: left;
}
.mobile-accordion-toggle::after {
  content: '+'; font-size: 20px; color: var(--gray-400); transition: transform 0.3s ease;
}
.mobile-accordion.open > .mobile-accordion-toggle::after {
  content: '−'; transform: rotate(180deg);
}
.mobile-accordion-content {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.mobile-accordion.open > .mobile-accordion-content { max-height: 500px; }
.mobile-accordion-content a {
  display: block; padding: 10px 0 10px 12px; color: var(--gray-600);
  text-decoration: none; font-size: 14px; border-bottom: 1px solid var(--gray-100);
}
.mobile-accordion-content a:last-child { border-bottom: none; }
.mobile-accordion-content a:hover { color: var(--teal-700); }

/* Category headers inside services accordion */
.mobile-category-toggle {
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0; font-size: 15px; font-weight: 600; color: var(--teal-700);
  cursor: pointer; border: none; background: none; width: 100%; text-align: left;
}
.mobile-category-toggle::after {
  content: '+'; font-size: 16px; color: var(--teal-400); transition: transform 0.3s ease;
}
.mobile-category.open > .mobile-category-toggle::after { content: '−'; }
.mobile-category-links {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.mobile-category.open > .mobile-category-links { max-height: 300px; }
.mobile-category-links a {
  display: block; padding: 8px 0 8px 20px; color: var(--gray-600);
  text-decoration: none; font-size: 13px;
}
.mobile-category-links a:hover { color: var(--teal-700); }

/* Service page detail */
.service-detail-section { padding: 80px 0; }
.service-detail-split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.service-detail-split.reverse { direction: rtl; }
.service-detail-split.reverse > * { direction: ltr; }
.service-detail-content .section-label { margin-bottom: 12px; }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content p { margin-bottom: 12px; line-height: 1.7; }
.service-detail-list { list-style: none; padding: 0; margin: 20px 0; }
.service-detail-list li { padding: 8px 0; padding-left: 28px; position: relative; color: var(--gray-600); }
.service-detail-list li::before { content: '✓'; position: absolute; left: 0; color: var(--teal-500); font-weight: 700; }
.service-detail-image { border-radius: var(--radius-lg); overflow: hidden; min-height: 300px; background: var(--gray-100); }
.service-detail-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 768px) {
  .service-detail-split { grid-template-columns: 1fr; gap: 32px; }
  .service-detail-split.reverse { direction: ltr; }
}
