/* Gravity HVAC Landing Pages - Main Stylesheet
   Heating, cooling, furnaces, heat pumps & emergency service
   Based on Gravity Plumbing & Heating brand */

@import url('city-redesign.css');

:root {
  /* Brand - HVAC feel: warmth (red) + trust (dark) */
  --g-primary: #DB0545;
  --g-secondary: #A01B5B;
  --g-accent: #DB0545;
  --g-dark: #000000;
  --g-dark-light: #1a1a1a;
  --g-bg: #ffffff;
  --g-text: #444444;
  --g-muted: #666666;
  --g-light-bg: #ffffff;
  --g-border: #e0e0e0;

  /* HVAC: thermal gradient (heating/cooling vibe) */
  --g-gradient-start: #DB0545;
  --g-gradient-mid: #A01B5B;
  --g-gradient-end: #000000;
  --g-gradient-light: linear-gradient(135deg, #DB0545 0%, #A01B5B 100%);
  --g-gradient-dark: linear-gradient(135deg, #A01B5B 0%, #DB0545 100%);
  --g-gradient-subtle: linear-gradient(135deg, rgba(219, 5, 69, 0.1) 0%, rgba(160, 27, 91, 0.1) 100%);
  --g-gradient-accent: linear-gradient(135deg, #DB0545 0%, #A01B5B 100%);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  color: var(--g-text);
  background-color: var(--g-bg);
  overflow-x: hidden;
}
body.mobile-nav-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: var(--g-dark);
}

h2.section-title {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
p { margin-bottom: 1rem; }

a {
  color: var(--g-primary);
  text-decoration: none;
  transition: color 0.2s;
}
a:hover { color: var(--g-primary); }

a.btn:hover,
a.header-cta-btn:hover,
a.mobile-cta-btn:hover,
a.btn-premium:hover {
  background: none;
  -webkit-background-clip: unset;
  -webkit-text-fill-color: currentColor;
  background-clip: unset;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.container-wide {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
@media (max-width: 768px) {
  .container-wide { padding: 0 1rem; }
}

/* Header */
.main-header {
  background: #ffffff;
  color: #000000;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  border-bottom: 1px solid #e0e0e0;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000000;
  font-size: 1.5rem;
  font-weight: 700;
  white-space: nowrap;
}

.header-logo img { height: 40px; width: auto; }
.logo-text { color: #000000; }

.header-nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  color: #000000;
  text-decoration: none;
  font-weight: 600;
  padding: 0.5rem 1rem;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--g-primary); }

.nav-dropdown { position: relative; }

.nav-dropdown-btn {
  background: transparent;
  color: #000000;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.2s;
}
.nav-dropdown-btn:hover { color: var(--g-primary); }

.dropdown-arrow { font-size: 0.75rem; transition: transform 0.2s; }
.nav-dropdown.active .dropdown-arrow { transform: rotate(180deg); }

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: white;
  border-radius: 4px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
  max-height: 400px;
  overflow: hidden;
  display: none;
  z-index: 1001;
  min-width: 320px;
}
.nav-dropdown.active .nav-dropdown-menu { display: block; }

.dropdown-services { display: flex; flex-direction: column; padding: 0.5rem 0; }

.dropdown-service-item {
  display: block;
  padding: 0.75rem 1.5rem;
  color: var(--g-dark);
  text-decoration: none;
  transition: all 0.2s;
  font-weight: 500;
}
.dropdown-service-item:hover {
  background: var(--g-light-bg);
  color: var(--g-primary);
  padding-left: 1.75rem;
}

.dropdown-search {
  padding: 1rem;
  border-bottom: 1px solid var(--g-border);
}
.dropdown-search input {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--g-border);
  border-radius: 4px;
  font-size: 0.9rem;
}

.dropdown-cities { max-height: 300px; overflow-y: auto; padding: 0.5rem 0; -webkit-overflow-scrolling: touch; }

.dropdown-city-item {
  display: block;
  padding: 0.75rem 1rem;
  color: var(--g-dark);
  text-decoration: none;
  transition: background 0.2s;
}
.dropdown-city-item:hover,
.dropdown-city-item:focus {
  background: var(--g-light-bg);
  color: var(--g-primary);
  outline: none;
}

.header-cta-btn {
  background: var(--g-gradient-light);
  color: white !important;
  -webkit-text-fill-color: white;
  padding: 0.75rem 2rem;
  border-radius: 15px;
  border: 2px solid #000000;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s;
  display: inline-block;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}
.header-cta-btn:hover {
  background: var(--g-gradient-dark);
  color: white !important;
  -webkit-text-fill-color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

/* Mobile */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem;
  min-width: 44px;
  min-height: 44px;
  -webkit-tap-highlight-color: transparent;
}
.mobile-menu-toggle span {
  width: 25px;
  height: 3px;
  background: #000000;
  transition: all 0.3s;
}
.mobile-menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); }
.mobile-menu-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

