/* FELIX EEE HVAC INC - Premium HVAC Website Styles */
:root {
  --primary: #1a5fb4;
  --primary-dark: #0d3d7a;
  --primary-light: #3584e4;
  --accent: #2ec27e;
  --dark: #1e1e1e;
  --gray-900: #2d2d2d;
  --gray-700: #4a4a4a;
  --gray-500: #6b6b6b;
  --gray-300: #d1d5db;
  --gray-100: #f3f4f6;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.12);
  --radius: 8px;
  --radius-lg: 12px;
  --transition: 0.3s ease;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
  --header-height: 80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--gray-700);
  line-height: 1.6;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--primary-dark); }
ul { list-style: none; }
h1, h2, h3, h4, h5, h6 { color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.25rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; }
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section { padding: 5rem 0; }
.section-alt { background: var(--gray-100); }
.section-dark { background: var(--gray-900); color: var(--gray-300); }
.section-dark h2, .section-dark h3 { color: var(--white); }
.text-center { text-align: center; }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-4 { margin-top: 2rem; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
  font-family: inherit;
}
.btn-primary { background: var(--primary); color: var(--white); border-color: var(--primary); }
.btn-primary:hover { background: var(--primary-dark); border-color: var(--primary-dark); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--primary); border-color: var(--white); }
.btn-white:hover { background: var(--gray-100); color: var(--primary-dark); transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--white); border-color: var(--accent); }
.btn-accent:hover { background: #26a269; border-color: #26a269; color: var(--white); transform: translateY(-2px); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-block { width: 100%; }
.btn-group { display: flex; flex-wrap: wrap; gap: 1rem; }

/* Top Bar */
.top-bar {
  background: var(--dark);
  color: var(--gray-300);
  font-size: 0.875rem;
  padding: 0.5rem 0;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 0.5rem; }
.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--primary-light); }
.top-bar-emergency { color: #f66151; font-weight: 600; }

/* Header / Nav */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: var(--shadow-lg); }
.header .container { display: flex; align-items: center; justify-content: space-between; height: var(--header-height); }
.logo { display: flex; align-items: center; gap: 0.75rem; text-decoration: none; }
.logo-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 1.25rem;
}
.logo-text { display: flex; flex-direction: column; }
.logo-text strong { color: var(--dark); font-size: 1.125rem; line-height: 1.2; }
.logo-text span { color: var(--gray-500); font-size: 0.75rem; font-weight: 500; }
.nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-list { display: flex; align-items: center; gap: 0.25rem; }
.nav-list > li { position: relative; }
.nav-list > li > a {
  display: block; padding: 0.75rem 1rem; color: var(--gray-700);
  font-weight: 500; font-size: 0.9375rem; border-radius: var(--radius);
}
.nav-list > li > a:hover, .nav-list > li > a.active { color: var(--primary); background: rgba(26, 95, 180, 0.08); }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 220px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px); transition: all var(--transition); padding: 0.5rem; }
.nav-list > li:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a { display: block; padding: 0.625rem 1rem; color: var(--gray-700); border-radius: var(--radius); font-size: 0.875rem; }
.nav-dropdown a:hover { background: var(--gray-100); color: var(--primary); }
.nav-cta { margin-left: 1rem; }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); margin: 5px 0; transition: var(--transition); }

/* Hero */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 61, 122, 0.92) 0%, rgba(26, 95, 180, 0.75) 100%);
}
.hero .container { position: relative; z-index: 1; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; max-width: 800px; }
.hero-subtitle { font-size: clamp(1.125rem, 2.5vw, 1.375rem); margin-bottom: 2rem; max-width: 600px; opacity: 0.95; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.5rem; }
.hero-badge { display: flex; align-items: center; gap: 0.5rem; font-size: 0.9375rem; }
.hero-badge svg { width: 24px; height: 24px; fill: var(--accent); }

/* Page Hero */
.page-hero {
  position: relative;
  padding: 6rem 0 4rem;
  background-size: cover;
  background-position: center;
  color: var(--white);
  text-align: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 61, 122, 0.9), rgba(26, 95, 180, 0.8));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 1rem; }
.page-hero p { font-size: 1.125rem; opacity: 0.9; max-width: 700px; margin: 0 auto; }

/* Trust Bar */
.trust-bar { background: var(--primary-dark); color: var(--white); padding: 1.5rem 0; }
.trust-bar-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); gap: 1.5rem; text-align: center; }
.trust-item { display: flex; flex-direction: column; align-items: center; gap: 0.5rem; }
.trust-item svg { width: 32px; height: 32px; fill: var(--accent); }
.trust-item span { font-size: 0.8125rem; font-weight: 600; }

