/* DD Concrete - Static Site Styles */

/* ========== CSS VARIABLES ========== */
:root {
  /* Colors - Light Mode */
  --background: hsl(210, 5%, 98%);
  --foreground: hsl(215, 30%, 5%);
  --border: hsl(210, 8%, 88%);
  --card: hsl(210, 5%, 96%);
  --card-foreground: hsl(215, 30%, 5%);
  --card-border: hsl(210, 6%, 90%);
  --primary: hsl(211, 85%, 28%);
  --primary-foreground: hsl(210, 40%, 98%);
  --muted: hsl(210, 10%, 90%);
  --muted-foreground: hsl(215, 25%, 10%);
  
  /* Typography */
  --font-sans: Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  
  /* Spacing */
  --radius: 0.5rem;
  --shadow: 0px 4px 6px 0px hsl(215 25% 15% / 0.08), 0px 2px 4px -1px hsl(215 25% 15% / 0.05);
  --shadow-md: 0px 6px 12px 0px hsl(215 25% 15% / 0.10), 0px 4px 6px -2px hsl(215 25% 15% / 0.06);
}

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

html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-sans);
  background-color: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-top: 70px;
}

@media (min-width: 768px) {
  body {
    padding-top: 80px;
  }
}

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

a {
  color: inherit;
  text-decoration: none;
}

/* ========== LAYOUT ========== */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--background);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.header.scrolled {
  background-color: hsla(210, 5%, 98%, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  transition: opacity 0.2s;
  text-decoration: none;
}

@media (min-width: 768px) {
  .logo {
    font-size: 1.5rem;
  }
}

.logo:hover {
  opacity: 0.8;
}

.logo svg {
  flex-shrink: 0;
}

.nav {
  display: none;
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav a {
    font-weight: 500;
    transition: color 0.2s;
    padding: 0.5rem;
    min-height: 44px;
    display: flex;
    align-items: center;
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }
  
  .nav a:hover {
    color: var(--primary);
  }
}

.nav-item {
  position: relative;
}

.nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  min-width: 220px;
  padding: 0.5rem;
  display: none;
  z-index: 100;
}

.nav-item:hover .nav-dropdown,
.nav-dropdown:hover,
.nav-item.is-open .nav-dropdown {
  display: block;
}

.nav-dropdown a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: calc(var(--radius) - 2px);
  transition: background-color 0.2s;
  font-weight: 500;
  min-height: 44px;
  display: flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.nav-dropdown a:hover {
  background-color: var(--muted);
  color: var(--foreground);
}

.nav-item > a {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-item > a svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s;
}

.nav-item:hover > a svg {
  transform: rotate(180deg);
}

.header-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

@media (min-width: 768px) {
  .header-actions {
    gap: 1rem;
  }
}

.phone-link {
  font-weight: 600;
  color: var(--primary);
  padding: 0.5rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .phone-link {
    font-size: 1rem;
  }
}

.mobile-menu-btn {
  display: block;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--foreground);
  padding: 0.5rem;
  min-width: 44px;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

@media (min-width: 768px) {
  .mobile-menu-btn {
    display: none;
  }
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--background);
  z-index: 200;
  padding: 1.5rem;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.mobile-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}

.mobile-menu-header .logo {
  font-size: 1.25rem;
}

.mobile-menu-close {
  background-color: var(--muted);
  border: none;
  cursor: pointer;
  padding: 0.625rem;
  min-width: 44px;
  min-height: 44px;
  border-radius: var(--radius);
  font-size: 1.5rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  transition: background-color 0.2s ease;
}

.mobile-menu-close:hover {
  background-color: var(--border);
}

.mobile-menu nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-menu nav a {
  font-size: 1.125rem;
  font-weight: 500;
  padding: 1rem;
  min-height: 44px;
  display: flex;
  align-items: center;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  border-radius: var(--radius);
  transition: background-color 0.2s ease;
}

.mobile-menu nav a:hover,
.mobile-menu nav a:active {
  background-color: var(--muted);
}

.mobile-menu nav a.submenu-item {
  padding-left: 2rem;
  font-size: 1rem;
  color: var(--muted-foreground);
}

.mobile-menu-footer {
  margin-top: auto;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.mobile-menu-footer .phone-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1.125rem;
  min-height: 44px;
  justify-content: center;
  transition: opacity 0.2s ease;
}

