/* =============================================
   CLEANING WITH CARE — Main Stylesheet
   Primary: #2a7c6f | White: #ffffff
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Inter:wght@300;400;500;600&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --teal:        #2a7c6f;
  --teal-dark:   #1f5f55;
  --teal-light:  #d8f0ec;
  --teal-mid:    #3a9688;
  --white:       #ffffff;
  --off-white:   #f7fcfb;
  --text-dark:   #1a2e2b;
  --text-mid:    #3d5a55;
  --text-soft:   #6b8e88;
  --border:      #c8e6e1;
  --shadow-sm:   0 2px 8px rgba(42,124,111,0.08);
  --shadow-md:   0 6px 24px rgba(42,124,111,0.14);
  --shadow-lg:   0 16px 48px rgba(42,124,111,0.18);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.25s ease;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

.container {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--text-dark);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
}

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

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

.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--teal-light);
  border-color: var(--teal-light);
  transform: translateY(-2px);
}

/* ── Section Labels ── */
.section-eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-light);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--text-dark);
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-mid);
  max-width: 560px;
  line-height: 1.7;
}

.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-header .section-subtitle {
  margin: 0 auto;
}

/* ── Divider ── */
.divider {
  width: 56px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin: 16px auto 0;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

/* Top bar */
.navbar-topbar {
  background: var(--teal);
  padding: 8px 0;
}
.navbar-topbar .container {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.topbar-contact {
  display: flex;
  align-items: center;
  gap: 20px;
}
.topbar-contact a {
  color: rgba(255,255,255,0.92);
  font-size: 0.83rem;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: color var(--transition);
}
.topbar-contact a:hover { color: var(--white); }
.topbar-contact svg { flex-shrink: 0; }

.topbar-social {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 16px;
  border-left: 1px solid rgba(255,255,255,0.25);
}
.topbar-social a {
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transition: all var(--transition);
}
.topbar-social a:hover {
  background: rgba(255,255,255,0.25);
  color: var(--white);
}

/* Main nav */
.navbar-main {
  padding: 0;
}
.navbar-main .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  border: 2px solid var(--teal-light);
}
.logo-placeholder {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
  font-family: var(--font-display);
  flex-shrink: 0;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--teal);
  font-weight: 700;
}
.logo-text span {
  font-size: 0.72rem;
  color: var(--text-soft);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

.navbar-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.navbar-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-mid);
  padding: 8px 16px;
  border-radius: 8px;
  transition: all var(--transition);
  position: relative;
}
.navbar-nav a:hover,
.navbar-nav a.active {
  color: var(--teal);
  background: var(--teal-light);
}
.navbar-nav a.active::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 2px;
  background: var(--teal);
  border-radius: 1px;
}

.navbar-cta {
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
  border-radius: 8px;
  transition: background var(--transition);
}
.hamburger:hover { background: var(--teal-light); }
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
  transition: all var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 2px solid var(--border);
  box-shadow: var(--shadow-md);
  padding: 16px 0 24px;
  z-index: 998;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 12px 24px;
  color: var(--text-mid);
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}
.mobile-menu a:hover,
.mobile-menu a.active {
  color: var(--teal);
  background: var(--teal-light);
  border-left-color: var(--teal);
}
.mobile-menu .mobile-contact {
  padding: 16px 24px 0;
  margin-top: 12px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.mobile-menu .mobile-contact a {
  border-left: none;
  padding: 8px 0;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 60%, var(--teal-mid) 100%);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}

.hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.hero-badge::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #7effd0;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  color: var(--white);
  margin-bottom: 20px;
  line-height: 1.15;
}
.hero-title em {
  font-style: italic;
  color: #a8f0e0;
}

.hero-desc {
  color: rgba(255,255,255,0.88);
  font-size: 1.1rem;
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
}

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

