/* DFW Garage Guy — Clean, professional, service-oriented */
/* Font loaded via <link> in HTML for performance. Fallback: system fonts */

:root {
  --bg: #f5f6f8;
  --bg-warm: #eef0f3;
  --surface: #fff;
  --text: #1a1a1a;
  --text-muted: #6b7280;
  --accent: #2563eb;
  --accent-light: #3b82f6;
  --accent-hover: #1d4ed8;
  --header-bg: #fff;
  --header-text: #1a1a1a;
  --border: 1px solid #e5e7eb;
  --border-strong: 1px solid #d1d5db;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, .04);
  --shadow: 0 4px 16px rgba(0, 0, 0, .06);
  --shadow-hover: 0 8px 24px rgba(0, 0, 0, .08);
  --radius: 8px;
  --radius-pill: 999px;
  --content: 680px;
  --wide: 1000px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

/* Header */
.site-header {
  background: var(--header-bg);
  color: var(--header-text);
  padding: 1.5rem 1.5rem;
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid var(--border-strong);
  box-shadow: var(--shadow-sm);
}

.site-header .wrap {
  max-width: var(--wide);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  position: relative;
}

.header-container {
  width: 100%;
}

.header-auth {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.auth-link {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  white-space: nowrap;
}

.auth-link:hover {
  color: var(--accent);
}

.auth-divider {
  color: var(--text-muted);
  opacity: 0.3;
}

@media (max-width: 768px) {
  .header-auth {
    position: static;
    justify-content: center;
    width: 100%;
    padding-top: 0.5rem;
    border-top: 1px solid var(--border);
  }
}

.site-title {
  margin: 0;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
  text-align: center;
}

.site-title a {
  color: var(--accent);
  text-decoration: none;
  transition: all .2s ease;
}

.site-title a:hover {
  color: var(--accent-hover);
  transform: scale(1.02);
  display: inline-block;
}

.site-nav {
  width: 100%;
  display: flex;
  justify-content: center;
}

.site-nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  justify-content: center;
}

.site-nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  font-size: .95rem;
  padding: .5rem .875rem;
  border-radius: 6px;
  transition: all .2s ease;
}

.site-nav a:hover {
  color: var(--accent);
  background: var(--bg);
}

.site-nav a.active {
  color: var(--accent);
  font-weight: 600;
  background: var(--bg);
}

.header-cta {
  display: inline-block;
  background: var(--accent);
  color: #fff !important;
  padding: .6rem 1.25rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: .95rem;
  white-space: nowrap;
  transition: all .2s ease;
}

.header-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Main */
main {
  position: relative;
  z-index: 1;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: var(--surface);
}

main.wide {
  max-width: var(--wide);
}

main .wrap {
  background: var(--surface);
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  border: none;
  max-width: 1000px;
  margin: 0 auto;
}

main .wrap-hero {
  position: relative;
  overflow: visible;
  max-width: var(--content);
  margin: 0 auto;
  padding: 0 1.5rem;
}

main .wrap-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent);
  border-radius: var(--radius) var(--radius) 0 0;
  display: none; /* Disabled for new homepage sections */
}

/* Typography */
h1 {
  font-size: 1.95rem;
  font-weight: 700;
  line-height: 1.25;
  margin: 0 0 1rem;
  color: var(--text);
  letter-spacing: -.02em;
}

h2 {
  font-size: 1.35rem;
  font-weight: 600;
  margin: 2.25rem 0 .85rem;
  color: var(--text);
  padding-bottom: .5rem;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}

h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 1.5rem 0 .5rem;
  color: var(--text);
}

p {
  margin: 0 0 1.1rem;
  color: var(--text);
}

