/*
Theme Name: Premium Smile Dental Care
Theme URI: https://premiumsmiledentalcare.com
Author: Haseeb Akbar
Description: Custom WordPress theme for Premium Smile Dental Care clinic in Gulshan-e-Ravi, Lahore. Navy/Teal/Coral design system with Playfair Display + Inter typography.
Version: 3.0
License: GNU General Public License v2 or later
Text Domain: premium-smile
*/

/* ============================================================
   PREMIUM SMILE DENTAL CARE — V3 Design System
   Navy / Teal / Coral on Warm Beige
   Typography: Playfair Display + Inter
   ============================================================ */

/* --- GOOGLE FONTS --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500;1,600;1,700&display=swap');

/* --- DESIGN TOKENS --- */
:root {
  /* Colors */
  --color-navy: #1A3A52;
  --color-navy-light: #244d6b;
  --color-navy-dark: #0f2636;
  --color-teal: #2D9B9E;
  --color-teal-light: #3ab5b8;
  --color-teal-dark: #237a7c;
  --color-coral: #F4A582;
  --color-coral-light: #f7bda2;
  --color-coral-dark: #e88a60;
  --color-beige: #F7F5F2;
  --color-charcoal: #2C2C2C;
  --color-white: #FFFFFF;
  --color-text-muted: #6B7280;
  --color-border: #E5E2DD;
  --color-border-light: #EDEAE6;

  /* Typography */
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Spacing */
  --section-padding: 80px;
  --section-padding-mobile: 48px;
  --card-padding: 32px;
  --card-radius: 12px;
  --btn-radius: 8px;
  --grid-gap: 32px;
  --max-width: 1200px;

  /* Shadows */
  --shadow-card: 0 2px 12px rgba(26, 58, 82, 0.06);
  --shadow-card-hover: 0 8px 24px rgba(26, 58, 82, 0.1);
  --shadow-btn: 0 4px 14px rgba(244, 165, 130, 0.35);

  /* Transitions */
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- GLOBAL RESETS --- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-charcoal);
  background-color: var(--color-beige);
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--color-navy);
  line-height: 1.2;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  font-weight: 600;
  line-height: 1.15;
}

h2 {
  font-size: 36px;
  font-weight: 600;
  line-height: 1.2;
}

h2::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--color-teal);
  margin-top: 16px;
}

h3 {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: var(--color-charcoal);
}

a {
  color: var(--color-teal);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--color-teal-dark);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* --- LAYOUT UTILITIES --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.section-padding {
  padding: var(--section-padding) 0;
}

.bg-beige { background-color: var(--color-beige); }
.bg-white { background-color: var(--color-white); }
.bg-navy { background-color: var(--color-navy); }

.grid {
  display: grid;
  gap: var(--grid-gap);
}

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

.flex {
  display: flex;
  gap: var(--grid-gap);
}

/* --- SECTION HEADER --- */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}

.section-header h2::after {
  margin-left: auto;
  margin-right: auto;
}

.section-tagline {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 12px;
}

.section-header p {
  color: var(--color-text-muted);
  font-size: 16px;
  margin-top: 16px;
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  border-radius: var(--btn-radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  line-height: 1;
  min-height: 44px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-coral-light), var(--color-coral));
  color: var(--color-white);
  border-color: var(--color-coral);
  box-shadow: var(--shadow-btn);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-coral), var(--color-coral-dark));
  color: var(--color-white);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(244, 165, 130, 0.45);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(244, 165, 130, 0.3);
}

.btn-secondary {
  background: var(--color-white);
  color: var(--color-navy);
  border-color: var(--color-navy);
}

.btn-secondary:hover {
  background: var(--color-navy);
  color: var(--color-white);
}

.btn-secondary:active {
  background: var(--color-navy-dark);
  color: var(--color-white);
  border-color: var(--color-navy-dark);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

.btn-teal:hover {
  background: var(--color-teal-dark);
  border-color: var(--color-teal-dark);
  color: var(--color-white);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 14px;
}

.btn-link {
  background: none;
  border: none;
  color: var(--color-teal);
  padding: 0;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 3px;
  min-height: auto;
}

.btn-link:hover {
  color: var(--color-coral);
}

/* --- HEADER / NAVIGATION --- */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

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

.logo-icon {
  width: 42px;
  height: 42px;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: var(--color-navy);
  line-height: 1.2;
}

.logo-text span {
  display: block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  color: var(--color-text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 8px;
}

.nav-link {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-charcoal);
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all var(--transition);
}

.nav-link:hover {
  color: var(--color-teal);
  background: rgba(45, 155, 158, 0.06);
}

.nav-link.active {
  color: var(--color-teal);
}

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--color-navy);
  cursor: pointer;
  padding: 8px;
}