.mobile-nav {
  display: none;
  flex-direction: column;
  padding: 0;
  width: 100%;
  background: var(--g-dark);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.mobile-nav.active {
  display: flex;
}

.mobile-nav-link {
  color: #ffffff;
  text-decoration: none;
  padding: 1rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  min-height: 48px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  -webkit-tap-highlight-color: transparent;
}
.mobile-nav-link:hover,
.mobile-nav-link:focus {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
}

.mobile-dropdown { margin: 0.5rem 0; }
.mobile-dropdown-btn {
  width: 100%;
  background: transparent;
  color: white;
  border: none;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  min-height: 48px;
}
.mobile-dropdown-menu { max-height: 0; overflow: hidden; transition: max-height 0.3s; }
.mobile-dropdown.active .mobile-dropdown-menu { max-height: 400px; padding: 1rem 0; }

.mobile-cta-btn {
  background: var(--g-gradient-light);
  color: white !important;
  -webkit-text-fill-color: white;
  padding: 1rem 1.5rem;
  margin: 1rem 1.5rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 1.125rem;
  text-decoration: none;
  text-align: center;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-tap-highlight-color: transparent;
}
.mobile-cta-btn:hover {
  background: var(--g-gradient-dark);
  color: white !important;
  -webkit-text-fill-color: white;
}

@media (max-width: 968px) {
  .header-nav { display: none; }
  .mobile-menu-toggle { display: flex; }
  .header-cta-btn { display: none; }
  .header-container {
    flex-wrap: wrap;
    padding: 0 1rem;
  }
  .header-content {
    width: 100%;
    padding: 0.75rem 0;
  }
  .mobile-nav {
    width: 100%;
  }
}

.mobile-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g-gradient-light);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 999;
  display: block;
  box-shadow: 0 -2px 8px rgba(26, 26, 26, 0.3);
  border-top: 1px solid rgba(178, 178, 180, 0.3);
}
.mobile-call-bar a {
  color: white;
  font-size: 1.25rem;
  font-weight: 700;
  display: block;
}
@media (max-width: 767px) {
  main { padding-bottom: 4.5rem; }
}
@media (min-width: 768px) {
  .mobile-call-bar { display: none; }
}

/* Hero */
.hero {
  position: relative;
  min-height: 70vh;
  width: 100%;
  background-color: var(--g-dark);
  background-image: url('../img/hero-plumber.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: white;
  padding: 4rem 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero:not([style*="background-image"]) {
  background: linear-gradient(135deg, var(--g-gradient-start) 0%, var(--g-gradient-end) 100%);
}

.hero-overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, rgba(181, 11, 89, 0.75) 0%, rgba(174, 46, 170, 0.75) 50%, rgba(26, 26, 26, 0.6) 100%);
  z-index: 1;
}

