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

/* 
  PROFESSIONAL HOME SERVICES COLOR SCHEME
  Primary: Deep Navy (#0f172a) - Trust, professionalism
  Accent: Royal Blue (#2563eb) - Reliability, modern
  Secondary: Teal (#0891b2) - Fresh, clean
  CTA: Amber (#d97706) - Action, warmth
  Background: Soft gray-blue (#f8fafc)
*/

:root {
  --primary: #0f172a;
  --accent: #2563eb;
  --secondary: #0891b2;
  --cta: #d97706;
  --cta-hover: #b45309;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --border: #e2e8f0;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  line-height: 1.6;
}

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

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: var(--bg-white);
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  z-index: 1000;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.2rem;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--accent);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.3s;
}

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

.phone-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--cta);
  font-weight: 600;
  text-decoration: none;
}

.mobile-menu-btn {
  display: none;
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px;
  border-radius: 8px;
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: 64px;
  left: 0;
  right: 0;
  background: white;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  padding: 20px;
  flex-direction: column;
  gap: 15px;
}

.mobile-menu.active {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 10px;
}

@media (max-width: 768px) {
  .nav-links, .phone-btn {
    display: none;
  }
  .mobile-menu-btn {
    display: block;
  }
}

/* Hero */
.hero {
  padding: 120px 0 80px;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  text-align: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.hero h1 span {
  color: var(--accent);
}

.hero > .container > p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 50px;
}

/* Service Cards */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-bottom: 50px;
}

.service-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  text-align: left;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--border);
  transition: all 0.3s;
}

.service-card:hover {
  border-color: var(--accent);
  box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.card-icon.roofing { background: rgba(15, 23, 42, 0.1); color: var(--primary); }
.card-icon.windows { background: rgba(37, 99, 235, 0.1); color: var(--accent); }
.card-icon.hvac { background: rgba(8, 145, 178, 0.1); color: var(--secondary); }
.card-icon.plumbing { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-card:hover h3 {
  color: var(--accent);
}

.service-card > p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 15px;
}

.service-card ul {
  list-style: none;
}

.service-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 6px;
}

/* Trust Badges */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

.trust-badges span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.trust-badges span svg {
  color: var(--cta);
}

/* Stats */
.stats {
  background: var(--primary);
  padding: 60px 0;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 30px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--accent);
}

.stat-label {
  display: block;
  color: rgba(255,255,255,0.6);
  font-size: 0.95rem;
  margin-top: 5px;
}

/* How It Works */
.how-it-works {
  padding: 80px 0;
  background: white;
  text-align: center;
}

.how-it-works h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--text-muted);
  margin-bottom: 50px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
}

.step {
  text-align: center;
}

.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 auto 20px;
}

.step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.step p {
  color: var(--text-muted);
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: var(--bg-light);
}

.testimonials h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
}

.testimonial > p {
  color: #444;
  font-size: 1rem;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.testimonial-author strong {
  color: var(--primary);
}

.testimonial-author span {
  color: var(--accent);
  font-size: 0.9rem;
}

/* CTA */
.cta {
  background: var(--cta);
  padding: 80px 0;
  text-align: center;
}

.cta h2 {
  font-size: 2.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.cta > .container > p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.btn-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: white;
  color: var(--cta);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-white:hover {
  background: #f5f5f5;
}

.btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary);
  color: white;
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s;
}

.btn-dark:hover {
  background: #1e293b;
}

/* Footer */
footer {
  background: white;
  border-top: 1px solid var(--border);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.footer-grid h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 10px;
}

.footer-grid a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-grid p {
  color: var(--text-muted);
  margin-bottom: 5px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  color: #999;
  font-size: 0.9rem;
}

/* Quote Pages */
.quote-hero {
  padding: 100px 0 60px;
  min-height: 100vh;
}

.quote-hero.roofing { background: linear-gradient(135deg, rgba(15, 23, 42, 0.08) 0%, rgba(15, 23, 42, 0.03) 100%); }
.quote-hero.windows { background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%); }
.quote-hero.hvac { background: linear-gradient(135deg, rgba(8, 145, 178, 0.08) 0%, rgba(8, 145, 178, 0.03) 100%); }
.quote-hero.plumbing { background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(14, 165, 233, 0.03) 100%); }

.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

@media (max-width: 900px) {
  .quote-grid {
    grid-template-columns: 1fr;
  }
}

