/* ==========================================================================
   Urban Window Wash — Consolidated Stylesheet
   Extracted from inline styles across all 8 HTML pages.
   ========================================================================== */

/* ---------- Reset & Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

/* ---------- CSS Variables (Light Mode) ---------- */
:root {
  --bg-primary: #ffffff;
  --bg-secondary: #f9fafb;
  --bg-tertiary: #e8f5f0;
  --text-primary: #1a1a1a;
  --text-secondary: #4a4a4a;
  --text-tertiary: #666;
  --border-color: #e5e5e5;
  --border-light: #ddd;
  --primary-color: #00BD86;
  --primary-dark: #366F5F;
  --shadow-sm: rgba(0,0,0,0.08);
  --shadow-md: rgba(0,0,0,0.1);
  --shadow-lg: rgba(0,0,0,0.15);
}

/* ---------- CSS Variables (Dark Mode) ---------- */
[data-theme="dark"] {
  --bg-primary: #1a1a1a;
  --bg-secondary: #2a2a2a;
  --bg-tertiary: #1e3a33;
  --text-primary: #e8e8e8;
  --text-secondary: #b8b8b8;
  --text-tertiary: #999;
  --border-color: #3a3a3a;
  --border-light: #444;
  --shadow-sm: rgba(0,0,0,0.3);
  --shadow-md: rgba(0,0,0,0.4);
  --shadow-lg: rgba(0,0,0,0.5);
}

/* ---------- Body ---------- */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  transition: background 0.3s ease, color 0.3s ease;
}

/* ---------- Dark Mode Toggle ---------- */
.dark-mode-toggle {
  position: fixed;
  bottom: 20px;
  left: 20px;
  z-index: 10000;
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 12px var(--shadow-md);
  transition: all 0.3s ease;
  font-size: 1.5rem;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
  user-select: none;
}
.dark-mode-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px var(--shadow-lg);
}
.dark-mode-toggle:active {
  transform: scale(0.95);
}

/* ---------- Navigation ---------- */
nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--bg-primary);
  box-shadow: 0 2px 12px var(--shadow-sm);
  padding: 1rem 0;
  transition: background 0.3s ease;
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.nav-center {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.logo {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
}
.nav-dropdown {
  position: relative;
}
.nav-dropdown-btn {
  background: none;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  cursor: pointer;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.nav-dropdown-btn:hover {
  color: var(--primary-color);
}
.nav-dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-primary);
  box-shadow: 0 8px 24px var(--shadow-lg);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  min-width: 280px;
  padding: 0.5rem 0;
  display: none;
  z-index: 10000;
  margin-top: 0;
  padding-top: 0.5rem;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu:hover {
  display: block;
}
.nav-dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
}
.nav-phone {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary-color);
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  background: var(--bg-tertiary);
  border-radius: 8px;
  transition: all 0.2s;
}
.nav-phone:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.05rem;
  transition: all 0.3s;
  text-align: center;
  border: 2px solid var(--primary-color);
}
.btn-primary {
  background: var(--primary-color);
  color: #fff;
}
.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--primary-color);
}
.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

