﻿/* ===========================
   WINDOW WORX - Main Stylesheet
   Modern Minimal + Bold Vibe
   Deep Charcoal + Vibrant Teal + Warm Amber
   =========================== */

/* ----- CSS Custom Properties ----- */
:root {
  --color-primary: #1a1a2e;
  --color-primary-light: #2d2d4a;
  --color-secondary: #799f18 ;
  --color-secondary-light: #ccfbf1;
  --color-secondary-dark: #0b5e57;
  --color-accent: #f59e0b;
  --color-accent-hover: #d97706;
  --color-text: #1e293b;
  --color-text-light: #64748b;
  --color-text-muted: #94a3b8;
  --color-bg: #ffffff;
  --color-bg-alt: #f1f5f9;
  --color-bg-warm: #fffbeb;
  --color-border: #e2e8f0;
  --color-star: #f59e0b;
  --color-danger: #ef4444;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --font-display: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  
  --container-width: 1200px;
  --container-padding: 1.5rem;
  
  --border-radius: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  
  --shadow-sm: 0 1px 3px rgba(26, 26, 46, 0.06);
  --shadow-md: 0 4px 20px rgba(26, 26, 46, 0.08);
  --shadow-lg: 0 12px 48px rgba(26, 26, 46, 0.12);
  --shadow-glow: 0 4px 24px rgba(245, 158, 11, 0.3);
  --shadow-teal: 0 4px 24px rgba(15, 118, 110, 0.25);
}

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

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

body {
  font-family: var(--font-primary);
  color: var(--color-text);
  line-height: 1.7;
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

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

ul { list-style: none; }

/* ----- Container ----- */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

/* ----- Typography ----- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.15;
  color: var(--color-primary);
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.15rem; }

p { margin-bottom: 1rem; color: var(--color-text-light); line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.section-title {
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 2.5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  margin: 1rem auto 0;
  border-radius: 2px;
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1.1rem;
  margin-bottom: 3.5rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
/* ----- Header / Navigation ----- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: all var(--transition);
}

.header.scrolled {
  border-bottom-color: var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo img {
  height: 44px;
  width: auto;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1.1;
}

.logo-text span {
  display: block;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--color-secondary);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

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

.nav a {
  padding: 0.5rem 0.9rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--border-radius);
  transition: all var(--transition);
  position: relative;
}

.nav a:hover {
  color: var(--color-secondary);
  background: var(--color-secondary-light);
}

.nav a.cta-nav {
  background: var(--color-secondary);
  color: white;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-teal);
}

.nav a.cta-nav:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(15, 118, 110, 0.35);
  color: white;
}

.phone-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-primary);
  white-space: nowrap;
  background: var(--color-bg-warm);
  padding: 0.5rem 1.1rem;
  border-radius: var(--border-radius);
  transition: all var(--transition);
  border: 1px solid rgba(245, 158, 11, 0.2);
}

.phone-header:hover {
  background: var(--color-accent);
  color: white;
  border-color: var(--color-accent);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--color-primary);
  padding: 0.5rem;
  line-height: 1;
}
/* ----- Hero Section (Homepage Fullscreen) ----- */
.hero-full {
  padding: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  position: relative;
  overflow: hidden;
}

.hero-full::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -30%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(15, 118, 110, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-full::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: var(--color-bg);
  clip-path: ellipse(70% 100% at 50% 100%);
  z-index: 3;
}

.hero-full .hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0.25;
  will-change: transform;
  z-index: 0;
}

.hero-full .hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    180deg,
    rgba(26, 26, 46, 0.2) 0%,
    rgba(26, 26, 46, 0.4) 60%,
    rgba(26, 26, 46, 0.6) 100%
  );
  z-index: 1;
}

.hero-full .container {
  position: relative;
  z-index: 2;
  padding: 8rem 1.5rem 5rem;
  width: 100%;
}