/* Hero stats */
.hero-stats {
  display: flex;
  gap: 28px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.stat-item { text-align: center; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.stat-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-card {
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  color: var(--white);
  max-width: 340px;
  width: 100%;
}
.hero-icon-wrap {
  width: 90px;
  height: 90px;
  background: rgba(255,255,255,0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 2.8rem;
}
.hero-card h3 {
  color: var(--white);
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.hero-card p {
  color: rgba(255,255,255,0.8);
  font-size: 0.92rem;
  line-height: 1.65;
}
.hero-floating-tag {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--white);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.82rem;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar {
  background: var(--off-white);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}
.trust-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
}
.trust-item svg { color: var(--teal); flex-shrink: 0; }

/* ============================================
   SERVICES PREVIEW (Home)
   ============================================ */
.services-preview {
  padding: 100px 0;
  background: var(--white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--teal);
}

.service-card-icon {
  background: var(--teal-light);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.8rem;
  transition: background var(--transition);
}
.service-card:hover .service-card-icon {
  background: var(--teal);
}
.service-card:hover .service-card-icon span {
  filter: brightness(10);
}

.service-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.service-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}
.service-card-body p {
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 24px;
}
.service-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ============================================
   WHY US
   ============================================ */
.why-us {
  padding: 100px 0;
  background: var(--off-white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.why-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
  transform: translateY(-4px);
}
.why-icon {
  width: 64px;
  height: 64px;
  background: var(--teal-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.why-card p {
  color: var(--text-mid);
  font-size: 0.88rem;
  line-height: 1.65;
}

/* ============================================
   TESTIMONIALS PREVIEW
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: var(--white);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--teal);
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--teal-light);
  line-height: 1;
  position: absolute;
  top: 16px;
  left: 24px;
  leading-trim: both;
  text-edge: cap;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: #f4b942;
  font-size: 0.95rem;
}
.testimonial-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.author-info strong {
  display: block;
  font-size: 0.92rem;
  color: var(--text-dark);
}
.author-info span {
  font-size: 0.8rem;
  color: var(--text-soft);
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  background: linear-gradient(135deg, var(--teal-dark), var(--teal));
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-band .container { position: relative; z-index: 1; }
.cta-band h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--white);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   QUOTE FORM
   ============================================ */
.quote-section {
  padding: 100px 0;
  background: var(--off-white);
}

.quote-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.quote-info h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin-bottom: 16px;
}
.quote-info p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.quote-contact-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.quote-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text-mid);
  font-size: 0.95rem;
}
.qc-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  flex-shrink: 0;
}

.quote-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text-dark);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(42,124,111,0.12);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px;
  color: var(--teal);
}
.form-success.visible { display: block; }
.form-success .success-icon {
  font-size: 3rem;
  margin-bottom: 12px;
}
.form-success h3 { font-size: 1.3rem; margin-bottom: 8px; color: var(--text-dark); }
.form-success p  { color: var(--text-mid); font-size: 0.95rem; }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 50px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 12px;
}
.page-hero p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  max-width: 500px;
  margin: 0 auto;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-page {
  padding: 80px 0 100px;
}

.service-section {
  margin-bottom: 80px;
  padding-bottom: 80px;
  border-bottom: 1px solid var(--border);
}
.service-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.service-section-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.service-section-inner.reverse { direction: rtl; }
.service-section-inner.reverse > * { direction: ltr; }

.service-img-block {
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  position: relative;
  overflow: hidden;
}
.service-img-emoji {
  font-size: 6rem;
  opacity: 0.6;
}