/* ---------- Homepage Hero (Split Layout) ---------- */
.hero-home {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 550px;
  align-items: center;
  gap: 3rem;
  max-width: 1200px;
  margin: 3rem auto;
  padding: 0 1.5rem;
}
.hero-home .hero-content h1 {
  font-size: 3rem;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--text-primary);
}
.hero-home .hero-content h1 span {
  color: var(--primary-color);
}
.hero-home .hero-content p {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-badges {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.95rem;
  color: var(--text-primary);
  font-weight: 600;
}
.badge-icon {
  font-size: 1.5rem;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-image {
  background: linear-gradient(135deg, #e8f5f0 0%, #d0ebe5 100%);
  border-radius: 16px;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: var(--primary-color);
}
.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* ---------- Service Page Hero (Full-Width Banner) ---------- */
.hero-service {
  color: #fff;
  padding: 6rem 1.5rem 4rem;
  text-align: center;
}
.hero-service h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 1rem;
  text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
}
.hero-service .hero-sub {
  font-size: 1.3rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-service .btn-outline {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.hero-service .btn-outline:hover {
  background: transparent;
  color: #fff;
}

/* ---------- Stats Bar ---------- */
.stats {
  background: var(--primary-color);
  color: #fff;
  padding: 2rem 1.5rem;
}
.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-num {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.stat-item .stat-label {
  font-size: 0.95rem;
  opacity: 0.95;
}

/* ---------- Sections ---------- */
.section {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.section-alt {
  background: var(--bg-secondary);
  margin: 0;
  max-width: none;
}
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-tag {
  display: inline-block;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--text-primary);
}
.section-sub {
  font-size: 1.15rem;
  color: var(--text-tertiary);
  max-width: 700px;
  margin: 0 auto;
}

/* ---------- Services Grid (Homepage) ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.service-box {
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-sm);
  transition: all 0.3s;
  border: 2px solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
  cursor: pointer;
}
.service-box:hover {
  border-color: var(--primary-color);
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0,189,134,0.15);
}
.service-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  display: block;
}
.service-box h3 {
  font-size: 1.4rem;
  margin-bottom: 0.75rem;
  color: var(--text-primary);
}
.service-box p {
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ---------- Process Steps ---------- */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.process-step {
  text-align: center;
  position: relative;
}
.process-num {
  width: 60px;
  height: 60px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}
.process-step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.process-step p {
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

/* ---------- Reviews ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}
.review {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border-left: 4px solid var(--primary-color);
}
.review-stars {
  color: #fbbf24;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}
.review-text {
  color: var(--text-primary);
  line-height: 1.6;
  margin-bottom: 1rem;
  font-style: italic;
}
.review-author {
  font-weight: 600;
  color: var(--text-primary);
  font-size: 0.95rem;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
}
.gallery-item {
  background: var(--bg-tertiary);
  border-radius: 12px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--primary-color);
  overflow: hidden;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service page gallery (larger) */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.gallery img {
  width: 100%;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-md);
}

/* ---------- CTA Box ---------- */
.cta-box {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: #fff;
  padding: 4rem 2rem;
  border-radius: 16px;
  text-align: center;
  margin: 4rem auto;
  max-width: 900px;
}
.cta-box h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.cta-box p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.95;
}
.cta-box .btn-primary {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.cta-box .btn-primary:hover {
  background: #e8f5f0;
}
.cta-box .btn-outline {
  border-color: #fff;
  color: #fff;
}
.cta-box .btn-outline:hover {
  background: #fff;
  color: var(--primary-color);
}

/* Inline CTA */
.inline-cta {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  margin: 3rem auto;
  max-width: 800px;
  color: #fff;
}
.inline-cta h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
}
.inline-cta p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  opacity: 0.95;
}
.inline-cta .btn {
  background: #fff;
  color: var(--primary-color);
  border-color: #fff;
}
.inline-cta .btn:hover {
  background: #e8f5f0;
}

/* ---------- Contact Form ---------- */
.contact-container {
  max-width: 700px;
  margin: 0 auto;
}
.form-group {
  margin-bottom: 1.5rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-primary);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: border 0.3s;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.form-group textarea {
  min-height: 120px;
  resize: vertical;
}
.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  padding: 0.9rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  background: var(--bg-primary);
}
.checkbox-item:hover {
  border-color: var(--primary-color);
  background: var(--bg-secondary);
}
.checkbox-item input[type="checkbox"] {
  width: auto;
  margin: 0 0.75rem 0 0;
  cursor: pointer;
  accent-color: var(--primary-color);
  transform: scale(1.2);
}
.checkbox-item input[type="checkbox"]:checked + .checkbox-label {
  font-weight: 600;
  color: var(--primary-color);
}
.checkbox-label {
  flex: 1;
  cursor: pointer;
  user-select: none;
  color: var(--text-primary);
}
.file-input {
  padding: 0.75rem !important;
  cursor: pointer;
  font-size: 0.95rem;
}
.file-input::file-selector-button {
  padding: 0.6rem 1.2rem;
  margin-right: 1rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}
.file-input::file-selector-button:hover {
  background: var(--primary-dark);
}
.form-submit {
  width: 100%;
  padding: 1.1rem;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.form-submit:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,102,204,0.3);
}
.contact-alt {
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
}
.contact-alt p {
  margin-bottom: 0.75rem;
  color: var(--text-tertiary);
}
.contact-alt a {
  font-size: 1.5rem;
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 700;
}

/* Service page inline form */
.service-form {
  max-width: 600px;
  margin: 2rem auto;
  background: var(--bg-primary);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px var(--shadow-md);
}
.service-form label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.service-form input,
.service-form textarea {
  width: 100%;
  padding: 0.9rem;
  border: 2px solid var(--border-light);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg-primary);
  color: var(--text-primary);
}
.service-form input:focus,
.service-form textarea:focus {
  outline: none;
  border-color: var(--primary-color);
}
.service-form textarea {
  min-height: 100px;
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
}
.faq-q {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
  color: var(--text-primary);
}
.faq-q:hover {
  background: var(--bg-secondary);
}
.faq-q span::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--primary-color);
  font-weight: 700;
}
.faq-q[aria-expanded="true"] span::after {
  content: '−';
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.faq-a-inner {
  padding: 0 1.5rem 1.25rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ---------- Footer ---------- */
footer {
  background: #0a0a0a;
  color: var(--text-tertiary);
  padding: 3rem 1.5rem 2rem;
  text-align: center;
}
.footer-areas {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-tertiary);
}
.footer-copy {
  font-size: 0.9rem;
  color: var(--text-tertiary);
}
.footer-copy a {
  color: var(--primary-color);
  text-decoration: none;
}
footer a {
  color: var(--primary-color);
  text-decoration: none;
}
.footer-social {
  margin: 2rem auto 1.5rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--text-primary);
  border: 2px solid #333;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s;
  padding: 10px;
}
.social-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.6;
  transition: all 0.3s;
}
.social-link:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: translateY(-3px);
}
.social-link:hover img {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* ---------- Mobile Hamburger Menu ---------- */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.hamburger span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--primary-color);
  transition: all 0.3s;
  border-radius: 3px;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(7px, 7px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg-primary);
  box-shadow: -4px 0 20px var(--shadow-md);
  z-index: 9999;
  transition: right 0.3s ease;
  overflow-y: auto;
  padding: 2rem 0;
}
.mobile-menu.active {
  right: 0;
}
.mobile-menu-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: var(--text-primary);
  padding: 0.5rem;
  line-height: 1;
}
.mobile-menu a {
  display: block;
  padding: 1rem 2rem;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-color);
  transition: all 0.2s;
}
.mobile-menu a:hover {
  background: var(--bg-tertiary);
  color: var(--primary-color);
}
.mobile-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
  display: none;
}
.mobile-overlay.active {
  display: block;
}