/* --- HERO SECTION --- */
.hero-section {
  padding: 80px 0;
  background: var(--color-white);
}

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

.hero-subtitle {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.hero-section h1 {
  margin-bottom: 24px;
}

.hero-description {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* --- BEFORE/AFTER SLIDER --- */
.before-after-slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--card-radius);
  border: 3px solid var(--color-teal);
  aspect-ratio: 4/3;
  background: var(--color-border);
}

.slider-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.after-image-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
}

.before-image-wrapper {
  position: absolute;
  top: 0; left: 0;
  width: 50%; height: 100%;
  overflow: hidden;
  border-right: 3px solid var(--color-teal);
}

.slider-label {
  position: absolute;
  top: 12px;
  padding: 4px 14px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  pointer-events: none;
}

.label-before {
  left: 12px;
  background: var(--color-navy);
  color: var(--color-white);
}

.label-after {
  right: 12px;
  background: var(--color-teal);
  color: var(--color-white);
}

.slider-range-input {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  cursor: col-resize;
  z-index: 3;
  margin: 0;
}

.slider-range-input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 2px; height: 9999px;
  background: transparent;
  cursor: col-resize;
}

.slider-handle-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border: 3px solid var(--color-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--color-teal);
  pointer-events: none;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

/* --- CREDENTIAL STRIP --- */
.credential-strip {
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 0;
}

.credential-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.credential-badge {
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  background: var(--color-navy);
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.5px;
}

.credential-rating {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
}

.credential-rating .star {
  color: #E5A100;
  font-size: 20px;
}

.credential-rating .count {
  color: var(--color-text-muted);
  font-weight: 400;
}

/* --- SERVICE CARDS --- */
.service-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
  text-align: center;
}

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

.service-icon-wrapper {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--color-teal);
  background: rgba(45, 155, 158, 0.08);
  border-radius: var(--card-radius);
}

.service-card-title {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 12px;
}

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

.service-card-link {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-coral);
  text-decoration: none;
  transition: color var(--transition);
}

.service-card-link:hover {
  color: var(--color-coral-dark);
}

/* --- TESTIMONIALS --- */
.testimonials-section {
  background: var(--color-white);
}

.testimonial-carousel-container {
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s ease;
}

.testimonial-slide {
  min-width: 100%;
  padding: 40px;
  text-align: center;
}

.testimonial-quote {
  font-family: var(--font-heading);
  font-size: 22px;
  font-style: italic;
  color: var(--color-navy);
  line-height: 1.6;
  margin-bottom: 24px;
  position: relative;
}

.testimonial-quote::before {
  content: '\201C';
  font-size: 60px;
  color: var(--color-teal);
  opacity: 0.3;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-heading);
  line-height: 1;
}

.testimonial-author {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
}

.testimonial-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  font-size: 14px;
  color: var(--color-text-muted);
}

.star-rating {
  color: #E5A100;
}

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

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--color-border);
  background: var(--color-white);
  color: var(--color-navy);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}

.carousel-btn:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

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

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-border);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
}

.carousel-dot.active {
  background: var(--color-teal);
  width: 28px;
  border-radius: 5px;
}

/* --- LOCAL TRUST SECTION --- */
.local-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.trust-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

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

.trust-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(45, 155, 158, 0.08);
  border-radius: var(--card-radius);
  font-size: 22px;
  color: var(--color-teal);
}

.trust-title {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.trust-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

.local-map-wrapper {
  border-radius: var(--card-radius);
  overflow: hidden;
  height: 100%;
  min-height: 380px;
  box-shadow: var(--shadow-card);
}

.local-map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  border: 0;
}

/* --- TRUST CARDS (beige bg, white cards) --- */
.trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--grid-gap);
}

.trust-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  text-align: center;
}

.trust-card-icon {
  font-size: 40px;
  color: var(--color-teal);
  margin-bottom: 16px;
}

.trust-card h4 {
  margin-bottom: 12px;
}

.trust-card p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* --- FOOTER --- */
.site-footer {
  background: var(--color-navy);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
}

.footer-logo-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: var(--color-white);
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  margin-bottom: 0;
}

.footer-heading {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-white);
  margin-bottom: 20px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 14px;
  transition: color var(--transition);
}

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

.footer-contact-info {
  display: flex;
  flex-direction: column;
}
.footer-contact-info > div {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}
.footer-contact-icon {
  color: var(--color-teal-light);
  flex-shrink: 0;
  margin-top: 4px;
}

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.hours-row .day { color: rgba(255,255,255,0.65); }
.hours-row .time { color: var(--color-white); font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.45);
}

/* --- WHATSAPP FLOATING --- */
.whatsapp-floating {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: transform var(--transition);
}