.mobile-menu-footer .phone-link:hover {
  opacity: 0.9;
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  font-size: 1rem;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-color: var(--primary);
}

.btn-primary:hover {
  opacity: 0.9;
}

.btn-outline {
  background-color: transparent;
  border-color: var(--border);
  color: var(--foreground);
}

.btn-outline:hover {
  background-color: var(--muted);
}

.btn-lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

/* ========== HERO SECTION ========== */
.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .hero {
    min-height: 450px;
    padding: 4rem 0;
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.5), rgba(0,0,0,0.3));
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
}

.hero h1 {
  font-size: 2.5rem;
  font-weight: 700;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .hero h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero h1 {
    font-size: 3.75rem;
  }
}

.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .hero p {
    font-size: 1.25rem;
  }
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 640px) {
  .hero-actions {
    flex-direction: row;
  }
}

.hero-phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: white;
  font-weight: 600;
  font-size: 1.125rem;
  padding: 0.5rem;
  min-height: 44px;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.hero-phone:hover {
  text-decoration: underline;
}

/* ========== SECTIONS ========== */
.section {
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .section {
    padding: 6rem 0;
  }
}

.section-bg {
  background-color: var(--muted);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

.section-description {
  font-size: 1.125rem;
  color: var(--muted-foreground);
  max-width: 700px;
  margin: 0 auto;
}

/* ========== GRID ========== */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 768px) {
  .grid-cols-md-2 {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .grid-cols-md-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-cols-lg-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ========== CARDS ========== */
.card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.3s;
}

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

.card-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.card-content {
  padding: 1.5rem;
}

.card-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: #000000 !important;
}

.card-description {
  color: #1a1a1a !important;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.card-content p {
  color: #1a1a1a !important;
}

.card-link {
  color: var(--primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.card-link:hover {
  text-decoration: underline;
}

/* ========== TRUST BADGES ========== */
.trust-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .trust-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.trust-badge {
  text-align: center;
  padding: 1rem;
}

.trust-badge-icon {
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.trust-badge-title {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.trust-badge-subtitle {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== BENEFITS ========== */
.benefit-card {
  background-color: var(--background);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.benefit-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.benefit-description {
  color: var(--muted-foreground);
}

/* ========== PROCESS TIMELINE ========== */
.process-timeline {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .process-timeline {
    flex-direction: row;
    justify-content: space-between;
  }
}

.process-step {
  flex: 1;
  text-align: center;
  padding: 1.5rem;
}

.process-number {
  width: 50px;
  height: 50px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.process-title {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.process-description {
  color: var(--muted-foreground);
  font-size: 0.9375rem;
}

/* ========== REVIEWS ========== */
.review-card {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.review-stars {
  color: #FFD700;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.review-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.review-author {
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.review-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
}

/* ========== STATS ========== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: var(--muted-foreground);
}

/* ========== CTA PANEL ========== */
.cta-panel {
  background-color: var(--primary);
  color: var(--primary-foreground);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}

.cta-panel h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.cta-panel p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* ========== FORMS ========== */
.form-group {
  margin-bottom: 1.5rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 1rem;
  transition: border-color 0.2s;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  outline: none;
  border-color: var(--primary);
}

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

.form-error {
  color: #dc2626;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.checkbox-group input[type="checkbox"] {
  width: 1.125rem;
  height: 1.125rem;
}

/* ========== FOOTER ========== */
.footer {
  background-color: var(--card);
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.footer-column h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: var(--muted-foreground);
  transition: color 0.2s;
}

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

.footer-map-card {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.footer-map-card h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--foreground);
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

#rotating-map iframe {
  height: 450px;
}

@media (max-width: 768px) {
  #rotating-map iframe {
    height: 300px;
  }
  .footer-map-card h3 {
    font-size: 1.5rem;
  }
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  margin-top: 2rem;
  text-align: center;
  color: var(--muted-foreground);
  font-size: 0.875rem;
}

/* ========== UTILITIES ========== */
.text-center {
  text-align: center;
}

.mb-8 {
  margin-bottom: 2rem;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .md\:hidden {
    display: none;
  }
}

/* Icon */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}

/* ========== IMAGE LIGHTBOX ========== */
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.lightbox.active {
  display: flex;
}

.lightbox-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 2.5rem;
  min-width: 44px;
  min-height: 44px;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  line-height: 1;
  z-index: 10000;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: scale(1.1);
}

.lightbox-content {
  max-width: 90%;
  max-height: 90%;
  position: relative;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.project-image {
  cursor: pointer;
  transition: transform 0.2s, opacity 0.2s;
}

.project-image:hover {
  transform: scale(1.02);
  opacity: 0.9;
}

/* ========== BEFORE/AFTER SLIDER ========== */
.main-before-after-wrapper {
  max-width: 900px;
  margin: 0 auto 2rem;
}

.before-after-info {
  margin-top: 1.5rem;
  text-align: center;
}

.before-after-info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--foreground);
  margin-bottom: 0.5rem;
}

.before-after-info p {
  color: var(--muted-foreground);
  margin: 0.25rem 0;
}

.thumbnail-selector-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto;
}

.thumbnail-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 3px solid var(--border);
  background: white;
  padding: 0;
  width: 100%;
  display: block;
  box-shadow: var(--shadow);
  z-index: 1;
}

.thumbnail-card:hover {
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  z-index: 2;
}

.thumbnail-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
  pointer-events: none;
}

.thumbnail-card:hover img {
  transform: scale(1.05);
}

.thumbnail-card.active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px var(--primary), var(--shadow-md);
  transform: translateY(-2px);
}