.hero-container {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  width: 100%;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-copy { color: white; }
.hero-copy h1 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: white;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}
.hero-subheader {
  font-size: clamp(1.125rem, 2vw, 1.375rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
.hero-ctas { display: flex; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.btn-large { font-size: 1.25rem; padding: 1rem 2.5rem; font-weight: 700; }

.hero-trust-bullets { list-style: none; padding: 0; margin: 0; }
.hero-trust-bullets li {
  padding: 0.5rem 0;
  font-size: 1.125rem;
  position: relative;
  padding-left: 1.5rem;
}
.hero-trust-bullets li:before {
  content: "✓";
  position: absolute;
  left: 0;
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
  font-size: 1.25rem;
}

.hero-form-panel {
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
  padding: 2rem;
  color: var(--g-dark);
}
.hero-form-panel .form-group label { color: var(--g-dark); font-weight: 600; }
.hero-form-panel input,
.hero-form-panel select,
.hero-form-panel textarea {
  background: white;
  border: 1px solid var(--g-border);
  color: var(--g-text);
}
.hero-form-panel input:focus,
.hero-form-panel select:focus,
.hero-form-panel textarea:focus {
  border-color: var(--g-primary);
  outline: 2px solid rgba(181, 11, 89, 0.2);
  outline-offset: 0;
}
.btn-block { width: 100%; display: block; }
.form-note { text-align: center; font-size: 0.875rem; color: var(--g-muted); margin-top: 0.75rem; margin-bottom: 0; }

@media (max-width: 968px) {
  .hero { min-height: auto; padding: 3rem 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero-ctas { flex-direction: column; }
  .btn-large { width: 100%; }
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.125rem;
  font-weight: 700;
  border-radius: 15px;
  text-align: center;
  cursor: pointer;
  border: 2px solid #000000;
  transition: all 0.2s;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
@media (max-width: 968px) {
  .btn { min-height: 48px; display: inline-flex; align-items: center; justify-content: center; }
}
.btn-primary {
  background: var(--g-gradient-light);
  color: white !important;
  -webkit-text-fill-color: white;
  border: 2px solid #000000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}
.btn-primary:hover {
  background: var(--g-gradient-dark);
  color: white !important;
  -webkit-text-fill-color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: translateY(-1px);
}
.btn-secondary {
  background: transparent;
  color: #000000 !important;
  -webkit-text-fill-color: #000000;
  border: 2px solid #000000;
}
.btn-secondary:hover {
  background: #000000;
  color: white !important;
  -webkit-text-fill-color: white;
}
.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  justify-content: flex-start;
}

/* Sections */
section { padding: 4rem 0; }
section:nth-child(even) {
  background: #f8f9fa;
  border-top: 1px solid #e0e0e0;
  border-bottom: 1px solid #e0e0e0;
}
.section-title { text-align: center; margin-bottom: 3rem; }

/* Service List - HVAC services grid */
.service-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.service-list li {
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(178, 178, 180, 0.3);
  position: relative;
}
.service-list li::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--g-gradient-light);
  transition: width 0.3s;
}
.service-list li:hover::after { width: 60px; }
.service-list li:last-child { border-bottom: none; }
.service-list a { font-size: 1.25rem; font-weight: 600; color: var(--g-primary); }
.service-list a:hover {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.service-list-modern {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.service-item { position: relative; }
.service-link { display: block; text-decoration: none; transition: transform 0.3s; }
.service-link:hover { transform: translateY(-4px); }
.service-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: 4px;
  margin-bottom: 1rem;
  background: var(--g-light-bg);
  position: relative;
  border: 1px solid rgba(178, 178, 180, 0.2);
}
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s; }
.service-link:hover .service-image img { transform: scale(1.05); }
.service-link:hover .service-image {
  border-color: var(--g-primary);
  box-shadow: 0 4px 12px rgba(181, 11, 89, 0.15);
}
.service-link h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--g-dark);
  text-align: center;
  margin: 0;
  transition: color 0.3s;
}
.service-link:hover h3 {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Service Areas / City Grid */
.service-areas-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  border-top: 1px solid rgba(178, 178, 180, 0.2);
  border-bottom: 1px solid rgba(178, 178, 180, 0.2);
}

.city-grid-modern {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
  min-height: 200px;
}
.city-grid-modern a {
  display: block;
  padding: 1.5rem 1.25rem;
  background: white;
  border: 1px solid var(--g-border);
  border-left: 4px solid var(--g-primary);
  border-radius: 4px;
  text-align: left;
  text-decoration: none;
  color: var(--g-dark);
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(26, 26, 26, 0.08);
}
.city-grid-modern a::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--g-gradient-light);
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 0;
}
.city-grid-modern a::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--g-gradient-light);
  transition: width 0.3s;
  z-index: 1;
}
.city-grid-modern a:hover {
  border-left-color: var(--g-secondary);
  transform: translateY(-3px);
  box-shadow: 0 4px 12px rgba(181, 11, 89, 0.2), 0 2px 4px rgba(26, 26, 26, 0.1);
}
.city-grid-modern a:hover::before { opacity: 0.08; }
.city-grid-modern a:hover::after { width: 6px; }
.city-grid-modern a span {
  position: relative;
  z-index: 1;
  display: block;
  font-weight: 600;
  font-size: 1.125rem;
  color: var(--g-dark);
  margin-bottom: 0.25rem;
}
.city-grid-modern a:hover span {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.city-grid-modern a small {
  position: relative;
  z-index: 1;
  display: block;
  font-size: 0.875rem;
  color: var(--g-muted);
}

.city-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.city-grid a {
  padding: 1rem;
  background: white;
  border: 1px solid var(--g-border);
  border-radius: 4px;
  text-align: center;
  transition: all 0.2s;
}
.city-grid a:hover {
  border-color: var(--g-primary);
  background: linear-gradient(135deg, rgba(181, 11, 89, 0.05) 0%, rgba(174, 46, 170, 0.05) 100%);
  transform: translateY(-2px);
}

/* How It Works */
.how-it-works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-top: 2rem;
}
.step { text-align: center; }
.step-number {
  font-size: 3rem;
  font-weight: 700;
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.step h3 { margin-bottom: 1rem; }

/* Call Module */
.call-module {
  margin-bottom: 3rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(178, 178, 180, 0.3);
  border-left: 3px solid transparent;
  padding-left: 1.5rem;
  transition: all 0.3s;
}
.call-module:hover {
  border-left-color: var(--g-primary);
  background: linear-gradient(90deg, rgba(181, 11, 89, 0.03) 0%, transparent 100%);
}
.call-module:last-child { border-bottom: none; }
.call-module h3 {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
}
.call-module ul { list-style: none; margin-left: 1.5rem; }
.call-module li { margin-bottom: 0.5rem; position: relative; padding-left: 1.5rem; }
.call-module li:before {
  content: "•";
  position: absolute;
  left: 0;
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: bold;
}

.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}
.area-item { padding: 1rem; }
.area-item h4 {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}
.area-item p { font-size: 0.9rem; color: var(--g-muted); margin-bottom: 0.25rem; }