/* ---------- Floating CTA ---------- */
.floating-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  display: none;
}
.floating-cta a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  background: var(--primary-color);
  color: #fff;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 700;
  box-shadow: 0 4px 20px rgba(0,189,134,0.4);
  transition: all 0.3s;
  font-size: 1rem;
}
.floating-cta a:hover {
  background: var(--primary-dark);
  transform: translateY(-3px);
  box-shadow: 0 6px 25px rgba(0,189,134,0.5);
}

/* ---------- Service Page Features ---------- */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}
.feature {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}
.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}
.feature h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}

/* ---------- Related Services ---------- */
.related-services {
  background: var(--bg-secondary);
  padding: 3rem 1.5rem;
  margin-top: 4rem;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1000px;
  margin: 2rem auto 0;
}
.related-card {
  background: var(--bg-primary);
  padding: 1.5rem;
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  border: 2px solid var(--border-color);
  transition: all 0.3s;
}
.related-card:hover {
  border-color: var(--primary-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,189,134,0.15);
}
.related-card h3 {
  color: var(--primary-dark);
  margin-bottom: 0.5rem;
}
.related-card p {
  color: var(--text-tertiary);
  font-size: 0.95rem;
}

/* ---------- Service Page Content Blocks ---------- */
.content-block {
  max-width: 900px;
  margin: 2rem auto;
}
.content-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: center;
}
.info-box {
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid var(--primary-color);
  margin-bottom: 2rem;
}
.info-box h3 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.info-box ul {
  margin-left: 1.5rem;
  line-height: 1.9;
  color: var(--text-secondary);
}
.info-box p {
  margin-top: 1rem;
  line-height: 1.8;
  text-align: left;
  font-size: 1rem;
}
.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.benefit-card {
  background: var(--bg-primary);
  border: 2px solid var(--border-color);
  padding: 1.5rem;
  border-radius: 8px;
}
.benefit-card h4 {
  color: var(--primary-color);
  margin-bottom: 0.75rem;
}
.benefit-card p {
  line-height: 1.7;
  color: var(--text-secondary);
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0;
}
.timeline-grid {
  display: grid;
  gap: 1.5rem;
}
.timeline-item {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
}
.timeline-item h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
}
.timeline-item p {
  line-height: 1.8;
  color: var(--text-secondary);
  text-align: left;
  font-size: 1rem;
  margin-bottom: 0;
}
.frequency-box {
  background: var(--bg-tertiary);
  padding: 2rem;
  border-radius: 12px;
  margin-top: 2rem;
  text-align: center;
}
.frequency-box h4 {
  margin-bottom: 1rem;
  color: var(--primary-dark);
}
.frequency-box p {
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 1rem;
}
.frequency-box p:last-child {
  margin-bottom: 0;
}
.areas-box {
  max-width: 900px;
  margin: 2rem auto;
  background: var(--bg-secondary);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
}
.areas-box p {
  font-size: 1rem;
}
.areas-box .area-list {
  line-height: 1.9;
  color: var(--text-secondary);
}
.areas-box .area-note {
  margin-top: 1.5rem;
  font-size: 0.95rem;
  color: var(--text-tertiary);
}
.checklist {
  max-width: 700px;
  margin: 2rem auto;
  text-align: left;
}
.checklist-item {
  display: flex;
  gap: 1rem;
  align-items: start;
  margin-bottom: 1rem;
}
.checklist-icon {
  color: var(--primary-color);
  font-size: 1.5rem;
  flex-shrink: 0;
}
.checklist-item p {
  color: var(--text-tertiary);
  margin-top: 0.25rem;
  text-align: left;
  font-size: 1rem;
}