/* Stats */
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2rem; text-align: center; }
.stat-item h3 { font-size: 3rem; color: var(--primary); margin-bottom: 0.25rem; }
.stat-item p { color: var(--gray-500); font-weight: 500; margin: 0; }

/* Cards */
.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 2rem; }
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-img { height: 200px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.05); }
.card-body { padding: 1.5rem; }
.card-body h3 { margin-bottom: 0.75rem; }
.card-icon {
  width: 64px; height: 64px;
  background: rgba(26, 95, 180, 0.1);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
}
.card-icon svg { width: 32px; height: 32px; fill: var(--primary); }

/* Service Cards */
.service-card { text-align: center; padding: 2rem; }
.service-card .card-icon { margin: 0 auto 1rem; }

/* Section Header */
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p { color: var(--gray-500); font-size: 1.125rem; }
.section-label {
  display: inline-block;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
}

/* CTA Banner */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { opacity: 0.9; margin-bottom: 2rem; font-size: 1.125rem; }

/* Testimonials */
.testimonial-slider { position: relative; overflow: hidden; max-width: 900px; margin: 0 auto; }
.testimonial-track { display: flex; transition: transform 0.5s ease; }
.testimonial-slide { min-width: 100%; padding: 2rem; }
.testimonial-card {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  text-align: center;
}
.testimonial-stars { color: #f5c211; font-size: 1.25rem; margin-bottom: 1rem; }
.testimonial-text { font-size: 1.125rem; font-style: italic; color: var(--gray-700); margin-bottom: 1.5rem; }
.testimonial-author { font-weight: 600; color: var(--dark); }
.testimonial-location { color: var(--gray-500); font-size: 0.875rem; }
.slider-nav { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.slider-dot { width: 12px; height: 12px; border-radius: 50%; background: var(--gray-300); border: none; cursor: pointer; transition: var(--transition); }
.slider-dot.active { background: var(--primary); width: 32px; border-radius: 6px; }
.slider-arrows { display: flex; justify-content: center; gap: 1rem; margin-top: 1rem; }
.slider-arrow { width: 44px; height: 44px; border-radius: 50%; border: 2px solid var(--primary); background: var(--white); color: var(--primary); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.slider-arrow:hover { background: var(--primary); color: var(--white); }

/* FAQ Accordion */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--gray-300); }
.faq-question {
  width: 100%; text-align: left; padding: 1.25rem 0;
  background: none; border: none; font-size: 1.0625rem;
  font-weight: 600; color: var(--dark); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  font-family: inherit;
}
.faq-question::after { content: '+'; font-size: 1.5rem; color: var(--primary); transition: transform var(--transition); }
.faq-item.active .faq-question::after { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; color: var(--gray-500); }
.faq-item.active .faq-answer { max-height: 500px; }

/* Forms */
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; margin-bottom: 0.5rem; font-weight: 500; color: var(--dark); }
.form-control {
  width: 100%; padding: 0.875rem 1rem;
  border: 1px solid var(--gray-300); border-radius: var(--radius);
  font-size: 1rem; font-family: inherit;
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26, 95, 180, 0.15); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-checkbox { display: flex; gap: 0.75rem; align-items: flex-start; }
.form-checkbox input { margin-top: 0.25rem; flex-shrink: 0; }
.form-checkbox label { font-size: 0.8125rem; color: var(--gray-500); font-weight: 400; margin: 0; }

/* Modal */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6);
  z-index: 2000; display: flex; align-items: center; justify-content: center;
  padding: 1rem; opacity: 0; visibility: hidden; transition: all var(--transition);
}
.modal-overlay.active { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg);
  max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto;
  padding: 2rem; position: relative;
  transform: translateY(20px); transition: transform var(--transition);
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 1rem; right: 1rem;
  background: none; border: none; font-size: 1.5rem;
  cursor: pointer; color: var(--gray-500); width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
}
.modal-close:hover { background: var(--gray-100); color: var(--dark); }
.modal h2 { margin-bottom: 1rem; }

/* Pricing Cards */
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; align-items: stretch; }
.pricing-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2.5rem 2rem; box-shadow: var(--shadow);
  border: 2px solid transparent; transition: all var(--transition);
  display: flex; flex-direction: column;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { border-color: var(--primary); position: relative; }