.whatsapp-floating:hover {
  transform: scale(1.1);
  color: white;
}

.whatsapp-tooltip {
  position: absolute;
  right: 68px;
  top: 50%;
  transform: translateY(-50%);
  background: var(--color-charcoal);
  color: white;
  padding: 8px 14px;
  border-radius: 6px;
  font-size: 13px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}

.whatsapp-floating:hover .whatsapp-tooltip {
  opacity: 1;
}

/* --- INTERIOR HERO (Sub-pages) --- */
.interior-hero {
  background: var(--color-navy);
  padding: 50px 0;
  color: var(--color-white);
}

.interior-hero h1 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.interior-hero p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 0;
}

.breadcrumbs {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.5);
}

.breadcrumbs a {
  color: var(--color-teal-light);
}

.breadcrumbs li + li::before {
  content: '›';
  margin-right: 8px;
  color: rgba(255,255,255,0.3);
}

/* --- ABOUT PAGE --- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: start;
}

.about-photo-wrapper {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.credentials-box {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
  margin-top: 24px;
  border-left: 4px solid var(--color-teal);
}

.credentials-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}

.credentials-list li strong {
  display: block;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.credentials-list li span {
  font-size: 14px;
  color: var(--color-text-muted);
}

/* --- SERVICE PAGE TEMPLATE --- */
.service-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-hero-grid h1 {
  color: var(--color-navy);
}

.service-hero-grid .service-subtitle {
  font-size: 17px;
  color: var(--color-text-muted);
  line-height: 1.7;
}

.service-img-wrapper {
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-img-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: var(--card-radius);
}

.content-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
}

.timeline-steps {
  display: flex;
  flex-direction: column;
  gap: 32px;
  position: relative;
  padding-left: 60px;
}

.timeline-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.timeline-step {
  position: relative;
}

.timeline-step-number {
  position: absolute;
  left: -60px;
  top: 0;
  width: 40px;
  height: 40px;
  background: var(--color-teal);
  color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  z-index: 1;
}

.timeline-step h4 {
  margin-bottom: 8px;
}

.timeline-step p {
  font-size: 14px;
  color: var(--color-text-muted);
  margin-bottom: 0;
}

/* Comparison cards (types of fillings, materials) */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.comparison-card {
  background: rgba(45, 155, 158, 0.06);
  border-radius: var(--card-radius);
  padding: 24px;
  border: 1px solid var(--color-border);
}

.comparison-card h4 {
  color: var(--color-teal);
  margin-bottom: 12px;
}

.comparison-card .pros, .comparison-card .cons {
  font-size: 14px;
  margin-bottom: 8px;
}

.comparison-card .pros::before { content: '✓ '; color: var(--color-teal); font-weight: 700; }
.comparison-card .cons::before { content: '✗ '; color: var(--color-coral); font-weight: 700; }

/* Comfort callout box */
.comfort-callout {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.comfort-callout h4 {
  color: var(--color-white);
  margin-bottom: 8px;
}

.comfort-callout p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 0;
  font-size: 14px;
}

.comfort-callout-icon {
  font-size: 32px;
  min-width: 40px;
}

/* Recovery timeline */
.recovery-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.recovery-list li .icon {
  font-size: 20px;
  min-width: 24px;
}

.recovery-list li strong {
  color: var(--color-navy);
}

/* Duration bar */
.duration-bar {
  display: flex;
  align-items: center;
  gap: 0;
  margin: 24px 0;
}

.duration-segment {
  flex: 1;
  text-align: center;
  padding: 12px 8px;
  font-size: 13px;
  font-weight: 500;
  border-top: 4px solid var(--color-teal);
  position: relative;
}

.duration-segment::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 12px;
  height: 12px;
  background: var(--color-teal);
  border-radius: 50%;
}

/* --- FAQ ACCORDION --- */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: var(--color-white);
  border-radius: var(--card-radius);
  margin-bottom: 12px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  cursor: pointer;
  text-align: left;
  transition: all var(--transition);
}

.faq-question:hover {
  color: var(--color-teal);
}

.faq-icon {
  font-size: 20px;
  color: var(--color-teal);
  transition: transform var(--transition);
  min-width: 24px;
  text-align: center;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

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

.faq-item.open .faq-answer {
  display: block;
}

/* --- GALLERY / BEFORE-AFTER PAGE --- */
.gallery-filters {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: var(--btn-radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: var(--color-charcoal);
  cursor: pointer;
  transition: all var(--transition);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-teal);
  color: var(--color-white);
  border-color: var(--color-teal);
}

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

.gallery-item-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition);
}

.gallery-item-card:hover {
  box-shadow: var(--shadow-card-hover);
}

.gallery-item-info {
  padding: 20px;
}