.hero-content-centered {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.hero-content-centered h1 {
  font-size: 4rem;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  color: #ffffff !important;
  letter-spacing: -0.03em;
}

.hero-content-centered h1 span {
  background: linear-gradient(135deg, var(--color-accent), #f97316);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content-centered p {
  font-size: 1.2rem;
  max-width: 580px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
}

.hero-content-centered .hero-cta {
  justify-content: center;
  margin-bottom: 2.5rem;
}

.hero-content-centered .hero-badges {
  justify-content: center;
}

.hero-badge-top {
  display: inline-block;
  font-size: 0.8rem;
  color: var(--color-accent);
  background: rgba(245, 158, 11, 0.1);
  border: 1px solid rgba(245, 158, 11, 0.25);
  padding: 0.45rem 1.2rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  backdrop-filter: blur(4px);
  text-transform: uppercase;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 1.05rem;
}
/* ----- Hero (Inner Pages) ----- */
.hero {
  padding: 9rem 0 4rem;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}

.hero h1 {
  color: white;
  font-size: 3rem;
}

.hero p {
  color: rgba(255,255,255,0.8);
}

/* ----- Buttons ----- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: var(--font-primary);
  border: none;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--color-secondary);
  color: white;
  box-shadow: var(--shadow-teal);
}

.btn-primary:hover {
  background: var(--color-secondary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(15, 118, 110, 0.35);
  color: white;
}

.btn-secondary {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border: 2px solid var(--color-secondary);
}

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

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

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

.btn-accent {
  background: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-glow);
}

.btn-accent:hover {
  background: var(--color-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(245, 158, 11, 0.35);
  color: var(--color-primary);
}

.btn-outline-white {
  background: rgba(255,255,255,0.1);
  color: white;
  border: 2px solid rgba(255,255,255,0.6);
  backdrop-filter: blur(4px);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.2);
  border-color: white;
  color: white;
  transform: translateY(-2px);
}
/* ----- Hero Badges & CTA ----- */
.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.08);
  padding: 0.4rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
}

.hero-badge .icon {
  width: 20px;
  height: 20px;
  background: var(--color-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  flex-shrink: 0;
  color: var(--color-primary);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ----- Sections ----- */
.section {
  padding: 5.5rem 0;
}

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

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

/* ----- Trust Bar ----- */
.trust-bar {
  background: var(--color-primary);
  padding: 0.9rem 0;
}

.trust-bar .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.trust-bar strong {
  color: var(--color-accent);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.trust-bar span {
  color: rgba(255,255,255,0.7);
  font-size: 0.85rem;
}

/* ----- Services Grid ----- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.25rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-secondary), var(--color-accent));
  transform: scaleX(0);
  transition: transform var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card .icon {
  width: 56px;
  height: 56px;
  background: var(--color-secondary-light);
  border-radius: var(--border-radius);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  color: var(--color-secondary);
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--color-text-light);
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
}

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

.service-card .card-link:hover {
  gap: 0.75rem;
  color: var(--color-secondary-dark);
}
/* ----- Process Steps ----- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
  padding-top: 1rem;
}

.process-step .step-number {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--color-secondary), var(--color-secondary-dark));
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
  z-index: 1;
  box-shadow: var(--shadow-teal);
}

.process-step h3 {
  margin-bottom: 0.5rem;
}

.process-step p {
  color: var(--color-text-light);
  font-size: 0.95rem;
}

/* ----- Testimonial Cards ----- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: all var(--transition);
}

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

.testimonial-card .stars {
  color: var(--color-star);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.testimonial-card .quote {
  font-style: italic;
  color: var(--color-text);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.testimonial-card .location {
  font-size: 0.8rem;
  color: var(--color-text-light);
}
/* ----- CTA Section ----- */
.cta-section {
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  text-align: center;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 60%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(15, 118, 110, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  color: white;
  font-size: 2.5rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 1;
}

.cta-section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 4px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-secondary));
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.cta-section p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem;
  position: relative;
  z-index: 1;
}

.cta-section .cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.cta-section .btn {
  font-size: 1.05rem;
  padding: 1rem 2.5rem;
}
/* ----- Forms ----- */
.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.35rem;
  font-size: 0.9rem;
  color: var(--color-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius);
  font-family: var(--font-primary);
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--color-bg);
  color: var(--color-text);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--color-secondary);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

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

.quick-quote {
  background: var(--color-secondary-light);
  padding: 2rem;
  border-radius: var(--border-radius-lg);
  border: 1px solid rgba(15, 118, 110, 0.15);
}

.quick-quote h3 {
  margin-bottom: 1.25rem;
  text-align: center;
}

/* ----- Footer ----- */
.footer {
  background: var(--color-primary);
  color: rgba(255,255,255,0.85);
  padding: 4rem 0 1.5rem;
}

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

.footer h4 {
  color: white;
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.footer p, .footer a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.6);
}

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

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

.footer-logo {
  display: inline-block;
  opacity: 0.9;
  transition: opacity var(--transition);
}

.footer-logo:hover {
  opacity: 1;
}

.footer-contact li {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

.footer-contact .icon {
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
}

.service-areas-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.service-areas-footer a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  padding: 0.2rem 0.6rem;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 4px;
  transition: all var(--transition);
}