.pricing-card.featured::before {
  content: 'Most Popular';
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--primary); color: var(--white);
  padding: 0.25rem 1rem; border-radius: 20px; font-size: 0.75rem; font-weight: 600;
}
.pricing-card.selected { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(46, 194, 126, 0.3); }
.pricing-tier { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 0.5rem; }
.pricing-price { font-size: 3rem; font-weight: 800; color: var(--primary); }
.pricing-price span { font-size: 1rem; font-weight: 400; color: var(--gray-500); }
.pricing-features { margin: 1.5rem 0; flex-grow: 1; }
.pricing-features li { padding: 0.5rem 0; padding-left: 1.5rem; position: relative; color: var(--gray-700); }
.pricing-features li::before { content: '✓'; position: absolute; left: 0; color: var(--accent); font-weight: 700; }

/* Calculator */
.calculator-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 2rem; box-shadow: var(--shadow); max-width: 600px; margin: 0 auto;
}
.calculator-result {
  background: var(--gray-100); border-radius: var(--radius);
  padding: 1.5rem; margin-top: 1.5rem; text-align: center;
}
.calculator-result h3 { color: var(--primary); font-size: 2rem; }

/* Gallery */
.gallery-filters { display: flex; flex-wrap: wrap; justify-content: center; gap: 0.5rem; margin-bottom: 2rem; }
.gallery-filter {
  padding: 0.5rem 1.25rem; border: 1px solid var(--gray-300);
  background: var(--white); border-radius: 20px; cursor: pointer;
  font-size: 0.875rem; font-weight: 500; transition: var(--transition);
}
.gallery-filter.active, .gallery-filter:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.gallery-intro { max-width: 42rem; margin: 0 auto 2.5rem; color: var(--gray-600); font-size: 1.05rem; }
.gallery-masonry { columns: 3; column-gap: 1rem; }
.gallery-showcase {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.gallery-item {
  break-inside: avoid; margin-bottom: 1rem;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
  box-shadow: var(--shadow);
}
.gallery-showcase .gallery-item { margin-bottom: 0; aspect-ratio: 4 / 3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.03); }
.gallery-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.75));
  color: var(--white); font-weight: 600; font-size: 1rem;
  pointer-events: none;
}
.gallery-item::after {
  content: '🔍'; position: absolute; inset: 0;
  background: rgba(26, 95, 180, 0.5); display: flex;
  align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.9);
  z-index: 3000; display: flex; align-items: center; justify-content: center;
  opacity: 0; visibility: hidden; transition: all var(--transition);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox img { max-width: 90%; max-height: 85vh; border-radius: var(--radius); }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--white); font-size: 2rem; cursor: pointer; }

/* Blog */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 2rem; }
.blog-card .card-img { height: 220px; }
.blog-meta { display: flex; gap: 1rem; font-size: 0.8125rem; color: var(--gray-500); margin-bottom: 0.75rem; }
.blog-category { color: var(--primary); font-weight: 600; }
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content img { border-radius: var(--radius-lg); margin: 2rem 0; }

/* Map */
.map-container { border-radius: var(--radius-lg); overflow: hidden; height: 400px; }
.map-container iframe { width: 100%; height: 100%; border: 0; }

/* Emergency */
.emergency-phone {
  display: inline-flex; align-items: center; gap: 1rem;
  background: #c01c28; color: var(--white);
  padding: 1.5rem 3rem; border-radius: var(--radius-lg);
  font-size: clamp(1.5rem, 4vw, 2.5rem); font-weight: 800;
  text-decoration: none; transition: all var(--transition);
  box-shadow: 0 8px 30px rgba(192, 28, 40, 0.4);
}
.emergency-phone:hover { color: var(--white); transform: scale(1.02); background: #a01822; }
.pulse { animation: pulse 2s infinite; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 8px 30px rgba(192, 28, 40, 0.4); }
  50% { box-shadow: 0 8px 50px rgba(192, 28, 40, 0.7); }
}

/* Badges */
.badge-grid { display: flex; flex-wrap: wrap; gap: 1.5rem; justify-content: center; }
.badge-item {
  background: var(--white); padding: 1.25rem 1.5rem;
  border-radius: var(--radius); box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 0.75rem;
  font-weight: 600; font-size: 0.875rem;
}
.badge-item svg { width: 28px; height: 28px; fill: var(--primary); }

/* Team */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; }
.team-card { text-align: center; }
.team-card img { width: 200px; height: 200px; border-radius: 50%; object-fit: cover; margin: 0 auto 1rem; }