/* Forms */
.form-container {
  max-width: 600px;
  margin: 2rem auto;
  background: rgba(255, 255, 255, 0.95);
  padding: 2rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.hero .form-container { background: rgba(255, 255, 255, 0.98); margin-top: 2rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 600; color: var(--g-primary); }
.hero .form-container .form-group label { color: var(--g-dark); font-weight: 700; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--g-border);
  border-radius: 4px;
  font-size: 1rem;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--g-primary);
  box-shadow: 0 0 0 3px rgba(181, 11, 89, 0.15);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-error { color: #d32f2f; font-size: 0.875rem; margin-top: 0.25rem; display: none; }
.form-error.show { display: block; }
.form-success { background: #4caf50; color: white; padding: 1rem; border-radius: 4px; margin-bottom: 1rem; display: none; }
.form-success.show { display: block; }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--g-border); }
.faq-item:last-child { border-bottom: none; }
.faq-item h3 {
  background: var(--g-gradient-light);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
}

/* CTA Band */
.cta-band {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  color: var(--g-dark);
  padding: 3rem 0;
  text-align: center;
  border-top: 2px solid rgba(178, 178, 180, 0.3);
  border-bottom: 2px solid rgba(178, 178, 180, 0.3);
}
.cta-band h2 { color: var(--g-dark); margin-bottom: 1rem; font-weight: 700; }
.cta-band p { font-size: 1.125rem; margin-bottom: 2rem; color: var(--g-dark); font-weight: 500; }
.cta-band .btn-group { justify-content: center; margin-bottom: 2rem; }
.cta-band .form-container {
  background: rgba(255, 255, 255, 0.98);
  color: var(--g-dark);
  padding: 2.5rem;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin: 2rem auto 0;
}
.cta-band .form-container h3 { color: var(--g-primary) !important; margin-bottom: 1.5rem; font-size: 1.5rem; }
.cta-band .form-container label { color: var(--g-dark) !important; font-weight: 600; }
.cta-band .form-container input,
.cta-band .form-container input::placeholder { color: var(--g-text); background: white; border: 1px solid var(--g-border); }
.cta-band .form-container input:focus { border-color: var(--g-primary); outline: none; }

/* Footer */
footer {
  background: var(--g-gradient-dark);
  color: white;
  padding: 3rem 0 1rem;
  border-top: 2px solid rgba(178, 178, 180, 0.2);
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.footer-section h4 { color: white; margin-bottom: 1rem; }
.footer-section a { color: rgba(255, 255, 255, 0.8); display: block; margin-bottom: 0.5rem; }
.footer-section a:hover { color: white; }
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--g-gradient-light);
  color: white;
  padding: 1rem;
  text-align: center;
  z-index: 998;
  display: none;
  box-shadow: 0 -2px 8px rgba(26, 26, 26, 0.3);
  border-top: 1px solid rgba(178, 178, 180, 0.3);
}
.sticky-cta.show { display: block; }
.sticky-cta a { color: white; font-size: 1.125rem; font-weight: 700; }
@media (min-width: 768px) { .sticky-cta { display: none; } }

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

@media (max-width: 767px) {
  section { padding: 2rem 0; }
  .btn-group { flex-direction: column; }
  .btn { width: 100%; }
  .city-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
}