p:last-child {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

ol {
  margin: 0 0 1.5rem;
  padding-left: 1.5rem;
}

ol li {
  margin-bottom: .65rem;
}

a {
  color: var(--accent);
  font-weight: 500;
}

a:hover {
  color: var(--accent-hover);
  text-decoration: underline;
}

/* Lead / hero text */
.hero p.lead {
  font-size: 1.2rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.section-head {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 2.25rem 0 .75rem;
  color: var(--text);
  border-bottom: 2px solid var(--accent);
  padding-bottom: .5rem;
  display: inline-block;
}

/* Service / city grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: .85rem;
  margin: 1.5rem 0 0;
  list-style: none;
  padding: 0;
}

.service-grid li {
  margin: 0;
}

.service-grid a {
  display: block;
  padding: 1.1rem 1.15rem;
  background: var(--surface);
  border: var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  font-weight: 600;
  font-size: 1.05rem;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}

.service-grid a:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
  border-color: var(--accent);
  color: var(--accent);
}

.service-grid .city {
  display: block;
}

.service-grid .tag {
  display: block;
  font-size: .8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: .25rem;
}

/* CTA block */
.cta {
  margin-top: 2.5rem;
  padding: 2rem 2rem;
  background: var(--surface);
  color: var(--text);
  border-radius: var(--radius);
  text-align: center;
  border: var(--border-strong);
  box-shadow: var(--shadow);
}

.cta p {
  margin: 0 0 1.25rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.cta p:last-child {
  margin-bottom: 0;
}

.cta a,
.cta .phone-link {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: .75rem 1.6rem;
  border-radius: var(--radius-pill);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  margin-top: .5rem;
  transition: background .2s, transform .15s;
}

.cta a:hover,
.cta .phone-link:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-1px);
}

.cta .divider {
  margin: 0 .5rem;
  opacity: .8;
}

/* CTA button group */
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 1rem;
}

.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.6rem;
  background: #fff;
  color: var(--accent);
  text-decoration: none;
  border: 2px solid var(--accent);
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.2s;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
  transform: translateY(-1px);
}

@media (max-width: 600px) {
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .cta-buttons a {
    width: 100%;
    max-width: 300px;
  }
}

/* City page: immediate conversion CTA (above the fold) */
.city-cta {
  margin: 1.75rem 0 2rem;
  padding: 1.5rem 1.75rem;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.city-cta .city-cta-head {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 1rem;
  color: #fff;
  letter-spacing: -.01em;
}

.city-cta .city-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .75rem;
}

.city-cta .city-cta-buttons a {
  display: inline-block;
  padding: .75rem 1.5rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}

.city-cta .phone-link {
  background: #fff;
  color: var(--accent) !important;
}

.city-cta .phone-link:hover {
  background: var(--bg-warm);
  color: var(--accent-hover) !important;
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(0,0,0,.1);
}

.city-cta .btn-quote {
  background: rgba(255,255,255,.2);
  color: #fff;
  border: 2px solid rgba(255,255,255,.6);
}

.city-cta .btn-quote:hover {
  background: rgba(255,255,255,.3);
  color: #fff;
  border-color: #fff;
  transform: translateY(-1px);
}

/* Quote request modal */
.quote-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .5);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s, visibility .2s;
}

.quote-overlay.quote-overlay-open {
  opacity: 1;
  visibility: visible;
}

.quote-modal-box {
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 2rem 2rem 2.25rem;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,.3);
  border: var(--border);
}

.quote-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.25rem;
  height: 2.25rem;
  border: none;
  background: var(--bg);
  color: var(--text);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  border-radius: 6px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .15s;
}

.quote-modal-close:hover {
  background: var(--bg-warm);
}

.quote-modal-title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 .5rem;
  padding-right: 2rem;
  border-bottom: none;
  padding-bottom: 0;
  display: block;
}

.quote-modal-intro {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0 0 1.5rem;
  line-height: 1.5;
}

.quote-form .quote-form-row {
  margin-bottom: 1.25rem;
}

.quote-form-row-half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 600px) {
  .quote-form-row-half {
    grid-template-columns: 1fr;
  }
}