/* Process Steps */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; counter-reset: step; }
.process-step { text-align: center; position: relative; }
.process-step::before {
  counter-increment: step; content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; background: var(--primary);
  color: var(--white); border-radius: 50%;
  font-weight: 700; font-size: 1.25rem; margin: 0 auto 1rem;
}

/* Before/After */
.before-after { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.before-after-item { position: relative; border-radius: var(--radius); overflow: hidden; }
.before-after-label {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: rgba(0,0,0,0.7); color: var(--white);
  padding: 0.5rem; text-align: center; font-weight: 600; font-size: 0.875rem;
}

/* Footer */
.footer { background: var(--dark); color: var(--gray-300); padding: 4rem 0 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2.5rem; margin-bottom: 3rem; }
.footer h4 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.125rem; }
.footer a { color: var(--gray-300); display: block; padding: 0.25rem 0; font-size: 0.9375rem; }
.footer a:hover { color: var(--primary-light); }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; font-size: 0.9375rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.5rem 0; text-align: center; font-size: 0.875rem;
}
.footer-social { display: flex; gap: 0.75rem; margin-top: 1rem; }
.footer-social a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.1); display: flex;
  align-items: center; justify-content: center; padding: 0;
}
.footer-social a:hover { background: var(--primary); }

/* Sticky Mobile CTA */
.sticky-cta {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 1500; display: none;
  background: var(--white); box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  padding: 0.75rem; gap: 0.5rem;
}
.sticky-cta a { flex: 1; text-align: center; padding: 0.75rem; border-radius: var(--radius); font-weight: 600; font-size: 0.875rem; text-decoration: none; }
.sticky-call { background: var(--primary); color: var(--white); }
.sticky-text { background: var(--accent); color: var(--white); }

/* Live Chat Widget */
.chat-widget {
  position: fixed; bottom: 90px; right: 20px; z-index: 1400;
}
.chat-toggle {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--primary); color: var(--white); border: none;
  cursor: pointer; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; transition: transform var(--transition);
}
.chat-toggle:hover { transform: scale(1.1); }
.chat-panel {
  position: absolute; bottom: 70px; right: 0;
  width: 320px; background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); overflow: hidden;
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: all var(--transition);
}
.chat-panel.active { opacity: 1; visibility: visible; transform: translateY(0); }
.chat-header { background: var(--primary); color: var(--white); padding: 1rem; }
.chat-body { padding: 1.25rem; font-size: 0.875rem; color: var(--gray-500); }

/* Conversion Bar */
.conversion-bar {
  background: var(--gray-100); padding: 1rem 0;
  border-bottom: 1px solid var(--gray-300);
}
.conversion-bar .container {
  display: flex; flex-wrap: wrap; align-items: center;
  justify-content: center; gap: 1.5rem; font-size: 0.875rem;
}
.conversion-bar a { font-weight: 600; }

/* Two Column Layout */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.two-col img { border-radius: var(--radius-lg); box-shadow: var(--shadow); }

/* Legal Pages */
.legal-content { max-width: 800px; margin: 0 auto; padding: 3rem 1.25rem; }
.legal-content h2 { margin: 2rem 0 1rem; font-size: 1.5rem; }
.legal-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.25rem; }
.legal-content ul, .legal-content ol { margin: 1rem 0 1rem 1.5rem; }
.legal-content li { margin-bottom: 0.5rem; list-style: disc; }
.legal-content ol li { list-style: decimal; }

/* Breadcrumb */
.breadcrumb { padding: 1rem 0; font-size: 0.875rem; color: var(--gray-500); }
.breadcrumb a { color: var(--primary); }

/* Responsive */
@media (max-width: 992px) {
  .two-col { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
  .gallery-showcase { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .before-after { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .nav-list { display: none; position: absolute; top: var(--header-height); left: 0; right: 0; background: var(--white); flex-direction: column; padding: 1rem; box-shadow: var(--shadow-lg); }
  .nav-list.active { display: flex; }
  .nav-dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; padding-left: 1rem; display: none; }
  .nav-list > li.open .nav-dropdown { display: block; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .sticky-cta { display: flex; }
  .chat-widget { bottom: 70px; }
  .gallery-masonry { columns: 1; }
  .gallery-showcase { grid-template-columns: 1fr; }
  body { padding-bottom: 60px; }
  .hero { min-height: 70vh; }
}
@media (max-width: 480px) {
  .btn-group { flex-direction: column; }
  .btn-group .btn { width: 100%; }
}