.thumbnail-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
  color: white;
  padding: 0.5rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
  pointer-events: none;
}

.before-after-container {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
  background-color: var(--muted);
}

.before-after-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  user-select: none;
}

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

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

.after-image {
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-image .label,
.after-image .label {
  position: absolute;
  top: 1rem;
  background-color: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius);
  z-index: 2;
}

.before-image .label {
  left: 1rem;
}

.after-image .label {
  right: 1rem;
  left: auto;
}

.slider-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  cursor: ew-resize;
  z-index: 3;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background-color: white;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 3rem;
  height: 3rem;
  background-color: white;
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: transform 0.2s;
}

.slider-button:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* Mobile touch improvements */
@media (max-width: 767px) {
  .slider-handle {
    width: 40px;
  }
  
  .slider-button {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

/* ========== PRICING CALCULATOR ========== */
.calculator-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .calculator-container {
    grid-template-columns: 1fr 400px;
  }
}

.calculator-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.calc-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.calc-label {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--foreground);
}

/* Finish Type Options */
.finish-options {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 640px) {
  .finish-options {
    grid-template-columns: repeat(2, 1fr);
  }
}

.finish-option {
  cursor: pointer;
}

.finish-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.finish-card {
  padding: 1.25rem;
  background-color: var(--card);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  transition: all 0.2s;
}

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

.finish-option input:checked + .finish-card {
  background-color: var(--primary);
  border-color: var(--primary);
  color: white;
}

.finish-name {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.finish-price {
  font-size: 1.25rem;
  font-weight: 700;
}

.finish-option input:checked + .finish-card .finish-price {
  opacity: 0.95;
}

/* Input Group */
.input-group {
  position: relative;
  display: flex;
  align-items: center;
}

.calc-input {
  flex: 1;
  padding: 0.875rem 1rem;
  padding-right: 3.5rem;
  border: 2px solid var(--border);
  border-radius: var(--radius);
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-sans);
  transition: border-color 0.2s;
}

.calc-input:focus {
  outline: none;
  border-color: var(--primary);
}

.input-suffix {
  position: absolute;
  right: 1rem;
  color: var(--muted-foreground);
  font-weight: 600;
  pointer-events: none;
}

.input-hint {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  font-style: italic;
}

/* Checkbox Options */
.checkbox-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkbox-group.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .checkbox-group.checkbox-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }
}

.checkbox-option {
  cursor: pointer;
  display: block;
}