.quote-radio-group {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.quote-radio {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #f9fafb;
  border: 1.5px solid #d1d5db;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.875rem;
  color: #374151;
  transition: all 0.2s;
}

.quote-radio:hover {
  border-color: #2563eb;
  background: #eff6ff;
}

.quote-radio input[type="radio"] {
  width: auto;
  margin: 0;
  cursor: pointer;
}

@media (max-width: 600px) {
  .quote-radio-group {
    flex-direction: column;
    gap: 8px;
  }
}

.quote-form label {
  display: block;
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: .4rem;
  color: var(--text);
}

.quote-trust-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.8125rem;
  margin-top: 1rem;
  margin-bottom: 0;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  padding: .6rem .8rem;
  font-size: 0.875rem;
  font-family: inherit;
  border: var(--border);
  border-radius: 6px;
  background: var(--surface);
  color: var(--text);
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, .15);
}

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

.quote-form-actions {
  margin-top: 1.5rem;
}

.quote-submit {
  width: 100%;
  padding: .8rem 1.25rem;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-pill);
  font-size: 0.9375rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s, transform .15s;
}

.quote-submit:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.quote-thanks {
  padding: 2rem 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.quote-thanks-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #eff6ff;
  color: #2563eb;
  font-size: 2rem;
  line-height: 64px;
  text-align: center;
  margin: 0 auto 20px;
}

.quote-thanks .quote-thanks-heading {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: .02em;
  color: var(--accent);
  margin: 0 0 1rem;
  border-bottom: none;
  padding-bottom: 0;
}

.quote-thanks p {
  margin: 0;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 28ch;
  margin-left: auto;
  margin-right: auto;
}

/* Footer */
.site-footer {
  position: relative;
  z-index: 1;
  margin-top: 4rem;
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: .9rem;
  background: var(--surface);
  border-top: 1px solid var(--border-strong);
}

.site-footer p {
  margin: 0;
  color: var(--text-muted);
}

.footer-cities {
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .5rem 1.1rem;
}

.footer-cities a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.footer-cities a:hover {
  color: var(--accent);
}

/* Gallery */
.gallery-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0 0;
}

.gallery-list li {
  margin: 0 0 2.75rem;
  padding: 0;
}

.gallery-list li:last-child {
  margin-bottom: 0;
}

.gallery-ba {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem;
  margin-bottom: .85rem;
}

.gallery-ba img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius);
  border: var(--border);
  background: var(--bg-warm);
}

.gallery-placeholder {
  height: 200px;
  background: var(--bg-warm);
  border: var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: .9rem;
}

.gallery-caption {
  font-size: .98rem;
  color: var(--text);
  margin: 0;
  line-height: 1.55;
}

.gallery-caption strong {
  color: var(--text);
}

@media (max-width: 520px) {
  .gallery-ba {
    grid-template-columns: 1fr;
  }
}

/* Responsive: tighten nav on small screens */
@media (max-width: 900px) {
  .site-title {
    font-size: 1.65rem;
  }
  .site-nav a {
    font-size: .88rem;
    padding: .4rem .7rem;
  }
  .header-cta {
    padding: .5rem .9rem !important;
    font-size: .88rem;
  }
}

@media (max-width: 600px) {
  .site-title {
    font-size: 1.5rem;
  }
  .site-header {
    padding: 1rem 1rem;
  }
  .site-header .wrap {
    gap: 1rem;
  }
  main {
    padding: 1.75rem 1rem 3rem;
  }
  main .wrap {
    padding: 1.75rem 1.5rem 2rem;
  }
  h1 {
    font-size: 1.65rem;
  }
}

/* ========================================
   NEW HOMEPAGE SECTIONS WITH IMAGES
   ======================================== */

/* Hero Section with Background Image */
.hero-section {
  position: relative;
  min-height: 500px;
  height: 60vh;
  max-height: 700px;
  background-image: url('../images/garage-hero.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  margin: 0;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 2rem;
}

.hero-section h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  line-height: 1.1;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
  font-size: 1.35rem;
  margin: 0 0 2rem 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.5;
}