.service-areas-footer a:hover {
  color: var(--color-accent);
  border-color: var(--color-accent);
}
/* ----- Page Header (Interior Pages) ----- */
.page-header {
  padding: 9rem 0 3.5rem;
  background: linear-gradient(160deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header h1 {
  color: white;
  font-size: 2.75rem;
  position: relative;
  z-index: 1;
}

.page-header p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.5rem auto 0;
  position: relative;
  z-index: 1;
}

/* ----- Breadcrumbs ----- */
.breadcrumbs {
  padding: 1rem 0;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

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

.breadcrumbs a:hover {
  color: var(--color-secondary);
}

.breadcrumbs .separator {
  margin: 0 0.5rem;
}

.breadcrumbs .current {
  color: var(--color-text);
  font-weight: 500;
}

/* ----- Service Area Page ----- */
.city-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}

.city-item {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 1.5rem;
  transition: all var(--transition);
}

.city-item:hover {
  border-color: var(--color-secondary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.city-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.city-item p {
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* ----- Gallery ----- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1rem;
}

.gallery-item {
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}
/* ----- FAQ ----- */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item:hover {
  box-shadow: var(--shadow-sm);
}

.faq-item.active {
  border-color: var(--color-secondary);
}

.faq-question {
  padding: 1.25rem 1.5rem;
  background: var(--color-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1.05rem;
  transition: background var(--transition);
  user-select: none;
  color: var(--color-primary);
}

.faq-question:hover {
  background: var(--color-bg-alt);
}

.faq-question .faq-toggle {
  font-size: 1.25rem;
  transition: transform var(--transition);
  color: var(--color-secondary);
  font-weight: 300;
}

.faq-item.active .faq-question .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 1.5rem;
  max-height: 0;
  overflow: hidden;
  transition: all 0.35s ease;
  color: var(--color-text-light);
}

.faq-item.active .faq-answer {
  padding: 0 1.5rem 1.5rem;
  max-height: 500px;
}

/* ----- Reviews / Testimonials Page ----- */
.reviews-header {
  text-align: center;
  margin-bottom: 2rem;
}

.reviews-header .overall-rating {
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.reviews-header .rating-stars {
  color: var(--color-star);
  font-size: 1.5rem;
  margin: 0.5rem 0;
}

.reviews-header .rating-count {
  color: var(--color-text-light);
}
/* ----- Blog ----- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2rem;
}

.blog-card {
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  background: var(--color-bg);
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

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

.blog-card-content {
  padding: 1.5rem;
}

.blog-card-content .date {
  font-size: 0.85rem;
  color: var(--color-text-light);
  margin-bottom: 0.5rem;
}

.blog-card-content h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card-content h3 a {
  color: var(--color-primary);
}

.blog-card-content p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 1rem;
}

.blog-card-content .read-more {
  font-weight: 600;
  color: var(--color-secondary);
  font-size: 0.9rem;
}

.blog-card-content .read-more:hover {
  color: var(--color-secondary-dark);
}

/* ----- Pricing Guide ----- */
.pricing-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all var(--transition);
}

.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.pricing-card .price-label {
  font-size: 0.85rem;
  color: var(--color-text-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.pricing-card .price-range {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-primary);
  margin-bottom: 1rem;
}

.pricing-card ul {
  text-align: left;
  margin-bottom: 1.5rem;
}

.pricing-card ul li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
  color: var(--color-text-light);
  position: relative;
  padding-left: 1.25rem;
}

.pricing-card ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}
/* ----- Checklist ----- */
.checklist {
  list-style: none;
  margin: 1rem 0;
}

.checklist li {
  padding: 0.4rem 0;
  padding-left: 1.75rem;
  position: relative;
  font-size: 0.95rem;
  color: var(--color-text);
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
  font-size: 1.1rem;
}

/* ----- About Story Grid ----- */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

/* ----- Values Grid ----- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--color-bg);
  border-radius: var(--border-radius-lg);
  border: 1px solid var(--color-border);
  transition: all var(--transition);
}

.value-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-secondary);
}

.value-item .icon {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.value-item h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.value-item p {
  font-size: 0.9rem;
  color: var(--color-text-light);
  margin-bottom: 0;
}

/* ----- Sidebar Cards ----- */
.sidebar-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.sidebar-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--color-secondary-light);
}
/* ----- Sticky Phone (Mobile) ----- */
.sticky-phone {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 500;
  background: var(--color-secondary);
  color: white;
  text-align: center;
  padding: 0.85rem 1rem;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  letter-spacing: 0.3px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  transition: background var(--transition);
}

.sticky-phone:hover {
  background: var(--color-secondary-dark);
  color: white;
}