.service-content .section-eyebrow { margin-bottom: 12px; }
.service-content h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 16px;
}
.service-content p {
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}
.service-includes {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
}
.service-includes li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-mid);
  font-size: 0.92rem;
}
.service-includes li::before {
  content: '✓';
  color: var(--teal);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonials-page {
  padding: 80px 0 100px;
}
.testimonials-page .testimonials-grid {
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* ============================================
   GET A QUOTE PAGE
   ============================================ */
.get-quote-page {
  padding: 80px 0 100px;
}
.get-quote-page .quote-wrapper {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.75);
  padding: 64px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand .logo-text strong { color: #7effd0; }
.footer-brand .logo-text span  { color: rgba(255,255,255,0.5); }
.footer-tagline {
  margin-top: 16px;
  font-size: 0.9rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.65);
  max-width: 280px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer-col h4 {
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.footer-col ul li {
  margin-bottom: 10px;
}
.footer-col ul a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-col ul a:hover { color: #7effd0; }

.footer-col address {
  font-style: normal;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-col address a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  transition: color var(--transition);
  line-height: 1.5;
}
.footer-col address a:hover { color: #7effd0; }
.footer-col address svg { flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: #7effd0; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container          { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual              { display: none; }
  .quote-wrapper            { grid-template-columns: 1fr; gap: 40px; }
  .service-section-inner    { grid-template-columns: 1fr; gap: 32px; }
  .service-section-inner.reverse { direction: ltr; }
  .footer-grid              { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar-nav, .navbar-cta  { display: none; }
  .hamburger                { display: flex; }
  .navbar-main              { position: relative; }

  .hero                     { padding: 72px 0 60px; }
  .hero-stats               { gap: 20px; }
  .stat-number              { font-size: 1.6rem; }

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

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

  .navbar-topbar .container { justify-content: center; }
  .topbar-contact           { flex-wrap: wrap; justify-content: center; gap: 12px; }

  .services-grid            { grid-template-columns: 1fr; }
  .why-grid                 { grid-template-columns: 1fr 1fr; }
  .testimonials-grid        { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-actions             { flex-direction: column; }
  .hero-stats               { flex-wrap: wrap; justify-content: center; }
  .why-grid                 { grid-template-columns: 1fr; }
  .cta-band-actions         { flex-direction: column; align-items: center; }
  .quote-form-card          { padding: 28px 20px; }
  .topbar-social            { display: none; }
  .hero-badge               { font-size: 0.72rem; padding: 5px 12px; }
}

/* ── Reduced motion ── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

/* ============================================
   RESULTS — BEFORE & AFTER SECTION
   ============================================ */

.results-section {
  padding: 100px 0;
  background: var(--off-white);
}

/* Viewer: arrows + stage in a row */
.results-viewer {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

/* ── Arrow buttons ── */
.results-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  z-index: 2;
}
.results-arrow:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.results-arrow:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  pointer-events: none;
}

/* ── Stage: holds all pairs, only .active shows ── */
.results-stage {
  flex: 1;
  min-width: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
  /* 4:3 aspect ratio via padding trick on a child */
}

/* ── Individual pair ── */
.results-pair {
  display: none;
  position: relative;
  /* 4:3 */
  aspect-ratio: 4 / 3;
  width: 100%;
  overflow: hidden;
  user-select: none;
  -webkit-user-select: none;
  cursor: col-resize;
  border-radius: var(--radius-lg);
}
.results-pair.active { display: block; }

/* After image sits full-width underneath */
.rp-after,
.rp-before {
  position: absolute;
  inset: 0;
}
.rp-after img,
.rp-before img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}

/* Before image is clipped on the left — JS sets width */
.rp-before {
  width: 50%;          /* start at 50% */
  overflow: hidden;
  z-index: 1;
}
.rp-before img {
  width: 100vw;        /* img stays full-width inside the clip */
  max-width: none;
  /* match the stage's max rendered width — overridden by JS */
}

/* ── Drag handle ── */
.rp-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;           /* start at 50% */
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: col-resize;
  touch-action: none;
}
.rp-handle-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 8px rgba(0,0,0,0.35);
  border-radius: 2px;
}
.rp-handle-circle {
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  color: var(--teal);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.rp-handle:active .rp-handle-circle,
.rp-handle.dragging .rp-handle-circle {
  transform: scale(1.12);
  box-shadow: 0 4px 18px rgba(0,0,0,0.35);
}
.rp-handle:focus-visible .rp-handle-circle {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
}

/* ── Before / After labels ── */
.rp-labels {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 16px 20px;
}
.rp-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 50px;
}

/* ── Thumbnail strip ── */
.results-thumbs {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4px 2px;
}

.thumb-item {
  flex-shrink: 0;
  width: 100px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 3px solid transparent;
  background: transparent;
  cursor: pointer;
  transition: all var(--transition);
  box-shadow: var(--shadow-sm);
  padding: 0;
  position: relative;   /* badge anchors to this */
  display: block;
}
.thumb-item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: calc(var(--radius) - 3px);
}
/* Hide the text label — badge replaces it */
.thumb-item span {
  display: none;
}
/* Number badge — top-left, white circle */
.thumb-item::before {
  content: attr(data-badge);
  position: absolute;
  top: 7px;
  left: 7px;
  z-index: 2;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
  line-height: 1;
}
.thumb-item:hover {
  border-color: var(--teal-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.thumb-item.active {
  border-color: var(--teal);
  box-shadow: 0 0 0 1px var(--teal), var(--shadow-md);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .thumb-item { width: 78px; }
}
@media (max-width: 480px) {
  .thumb-item { width: 64px; }
  .thumb-item::before { width: 22px; height: 22px; font-size: 0.68rem; top: 5px; left: 5px; }
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .results-arrow {
    width: 38px;
    height: 38px;
  }
  .rp-handle-circle {
    width: 40px;
    height: 40px;
  }
  .thumb-item {
    width: 76px;
  }
}
@media (max-width: 480px) {
  .results-viewer {
    gap: 8px;
  }
  .results-arrow {
    width: 34px;
    height: 34px;
  }
  .results-arrow svg {
    width: 16px;
    height: 16px;
  }
  .thumb-item {
    width: 64px;
  }
  .thumb-item span {
    font-size: 0.65rem;
  }
}
/* ── END RESULTS SECTION ── */