.hero-cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary-large,
.btn-secondary-large {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius);
  transition: all .2s ease;
  display: inline-block;
}

.btn-primary-large {
  background: var(--accent);
  color: white;
  border: 2px solid var(--accent);
}

.btn-primary-large:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.3);
}

.btn-secondary-large {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary-large:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-2px);
}

/* Before/After Section */
.before-after-section {
  padding: 4rem 1.5rem;
  background: var(--surface);
}

.section-title-center {
  text-align: center;
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
  color: var(--text);
}

.section-subtitle-center {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-muted);
  margin: 0 0 3rem 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.before-after-container {
  max-width: 1000px;
  margin: 0 auto;
}

.before-after-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: contain;
}

/* Benefits Section */
.benefits-section {
  padding: 4rem 1.5rem;
  background: var(--bg);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.benefit-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: var(--border);
  transition: all .2s ease;
}

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

.benefit-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.benefit-card h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
}

.benefit-card p {
  margin: 0;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Color Options Section */
.color-options-section {
  padding: 4rem 1.5rem;
  background: var(--surface);
}

.color-showcase {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.color-options-image,
.color-detail-image {
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: 400px;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .color-showcase {
    grid-template-columns: 1fr;
  }
}

/* Pricing Section */
.pricing-section {
  padding: 4rem 1.5rem;
  background: var(--bg);
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin: 3rem 0;
}

.pricing-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: var(--radius);
  border: var(--border);
  transition: all .2s ease;
  position: relative;
}

.pricing-card.featured {
  border: 2px solid var(--accent);
  box-shadow: var(--shadow);
  transform: scale(1.05);
}

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

.pricing-card.featured:hover {
  transform: scale(1.05) translateY(-4px);
}

.popular-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: white;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 600;
}

.pricing-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: var(--border);
}

.pricing-header h3 {
  margin: 0 0 1rem 0;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--text);
}

.pricing-range {
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-features li {
  padding: 0.75rem 0;
  color: var(--text-muted);
  position: relative;
  padding-left: 1.75rem;
}

.pricing-features li:before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 600;
}

.pricing-note {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 700px;
  margin: 2rem auto 0;
  line-height: 1.6;
}

/* Service Areas Section */
.service-areas-section {
  padding: 4rem 1.5rem;
  background: var(--surface);
}

/* Final CTA Section */
.final-cta-section {
  padding: 5rem 1.5rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-light) 100%);
  color: white;
  text-align: center;
}

.final-cta-content h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}

.final-cta-content p {
  font-size: 1.2rem;
  margin: 0 0 2rem 0;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: rgba(255, 255, 255, 0.95);
}

.final-cta-content .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive Design for Hero */
@media (max-width: 768px) {
  .hero-section {
    min-height: 400px;
    height: 50vh;
    max-height: 500px;
  }

  .hero-content {
    padding: 1.5rem;
  }

  .hero-section h1 {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .section-title-center {
    font-size: 1.75rem;
  }

  .section-subtitle-center {
    font-size: 1rem;
  }

  .btn-primary-large,
  .btn-secondary-large {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-cta-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-cta-buttons a {
    width: 100%;
    text-align: center;
  }

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

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

  .pricing-card.featured {
    transform: scale(1);
  }

  .color-showcase {
    gap: 1rem;
  }

  .before-after-section,
  .benefits-section,
  .color-options-section,
  .pricing-section,
  .service-areas-section {
    padding: 3rem 1.5rem;
  }

  .final-cta-section {
    padding: 3rem 1.5rem;
  }

  .final-cta-content h2 {
    font-size: 1.75rem;
  }

  .final-cta-content p {
    font-size: 1rem;
  }
}

/* Additional fixes for proper layout */
section {
  width: 100%;
  clear: both;
}

.wrap {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

.before-after-container,
.color-showcase {
  width: 100%;
  max-width: 100%;
}