/* ----- Back to Top ----- */
.back-to-top {
  position: fixed;
  bottom: 6rem;
  right: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--color-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all var(--transition);
  z-index: 400;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.back-to-top:hover {
  background: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
/* ===========================
   Responsive Styles
   =========================== */

/* ----- Tablet / Medium Screens (max 992px) ----- */
@media (max-width: 992px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  .hero-content-centered h1 { font-size: 2.75rem; }
  
  .hero-full .hero-bg { opacity: 0.2; }
  
  .process-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .about-story {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .page-header h1 { font-size: 2.25rem; }
}

/* ----- Mobile / Small Screens (max 768px) ----- */
@media (max-width: 768px) {
  :root { --container-padding: 1.25rem; }

  h1 { font-size: 1.85rem; }
  h2 { font-size: 1.65rem; }
  h3 { font-size: 1.25rem; }

  .section { padding: 3.5rem 0; }
  .section-title { font-size: 1.65rem; }

  /* Mobile Navigation */
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
    transition: all 0.3s ease;
    z-index: 999;
  }

  .nav.open {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }

  .nav a {
    color: rgba(255,255,255,0.9);
    font-size: 1.25rem;
    padding: 0.75rem 1.5rem;
  }

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

  .nav a.cta-nav {
    background: var(--color-accent);
    color: var(--color-primary);
    margin-top: 0.5rem;
    box-shadow: var(--shadow-glow);
  }

  .nav a.cta-nav:hover {
    background: var(--color-accent-hover);
    color: var(--color-primary);
  }

  .phone-header { display: none; }

  .menu-toggle {
    display: block;
    z-index: 1000;
    position: relative;
    color: var(--color-primary);
  }

  .nav.open ~ .menu-toggle {
    color: white;
  }

  .sticky-phone { display: block; }

  .back-to-top { bottom: 5rem; right: 1rem; width: 42px; height: 42px; font-size: 1rem; }

  /* Hero mobile */
  .hero-full { min-height: 92vh; }
  .hero-full::after { height: 35px; clip-path: ellipse(100% 100% at 50% 100%); }
  
  .hero-content-centered h1 { font-size: 2rem; }
  .hero-content-centered p { font-size: 1rem; }
  .hero-content-centered .hero-badges { gap: 0.4rem; }
  .hero-content-centered .hero-badge { font-size: 0.75rem; padding: 0.3rem 0.65rem; }
  .hero-content-centered .hero-cta { flex-direction: column; align-items: stretch; max-width: 320px; margin-left: auto; margin-right: auto; }
  
  .btn-lg { padding: 0.9rem 2rem; font-size: 1rem; }
  .hero-badge-top { font-size: 0.7rem; padding: 0.35rem 1rem; }

  /* Trust bar */
  .trust-bar .container { gap: 0.5rem; font-size: 0.8rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; }

  /* Process */
  .process-steps { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Testimonials */
  .testimonials-grid { grid-template-columns: 1fr; }

  /* About */
  .about-story { grid-template-columns: 1fr; gap: 1.5rem; }

  /* Values */
  .values-grid { grid-template-columns: 1fr 1fr; }

  /* Footer */
  .footer { padding: 3rem 0 1.5rem; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* CTA */
  .cta-section { padding: 3.5rem 0; }
  .cta-section h2 { font-size: 1.75rem; }
  .cta-section .cta-buttons { flex-direction: column; align-items: stretch; }
  .cta-section .btn { justify-content: center; }

  .page-header { padding: 6rem 0 2.5rem; }
  .page-header h1 { font-size: 1.85rem; }

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

  .pricing-card { padding: 1.5rem; }
}
/* ----- Small Mobile (max 480px) ----- */
@media (max-width: 480px) {
  .hero-content-centered h1 { font-size: 1.65rem; }
  
  .hero-full { min-height: 90vh; }
  .hero-full .container { padding: 5rem 1rem 4rem; }
  
  .values-grid { grid-template-columns: 1fr; }
  .city-list { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: 1fr; }
  
  .logo-text { font-size: 1.1rem; }
  .logo img { height: 36px; }

  .btn { padding: 0.75rem 1.5rem; font-size: 0.9rem; }

  .process-step .step-number { width: 52px; height: 52px; font-size: 1.25rem; }
}

/* ===========================
   Utility & Print Styles
   =========================== */

.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

@media print {
  .header, .footer, .back-to-top, .sticky-phone, .menu-toggle, .cta-section { display: none; }
  body { font-size: 12pt; }
  .section { padding: 1rem 0; }
}