.gallery-item-tag {
  display: inline-block;
  padding: 4px 12px;
  background: var(--color-teal);
  color: var(--color-white);
  font-size: 12px;
  font-weight: 600;
  border-radius: 20px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.gallery-item-title {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-navy);
  margin-bottom: 4px;
}

.gallery-item-time {
  font-size: 13px;
  color: var(--color-text-muted);
}

/* --- REVIEWS PAGE --- */
.reviews-summary-card {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--card-radius);
  padding: 40px;
  text-align: center;
  margin-bottom: 40px;
}

.reviews-summary-rating {
  font-family: var(--font-heading);
  font-size: 64px;
  font-weight: 700;
  color: #E5A100;
  line-height: 1;
}

.review-list-items {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.review-single-card {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.reviewer-name {
  font-weight: 600;
  color: var(--color-navy);
}

.review-date {
  font-size: 13px;
  color: var(--color-text-muted);
}

.review-card-stars {
  color: #E5A100;
  margin-bottom: 8px;
}

/* --- LOCAL SEO PAGE --- */
.local-seo-intro {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: start;
}

.landmark-box {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  border-left: 4px solid var(--color-teal);
  box-shadow: var(--shadow-card);
  margin-bottom: 24px;
}

.landmark-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.landmark-list li {
  font-size: 14px;
  padding-left: 20px;
  position: relative;
}

.landmark-list li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--color-teal);
}

/* --- CONTACT PAGE --- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 40px;
}

.contact-info-panel {
  background: var(--color-navy);
  color: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
}

.contact-info-panel h3 {
  color: var(--color-white);
}

.contact-form-wrapper {
  background: var(--color-white);
  border-radius: var(--card-radius);
  padding: var(--card-padding);
  box-shadow: var(--shadow-card);
}

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

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-navy);
  margin-bottom: 6px;
}

.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--btn-radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-charcoal);
  transition: border-color var(--transition);
  background: var(--color-beige);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-teal);
  box-shadow: 0 0 0 3px rgba(45, 155, 158, 0.1);
}

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

/* --- CTA BANNER --- */
.cta-banner {
  background: var(--color-navy);
  color: var(--color-white);
  padding: 60px 0;
  text-align: center;
}

.cta-banner h2 {
  color: var(--color-white);
}

.cta-banner h2::after {
  background: var(--color-teal-light);
  margin-left: auto;
  margin-right: auto;
}

.cta-banner p {
  color: rgba(255,255,255,0.7);
  max-width: 600px;
  margin: 16px auto 32px auto;
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  h1 { font-size: 40px; }
  h2 { font-size: 30px; }

  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-cards-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 48px;
    --card-padding: 24px;
    --grid-gap: 20px;
  }

  h1 { font-size: 32px; }
  h2 { font-size: 26px; }

  .hero-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .about-grid,
  .contact-grid,
  .local-section,
  .local-seo-intro,
  .service-hero-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .trust-cards-grid {
    grid-template-columns: 1fr;
  }

  /* Mobile nav */
  .nav-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--color-white);
    flex-direction: column;
    padding: 16px 24px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: all var(--transition);
    z-index: 99;
  }

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

  .mobile-menu-btn {
    display: flex;
  }

  .header-actions .btn {
    display: none;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .hero-ctas .btn {
    width: 100%;
    justify-content: center;
  }

  .credential-container {
    gap: 10px;
  }

  .timeline-steps {
    padding-left: 50px;
  }

  .timeline-step-number {
    left: -50px;
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }

  .container {
    padding: 0 16px;
  }

  .credential-badge {
    font-size: 12px;
    padding: 6px 14px;
  }
}

/* --- UTILITIES --- */
.text-center { text-align: center; }
.text-navy { color: var(--color-navy); }
.text-teal { color: var(--color-teal); }
.text-coral { color: var(--color-coral); }
.text-muted { color: var(--color-text-muted); }
.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 8px; }
.mt-2 { margin-top: 16px; }
.mt-3 { margin-top: 24px; }
.mt-4 { margin-top: 32px; }
.mt-5 { margin-top: 48px; }
.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 8px; }
.mb-2 { margin-bottom: 16px; }
.mb-3 { margin-bottom: 24px; }
.mb-4 { margin-bottom: 32px; }
.mb-5 { margin-bottom: 48px; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--color-beige); }
::-webkit-scrollbar-thumb { background: var(--color-border); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--color-teal); }

/* Selection */
::selection {
  background: rgba(45, 155, 158, 0.2);
  color: var(--color-navy);
}

/* Print */
@media print {
  .site-header, .site-footer, .whatsapp-floating, .carousel-nav { display: none; }
  body { background: white; }
  .section-padding { padding: 20px 0; }
}