.quote-content h1 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.quote-content > p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.benefit {
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon.roofing { background: rgba(15, 23, 42, 0.1); }
.benefit-icon.windows { background: rgba(37, 99, 235, 0.1); }
.benefit-icon.hvac { background: rgba(8, 145, 178, 0.1); }
.benefit-icon.plumbing { background: rgba(14, 165, 233, 0.1); }

.benefit span {
  font-size: 0.9rem;
  color: #555;
}

/* Form */
.quote-form {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.quote-form h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.quote-form > p {
  color: var(--text-muted);
  margin-bottom: 25px;
}

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

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

.form-group {
  margin-bottom: 15px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 1rem;
  font-family: inherit;
  transition: border-color 0.3s;
  background: white;
}

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

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

.submit-btn {
  width: 100%;
  padding: 16px;
  background: var(--cta);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.3s;
}

.submit-btn:hover {
  background: var(--cta-hover);
}

.submit-btn:disabled {
  background: #ccc;
  cursor: not-allowed;
}

/* Service Tags */
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 20px;
}

.tag.roofing { background: rgba(15, 23, 42, 0.1); color: var(--primary); }
.tag.windows { background: rgba(37, 99, 235, 0.1); color: var(--accent); }
.tag.hvac { background: rgba(8, 145, 178, 0.1); color: var(--secondary); }
.tag.plumbing { background: rgba(14, 165, 233, 0.1); color: #0ea5e9; }

/* Features Section */
.features {
  padding: 60px 0;
  background: white;
}

.features h2 {
  text-align: center;
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 40px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 30px;
  text-align: center;
}

.feature-card svg {
  margin-bottom: 15px;
}

.feature-card h3 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* CTA Sections */
.cta-section {
  padding: 60px 0;
  text-align: center;
}

.cta-section.roofing { background: var(--primary); }
.cta-section.windows { background: var(--accent); }
.cta-section.hvac { background: var(--secondary); }
.cta-section.plumbing { background: #0ea5e9; }

.cta-section h2 {
  font-size: 2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 10px;
}

.cta-section > .container > p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 25px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.cta-btn:hover {
  background: #f5f5f5;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: 40px;
}

.success-message.show {
  display: block;
}

.success-message h3 {
  font-size: 1.8rem;
  color: var(--secondary);
  margin-bottom: 15px;
}

.success-message p {
  color: var(--text-muted);
}

/* Breadcrumb Navigation */
.breadcrumb-nav {
  background: var(--bg-light);
  padding: 15px 0;
  margin-top: 64px;
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  list-style: none;
  display: flex;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.breadcrumb li:not(:last-child)::after {
  content: '>';
  margin-left: 8px;
  color: var(--text-muted);
}

.breadcrumb a {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* Skip Link (Accessibility) */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--accent);
  color: white;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 10000;
  font-weight: 600;
  border-radius: 0 0 8px 0;
}

.skip-link:focus {
  top: 0;
}

/* FAQ Section */
.faq-section {
  padding: 80px 0;
  background: white;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-light);
  border-radius: 12px;
  overflow: hidden;
}

.faq-item summary {
  padding: 20px 24px;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.5rem;
  color: var(--accent);
  transition: transform 0.3s;
}

.faq-item[open] summary::after {
  content: '−';
}

.faq-item p {
  padding: 0 24px 20px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* Thank You Page Styles */
.thanks-hero {
  padding: 120px 0 80px;
  text-align: center;
  background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
  min-height: 60vh;
  display: flex;
  align-items: center;
}

.thanks-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}

.thanks-hero > .container > p {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 40px;
}

.next-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 900px;
  margin: 0 auto 50px;
}

.next-step {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.next-step-icon {
  width: 60px;
  height: 60px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: white;
  font-size: 1.5rem;
  font-weight: 700;
}

.next-step h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

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

.phone-cta {
  background: white;
  border-radius: 16px;
  padding: 30px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.phone-cta h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.phone-cta p {
  color: var(--text-muted);
  margin-bottom: 20px;
}

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

.phone-cta .cta-btn:hover {
  background: var(--cta-hover);
}

/* Dropdown Menu */
.dropdown {
  position: relative;
}

.dropdown-toggle::after {
  content: '▼';
  font-size: 0.7rem;
  margin-left: 5px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: white;
  min-width: 220px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  border-radius: 12px;
  padding: 10px 0;
  z-index: 1000;
  margin-top: 10px;
}

.dropdown:hover .dropdown-menu {
  display: block;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s;
}

.dropdown-menu a:hover {
  background: var(--bg-light);
  color: var(--accent);
}

/* Multi-Step Form Styles */
.multi-step-form {
  background: white;
  border-radius: 20px;
  padding: 30px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.form-step {
  display: none;
}

.form-step[data-active="true"] {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.step-header {
  text-align: center;
  margin-bottom: 25px;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 5px;
}

.step-description {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.radio-options {
  display: grid;
  gap: 12px;
}

.radio-option {
  cursor: pointer;
}

.radio-option input {
  display: none;
}

.radio-card {
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 16px 20px;
  border: 2px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s;
}

.radio-option input:checked + .radio-card {
  border-color: var(--accent);
  background: rgba(37, 99, 235, 0.05);
}

.radio-card:hover {
  border-color: var(--accent);
}

.option-icon {
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.option-label {
  font-weight: 600;
  color: var(--primary);
}

.step-actions {
  display: flex;
  gap: 12px;
  margin-top: 25px;
}

.btn-back {
  flex: 1;
  padding: 14px;
  background: var(--bg-light);
  border: none;
  border-radius: 10px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.3s;
}

.btn-back:hover {
  background: var(--border);
}

.btn-next {
  flex: 2;
  padding: 14px;
  background: var(--cta);
  border: none;
  border-radius: 10px;
  font-weight: 700;
  color: white;
  cursor: pointer;
  transition: background 0.3s;
}

.btn-next:hover {
  background: var(--cta-hover);
}

.step-progress {
  margin-top: 20px;
}

.progress-bar {
  height: 6px;
  background: var(--border);
  border-radius: 3px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 3px;
  transition: width 0.3s ease;
}

.progress-text {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 8px;
}

.step-error {
  background: #fee2e2;
  color: #dc2626;
  padding: 12px;
  border-radius: 8px;
  margin-bottom: 15px;
  text-align: center;
  font-size: 0.9rem;
}

.form-field input.error,
.form-field select.error {
  border-color: #dc2626;
}

/* Homepage Cost Calculator Section */
.cost-calculator-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.cost-calculator-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 10px;
}

.cost-calculator-section .section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-bottom: 40px;
}

.calculator-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.calc-tab {
  padding: 12px 24px;
  background: white;
  border: 2px solid var(--border);
  border-radius: 8px;
  font-weight: 600;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.3s;
}

.calc-tab:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.calc-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.calculator-panel {
  display: none;
  background: white;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.calculator-panel.active {
  display: block;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.calc-fields {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc-field label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 8px;
}

.calc-field select {
  width: 100%;
  padding: 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
  background: white;
}

.calc-field select:focus {
  border-color: var(--accent);
  outline: none;
}

.calc-result-box {
  background: linear-gradient(135deg, var(--primary) 0%, #1e293b 100%);
  border-radius: 16px;
  padding: 40px;
  text-align: center;
  color: white;
}

.calc-result-box .result-label {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 10px;
}

.calc-result-box .result-value {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.calc-result-box .result-note {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 25px;
}

.calc-cta {
  display: inline-block;
  padding: 14px 30px;
  background: var(--cta);
  color: white;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 700;
  transition: background 0.3s;
}

.calc-cta:hover {
  background: var(--cta-hover);
}

/* Service Card CTA */
.service-card .card-cta {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.service-card:hover .card-cta {
  color: #1d4ed8;
}

/* Cost Calculator Widget */
.cost-calculator-widget {
  background: var(--bg-light);
  border-radius: 16px;
  padding: 25px;
  margin-top: 25px;
}

.cost-calculator-widget h4 {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 15px;
}

.calc-field {
  margin-bottom: 15px;
}

.calc-field label {
  display: block;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 5px;
  font-size: 0.9rem;
}

.calc-field select {
  width: 100%;
  padding: 12px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 1rem;
}

.calc-result {
  background: white;
  border-radius: 12px;
  padding: 20px;
  margin-top: 15px;
  text-align: center;
  display: none;
}

.calc-result.show {
  display: block;
}

.calc-result .result-label {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.calc-result .result-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
}

.calc-result .result-note {
  color: var(--text-muted);
  font-size: 0.8rem;
  margin-top: 5px;
}

/* Customer Reviews Section */
.reviews-section {
  padding: 80px 0;
  background: var(--bg-light);
}

.reviews-section h2 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 50px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: white;
  border-radius: 16px;
  padding: 30px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.review-avatar {
  width: 50px;
  height: 50px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.2rem;
}

.review-meta h4 {
  font-weight: 700;
  color: var(--primary);
}

.review-meta span {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.review-stars {
  color: #fbbf24;
  margin-bottom: 10px;
}

.review-card p {
  color: var(--text-dark);
  line-height: 1.6;
}

/* Trust Badges Bar */
.trust-bar {
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

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

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  font-size: 0.9rem;
}

.trust-item svg {
  color: var(--secondary);
}