/* ---------- Thank You Page ---------- */
.thanks-body {
  background: linear-gradient(135deg, #e8f5f0 0%, #d0ebe5 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.thanks-container {
  max-width: 600px;
  background: var(--bg-primary);
  padding: 3rem 2rem;
  border-radius: 16px;
  box-shadow: 0 8px 32px var(--shadow-lg);
  text-align: center;
}
.checkmark {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: scaleIn 0.5s ease-out;
}
.checkmark svg {
  width: 50px;
  height: 50px;
  stroke: #fff;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: drawCheck 0.8s ease-out 0.2s forwards;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
}
@keyframes scaleIn {
  from { transform: scale(0); }
  to { transform: scale(1); }
}
@keyframes drawCheck {
  to { stroke-dashoffset: 0; }
}
.thanks-container h1 {
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 1rem;
}
.thanks-container .message {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}
.details {
  background: var(--bg-secondary);
  padding: 1.5rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  text-align: left;
}
.details h3 {
  font-size: 1.1rem;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.details ul {
  list-style: none;
  padding: 0;
}
.details li {
  padding: 0.5rem 0;
  display: flex;
  align-items: start;
  gap: 0.5rem;
}
.details li::before {
  content: '✓';
  color: var(--primary-color);
  font-weight: bold;
  font-size: 1.2rem;
}
.contact-info {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid var(--border-color);
  font-size: 0.95rem;
  color: var(--text-tertiary);
}
.contact-info a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
}
.contact-info a:hover {
  text-decoration: underline;
}

/* Thank you page dark mode toggle - top-right */
.thanks-body .dark-mode-toggle {
  position: fixed;
  top: 20px;
  right: 20px;
  bottom: auto;
  left: auto;
}

/* ---------- Dark Mode Overrides ---------- */
[data-theme="dark"] body {
  background: var(--bg-primary);
  color: var(--text-primary);
}
[data-theme="dark"] .section-alt {
  background: var(--bg-secondary);
}
[data-theme="dark"] .stats {
  background: var(--primary-dark);
}
[data-theme="dark"] .service-box,
[data-theme="dark"] .process-step,
[data-theme="dark"] .review,
[data-theme="dark"] .faq-item {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}
[data-theme="dark"] .service-box p,
[data-theme="dark"] .process-step p,
[data-theme="dark"] .review-text {
  color: var(--text-secondary);
}
[data-theme="dark"] .gallery-item {
  background: var(--bg-tertiary);
}
[data-theme="dark"] footer {
  background: #0a0a0a;
  border-top: 1px solid var(--border-color);
}
[data-theme="dark"] nav {
  background: var(--bg-secondary);
}
[data-theme="dark"] .feature {
  background: var(--bg-secondary);
  border-color: var(--border-color);
  color: var(--text-primary);
}
[data-theme="dark"] .related-services {
  background: var(--bg-primary);
}
[data-theme="dark"] .related-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}
[data-theme="dark"] .thanks-body {
  background: linear-gradient(135deg, #1e3a33 0%, #2a4a42 100%);
}
[data-theme="dark"] .thanks-container {
  background: var(--bg-secondary);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
}
[data-theme="dark"] .info-box,
[data-theme="dark"] .timeline-item,
[data-theme="dark"] .areas-box {
  background: var(--bg-secondary);
}
[data-theme="dark"] .benefit-card {
  background: var(--bg-secondary);
  border-color: var(--border-color);
}
[data-theme="dark"] .frequency-box {
  background: var(--bg-tertiary);
}

/* ---------- Responsive ---------- */
@media (max-width: 768px) {
  .nav-inner {
    flex-wrap: nowrap;
    justify-content: space-between;
  }
  .logo {
    flex: 1;
    text-align: center;
    order: 2;
  }
  .hamburger {
    display: flex;
    order: 1;
  }
  .nav-phone {
    order: 3;
    font-size: 0;
    padding: 0.75rem;
    min-width: 48px;
    text-align: center;
  }
  .nav-phone::before {
    content: '📞';
    font-size: 1.5rem;
  }
  .nav-center {
    display: none;
  }
  .nav-dropdown {
    display: none;
  }
  /* Hide standalone nav buttons on service pages */
  .nav-inner > .btn {
    display: none;
  }

  /* Homepage hero */
  .hero-home {
    grid-template-columns: 1fr;
    min-height: auto;
    margin: 0;
    padding: 5rem 1.5rem 4rem;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/salt-lake-city-window-cleaning-hero.jpg') center/cover;
    text-align: center;
  }
  .hero-home .hero-content {
    max-width: 100%;
  }
  .hero-home .hero-content h1 {
    font-size: 2.2rem;
    color: #fff;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
  }
  .hero-home .hero-content h1 span {
    color: var(--primary-color);
  }
  .hero-home .hero-content p {
    color: #fff;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.7);
  }
  .hero-badges {
    justify-content: center;
  }
  .badge {
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  }
  .hero-btns {
    justify-content: center;
  }
  .hero-image {
    display: none;
  }

  /* Service page hero */
  .hero-service {
    padding: 4rem 1.5rem 3rem;
  }
  .hero-service h1 {
    font-size: 2rem;
  }
  .hero-service .hero-sub {
    font-size: 1.1rem;
  }

  .section-title { font-size: 2rem; }
  .cta-box h2 { font-size: 2rem; }
  .stats-grid { gap: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .checkbox-grid { grid-template-columns: 1fr; }
  .floating-cta {
    display: block;
  }
  .thanks-container {
    padding: 2rem 1.5rem;
  }
  .thanks-container h1 {
    font-size: 2rem;
  }
  .thanks-container .message {
    font-size: 1.1rem;
  }
}