.checkbox-option input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkbox-card {
  padding: 1.25rem;
  background-color: var(--card);
  border: 2px solid var(--card-border);
  border-radius: var(--radius);
  transition: all 0.2s;
  min-height: 110px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.checkbox-option:hover .checkbox-card {
  border-color: var(--primary);
}

.checkbox-option input:checked + .checkbox-card {
  background-color: hsl(211, 85%, 95%);
  border-color: var(--primary);
}

.checkbox-title {
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.checkbox-desc {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.4;
}

/* Calculator Results */
.calculator-results {
  background-color: var(--card);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: 90px;
  height: fit-content;
}

.results-header {
  padding: 1.5rem;
  background-color: var(--primary);
  color: white;
}

.results-header h3 {
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0;
}

.results-body {
  padding: 1.5rem;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 0.75rem 0;
  gap: 1rem;
}

.result-label {
  font-weight: 500;
  color: var(--foreground);
}

.result-value {
  font-weight: 600;
  text-align: right;
  white-space: nowrap;
}

.result-subtotal {
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  margin-top: 0.5rem;
}

.result-subtotal .result-label,
.result-subtotal .result-value {
  font-weight: 600;
}

.result-addon {
  padding: 0.5rem 0;
}

.result-addon .result-label {
  font-size: 0.9375rem;
  color: var(--muted-foreground);
}

.result-addon .result-value {
  color: var(--muted-foreground);
}

.result-divider {
  height: 1px;
  background-color: var(--border);
  margin: 0.75rem 0;
}

.result-total {
  padding: 1rem 0;
  margin-top: 0.5rem;
  border-top: 2px solid var(--primary);
}

.result-total .result-label {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
}

.result-total .result-value {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--primary);
}

.result-disclaimer {
  margin-top: 1.5rem;
  padding: 1rem;
  background-color: var(--muted);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.5;
}

.addons-section {
  animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Image button for accessible lightbox */
.image-button {
  width: 100%;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
  display: block;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

/* ========== BOT PROTECTION ========== */
.no-bot {
  display: none !important;
  font-size: 0 !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -9999px !important;
}

/* ========== GOOGLE REVIEWS EMBED ========== */
.google-reviews-embed {
  max-width: 600px;
  margin: 0 auto;
}

.google-reviews-badge {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.google-badge-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.google-rating {
  width: 100%;
}

.stars-large {
  color: #FBBC04;
  font-size: 2rem;
  letter-spacing: 0.25rem;
  margin-bottom: 0.5rem;
}

.rating-text {
  color: var(--foreground);
  font-size: 1.125rem;
}

/* ========== IMPROVED TESTIMONIAL CARDS ========== */
.testimonial-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), #2563eb);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.testimonial-author {
  font-weight: 600;
  font-size: 1rem;
  color: var(--foreground);
}

.testimonial-location {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.125rem;
}

/* ========== BEFORE/AFTER SLIDER ========== */
.before-after-slider {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.slider-container {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slider-images {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}

.slider-image {
  width: 100%;
  height: auto;
  display: block;
}

.image-before {
  position: relative;
}

.image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
}

.slider-control {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-appearance: none;
  appearance: none;
  background: transparent;
  outline: none;
  margin: 0;
  cursor: ew-resize;
  z-index: 10;
}

.slider-control::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 6px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-control::-moz-range-thumb {
  width: 6px;
  height: 100%;
  background: white;
  cursor: ew-resize;
  border: none;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: rgba(0, 0, 0, 0.6);
  border: 3px solid white;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  z-index: 5;
  transition: transform 0.1s ease;
}

.slider-button svg {
  width: 30px;
  height: 30px;
  color: white;
}

.slider-labels {
  position: absolute;
  top: 1rem;
  left: 1rem;
  right: 1rem;
  display: flex;
  justify-content: space-between;
  z-index: 6;
  pointer-events: none;
}

.slider-label {
  background: rgba(0, 0, 0, 0.7);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .slider-button {
    width: 40px;
    height: 40px;
  }
  
  .slider-button svg {
    width: 24px;
    height: 24px;
  }
  
  .slider-label {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
}

.testimonial-stars {
  color: #FBBC04;
  font-size: 1.25rem;
  letter-spacing: 0.125rem;
}

.testimonial-text {
  color: var(--foreground);
  font-size: 0.9375rem;
  line-height: 1.6;
  font-style: italic;
  flex-grow: 1;
}

.testimonial-badge {
  display: inline-block;
  background: hsl(142 76% 36% / 0.1);
  color: hsl(142 76% 36%);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  align-self: flex-start;
}

/* ========== BACK TO TOP BUTTON ========== */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3rem;
  height: 3rem;
  min-width: 44px;
  min-height: 44px;
  background-color: var(--primary);
  color: var(--primary-foreground);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: translateY(100px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(-2px);
}

@media (max-width: 768px) {
  .back-to-top {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 3.5rem;
    height: 3.5rem;
  }
}
