/*
Theme Name: Cool Comfort HVAC
Theme URI: https://coolcomfort.net
Author: Cool Comfort Heating & Air
Author URI: https://coolcomfort.net
Description: A professional WordPress theme for Cool Comfort Heating & Air -- HVAC services in the Lake Norman, NC area. Features pages for Home, Services, About, Reviews, and Contact.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cool-comfort
Tags: hvac, business, one-page, custom-menu, custom-logo, featured-images
*/

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #1e293b;
  background: #ffffff;
  line-height: 1.6;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s;
}

/* ===== UTILITIES ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .container { padding: 0 1.5rem; }
}
@media (min-width: 1024px) {
  .container { padding: 0 2rem; }
}

.gradient-text {
  background: linear-gradient(135deg, #2b4c9f 0%, #dc3545 50%, #2b4c9f 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(to right, #1d4ed8, #dc2626);
  color: #fff;
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(to right, #1e40af, #b91c1c);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.4);
}

.btn-outline {
  background: transparent;
  color: #475569;
  border: 1px solid #e2e8f0;
}
.btn-outline:hover {
  background: #f8fafc;
}

.btn-white {
  background: #fff;
  color: #1e293b;
  font-weight: 700;
}
.btn-white:hover {
  background: #f1f5f9;
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid #475569;
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  white-space: nowrap;
}

.glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.section-label {
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1d4ed8;
}

.section-title {
  margin-top: 0.75rem;
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.025em;
}

@media (min-width: 640px) {
  .section-title { font-size: 2.25rem; }
}

.section-desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #64748b;
  max-width: 42rem;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #0f172a;
  color: #fff;
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-bar__text {
  color: #94a3b8;
  display: none;
}
@media (min-width: 640px) {
  .top-bar__text { display: block; }
}
.top-bar__phone {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #60a5fa;
  font-weight: 500;
}
.top-bar__phone:hover { color: #93c5fd; }

/* ===== HEADER / NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

@media (min-width: 1024px) {
  .header-inner { height: 6rem; }
}

.site-logo img {
  height: 5rem;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s;
}
.site-logo:hover img { transform: scale(1.05); }

@media (min-width: 1024px) {
  .site-logo img { height: 6rem; }
}

/* Desktop nav */
.main-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .main-nav { display: flex; }
}

.main-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
  border-radius: 0.5rem;
  transition: all 0.3s;
  position: relative;
}
.main-nav a:hover {
  color: #0f172a;
  background: #f8fafc;
}
.main-nav a.active {
  color: #1d4ed8;
}
.main-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.75rem;
  right: 0.75rem;
  height: 2px;
  background: linear-gradient(to right, #1d4ed8, #dc2626);
  border-radius: 1px;
}

.header-cta {
  display: none;
}
@media (min-width: 1024px) {
  .header-cta { display: flex; align-items: center; gap: 0.75rem; }
}

/* Mobile toggle */
.mobile-toggle {
  display: flex;
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: none;
  background: transparent;
  color: #475569;
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}
@media (min-width: 1024px) {
  .mobile-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  border-top: 1px solid #f1f5f9;
  background: #fff;
  padding: 1rem;
}
.mobile-menu.open { display: block; }
@media (min-width: 1024px) {
  .mobile-menu { display: none !important; }
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #475569;
}
.mobile-menu a:hover { background: #f8fafc; }
.mobile-menu a.active {
  background: #eff6ff;
  color: #1d4ed8;
}

.mobile-menu__buttons {
  padding-top: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(to bottom right, #f8fafc, rgba(239,246,255,0.5), rgba(254,242,242,0.3));
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  background-image: radial-gradient(circle, #2b4c9f 1px, transparent 1px);
  background-size: 40px 40px;
}

.hero .container {
  position: relative;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

@media (min-width: 1024px) {
  .hero .container {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding-top: 7rem;
    padding-bottom: 7rem;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  background: #eff6ff;
  border: 1px solid #dbeafe;
  color: #1d4ed8;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.hero__badge-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: #34d399;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .hero__title { font-size: 3rem; } }
@media (min-width: 1024px) { .hero__title { font-size: 3.75rem; } }

.hero__desc {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  color: #64748b;
  line-height: 1.75;
  max-width: 32rem;
}

.hero__buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .hero__buttons { flex-direction: row; }
}

.hero__trust {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero__trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
.hero__trust-item svg { color: #2563eb; }

.hero__image-wrap {
  display: none;
  position: relative;
}
@media (min-width: 1024px) {
  .hero__image-wrap { display: block; }
}
.hero__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(226,232,240,0.5);
}
.hero__image img {
  width: 100%;
  height: 650px;
  object-fit: cover;
  object-position: top;
}

.hero__float-card {
  position: absolute;
  background: #fafafa;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.hero__float-card--left { left: -2rem; top: 25%; }
.hero__float-card--right { right: -1.5rem; bottom: 25%; }

.hero__float-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__float-icon--green { background: #ecfdf5; color: #10b981; }
.hero__float-icon--amber { background: #fffbeb; color: #f59e0b; }

.hero__float-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #1e293b;
}
.hero__float-sub {
  font-size: 0.75rem;
  color: #64748b;
}

.hero__stats-bar {
  position: absolute;
  bottom: -4rem;
  left: 2rem;
  right: 2rem;
  border-radius: 1rem;
  padding: 1.25rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}
.hero__stat {
  text-align: center;
}
.hero__stat + .hero__stat {
  border-left: 1px solid #e2e8f0;
}
.hero__stat-value {
  font-size: 1.25rem;
  font-weight: 700;
}
.hero__stat-label {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.125rem;
}

/* ===== STATS BAR ===== */
.stats-bar {
  padding: 4rem 0;
  background: #fff;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
}
.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
@media (min-width: 1024px) {
  .stats-bar__grid { grid-template-columns: repeat(4, 1fr); }
}
.stats-bar__item { text-align: center; }
.stats-bar__value {
  font-size: 1.875rem;
  font-weight: 700;
}
@media (min-width: 640px) { .stats-bar__value { font-size: 2.25rem; } }
.stats-bar__label {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: #64748b;
}

/* ===== SERVICES SECTION ===== */
.services-section {
  padding: 6rem 0;
  background: #fff;
}
.services-section__header {
  text-align: center;
  margin-bottom: 4rem;
}
.services-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: block;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  background: #fff;
  transition: all 0.5s;
}
.service-card:hover {
  box-shadow: 0 20px 40px rgba(226,232,240,0.5);
  border-color: #e2e8f0;
}
.service-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: transform 0.3s;
}
.service-card:hover .service-card__icon { transform: scale(1.1); }

.service-card__icon--blue { background: #eff6ff; color: #1d4ed8; }
.service-card__icon--orange { background: #fff7ed; color: #ea580c; }
.service-card__icon--green { background: #ecfdf5; color: #059669; }
.service-card__icon--red { background: #fef2f2; color: #dc2626; }
.service-card__icon--violet { background: #f5f3ff; color: #7c3aed; }

.service-card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #0f172a;
  margin-bottom: 0.5rem;
}
.service-card__desc {
  font-size: 0.875rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.875rem;
  font-weight: 500;
  transition: gap 0.3s;
}
.service-card:hover .service-card__link { gap: 0.5rem; }

/* ===== WHY CHOOSE US ===== */
.why-section {
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
  background: linear-gradient(to bottom, #f8fafc, #fff);
}
.why-section .container {
  position: relative;
}
@media (min-width: 1024px) {
  .why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
  }
}
.why__image-wrap {
  position: relative;
  margin-bottom: 3rem;
}
@media (min-width: 1024px) { .why__image-wrap { margin-bottom: 0; } }

.why__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(226,232,240,0.5);
}
.why__image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
}

.why__badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: linear-gradient(to bottom right, #1d4ed8, #dc2626);
  color: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(59,130,246,0.25);
}
.why__badge-value { font-size: 2.25rem; font-weight: 700; }
.why__badge-label { font-size: 0.875rem; color: #bfdbfe; }

.why__reasons {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .why__reasons { grid-template-columns: repeat(2, 1fr); } }

.why__reason {
  display: flex;
  gap: 0.75rem;
}
.why__reason-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 0.75rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
}
.why__reason-title {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.why__reason-desc {
  font-size: 0.875rem;
  color: #64748b;
  margin-top: 0.25rem;
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 6rem 0;
  background: linear-gradient(to bottom, #fff, #f8fafc);
}
.testimonials__header {
  text-align: center;
  margin-bottom: 4rem;
}
.testimonial-card {
  max-width: 48rem;
  margin: 0 auto;
  background: #fff;
  border-radius: 1.5rem;
  border: 1px solid #f1f5f9;
  padding: 2rem 2.5rem;
  box-shadow: 0 10px 25px rgba(241,245,249,0.5);
}
.testimonial-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: #fbbf24;
}
.testimonial-card__text {
  font-size: 1.125rem;
  color: #334155;
  line-height: 1.75;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.testimonial-card__name {
  font-weight: 600;
  color: #0f172a;
}
.testimonial-card__location {
  font-size: 0.875rem;
  color: #64748b;
}
.testimonial-card__service {
  font-size: 0.75rem;
  font-weight: 500;
  color: #0284c7;
  background: #f0f9ff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
}

.testimonials__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}
.testimonials__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: #e2e8f0;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  padding: 0;
}
.testimonials__dot.active {
  width: 2rem;
  background: linear-gradient(to right, #0284c7, #06b6d4);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 6rem 0;
}
.cta-banner__inner {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  background: linear-gradient(to right, #0f172a, #1e293b, #0f172a);
  padding: 4rem 2rem;
  text-align: center;
}
@media (min-width: 640px) {
  .cta-banner__inner { padding: 5rem 4rem; }
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(29,78,216,0.2), rgba(220,38,38,0.2));
}
.cta-banner__content {
  position: relative;
}
.cta-banner__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
}
@media (min-width: 640px) { .cta-banner__title { font-size: 2.25rem; } }
.cta-banner__desc {
  margin-top: 1rem;
  font-size: 1.125rem;
  color: #cbd5e1;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner__buttons {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
@media (min-width: 640px) {
  .cta-banner__buttons { flex-direction: row; justify-content: center; }
}

/* ===== SERVICES PAGE ===== */
.page-hero {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(to bottom right, #f8fafc, rgba(239,246,255,0.3), #fff);
  overflow: hidden;
  text-align: center;
}
.page-hero .section-desc {
  margin-left: auto;
  margin-right: auto;
}

.service-detail {
  padding: 6rem 0;
}
.service-detail__list {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.service-detail__item {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .service-detail__item { grid-template-columns: 1fr 1fr; gap: 5rem; }
  .service-detail__item.reverse .service-detail__image { order: 2; }
  .service-detail__item.reverse .service-detail__content { order: 1; }
}

.service-detail__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(226,232,240,0.5);
}
.service-detail__image img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  transition: transform 0.7s;
}
.service-detail__image:hover img { transform: scale(1.05); }

.service-detail__tagline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.service-detail__name {
  font-size: 1.875rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.025em;
}
.service-detail__desc {
  margin-top: 0.75rem;
  color: #64748b;
  line-height: 1.75;
}
.service-detail__features {
  margin-top: 1.5rem;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.service-detail__feature {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #475569;
}
.service-detail__check {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-detail__buttons {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ===== ABOUT PAGE ===== */
.about-story .container {
  display: grid;
  gap: 4rem;
}
@media (min-width: 1024px) {
  .about-story .container { grid-template-columns: 1fr 1fr; align-items: center; }
}

.about-story__image {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(226,232,240,0.5);
}
.about-story__image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
}
.about-story__stats {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.values-section { padding: 5rem 0; background: #f8fafc; }
.values-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.3s;
}
.value-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.value-card__icon {
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: #f0f9ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #0284c7;
  margin-bottom: 1rem;
}
.value-card__title { font-weight: 600; color: #0f172a; margin-bottom: 0.5rem; }
.value-card__text { font-size: 0.875rem; color: #64748b; line-height: 1.6; }

.team-section { padding: 5rem 0; }
.team-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .team-grid { grid-template-columns: repeat(4, 1fr); } }

.team-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  transition: box-shadow 0.3s;
}
.team-card:hover { box-shadow: 0 10px 25px rgba(0,0,0,0.06); }
.team-card__avatar {
  width: 5rem;
  height: 5rem;
  border-radius: 1rem;
  background: linear-gradient(to bottom right, #e0f2fe, #ecfeff);
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.team-card__name { font-weight: 600; color: #0f172a; }
.team-card__role { font-size: 0.875rem; color: #0284c7; margin-top: 0.25rem; }
.team-card__years { font-size: 0.75rem; color: #94a3b8; margin-top: 0.25rem; }

.areas-section { padding: 5rem 0; background: #f8fafc; }
.areas-grid {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 640px) { .areas-grid { grid-template-columns: repeat(3, 1fr); } }
.areas-grid__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #475569;
}
.areas-map {
  border-radius: 1.5rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

/* ===== REVIEWS PAGE ===== */
.reviews-hero__rating {
  margin-top: 2.5rem;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  background: #fff;
  border-radius: 1rem;
  padding: 1.5rem;
  box-shadow: 0 10px 25px rgba(226,232,240,0.5);
  border: 1px solid #f1f5f9;
}

.reviews-hero__score {
  text-align: center;
  padding-right: 1.5rem;
  border-right: 1px solid #f1f5f9;
}
.reviews-hero__score-value {
  font-size: 3rem;
  font-weight: 700;
}
.reviews-hero__count-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
.reviews-hero__count-label {
  font-size: 0.875rem;
  color: #64748b;
}

.reviews-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.reviews-filter-btn {
  padding: 0.5rem 1rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: #f1f5f9;
  color: #475569;
}
.reviews-filter-btn:hover { background: #e2e8f0; }
.reviews-filter-btn.active {
  background: linear-gradient(to right, #0284c7, #06b6d4);
  color: #fff;
  box-shadow: 0 10px 20px rgba(2,132,199,0.2);
}

.reviews-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 640px) { .reviews-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(3, 1fr); } }

.review-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  padding: 1.5rem;
  transition: all 0.3s;
}
.review-card:hover {
  box-shadow: 0 10px 25px rgba(226,232,240,0.5);
}
.review-card__stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 0.75rem;
  color: #fbbf24;
}
.review-card__text {
  font-size: 0.875rem;
  color: #475569;
  line-height: 1.6;
  margin-bottom: 1rem;
}
.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f8fafc;
}
.review-card__name {
  font-size: 0.875rem;
  font-weight: 600;
  color: #0f172a;
}
.review-card__location {
  font-size: 0.75rem;
  color: #94a3b8;
}

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 5rem 0; }
.contact-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr 2fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-info__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}
.contact-info__card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f8fafc;
  border: 1px solid #f1f5f9;
}
.contact-info__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  background: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d4ed8;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.contact-info__value {
  font-weight: 600;
  color: #0f172a;
}
.contact-info__value a:hover { color: #1d4ed8; }
.contact-info__sub {
  font-size: 0.875rem;
  color: #64748b;
}
.contact-map {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid #e2e8f0;
}

/* Form tabs */
.form-tabs {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
}
.form-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  background: #f1f5f9;
  color: #475569;
}
.form-tab.active {
  background: linear-gradient(to right, #1d4ed8, #dc2626);
  color: #fff;
  box-shadow: 0 10px 20px rgba(59,130,246,0.2);
}

/* Form fields */
.form-card {
  background: #fff;
  border-radius: 1rem;
  border: 1px solid #f1f5f9;
  padding: 1.5rem 2rem;
}
.form-row {
  display: grid;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 640px) {
  .form-row--2col { grid-template-columns: 1fr 1fr; }
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.625rem 0.875rem;
  border-radius: 0.75rem;
  border: 1px solid #e2e8f0;
  font-size: 0.875rem;
  color: #0f172a;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  font-family: inherit;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}
.form-group textarea {
  resize: vertical;
  min-height: 5rem;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #0f172a;
  color: #fff;
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  gap: 3rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer__brand-desc {
  font-size: 0.875rem;
  color: #94a3b8;
  line-height: 1.6;
  margin-top: 1.25rem;
}
.footer__heading {
  font-weight: 600;
  margin-bottom: 1rem;
}
.footer__links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}
.footer__links a {
  font-size: 0.875rem;
  color: #94a3b8;
  transition: color 0.3s;
}
.footer__links a:hover { color: #22d3ee; }

.footer__contact {
  font-size: 0.875rem;
  color: #94a3b8;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.footer__contact a:hover { color: #22d3ee; }

.footer-bottom {
  border-top: 1px solid #1e293b;
  margin-top: 3rem;
  padding: 2rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
@media (min-width: 640px) {
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-bottom__copy {
  font-size: 0.875rem;
  color: #64748b;
}
.footer-bottom__links {
  display: flex;
  gap: 1.5rem;
  font-size: 0.875rem;
  color: #64748b;
}
.footer-bottom__links span {
  cursor: pointer;
  transition: color 0.3s;
}
.footer-bottom__links span:hover { color: #cbd5e1; }

/* ===== SCROLL TO TOP ===== */
.scroll-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 50;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(to bottom right, #1d4ed8, #dc2626);
  color: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 10px 20px rgba(59,130,246,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  font-size: 1.25rem;
  transition: box-shadow 0.3s;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { box-shadow: 0 10px 20px rgba(59,130,246,0.4); }

/* ===== FLOATING CALL (MOBILE) ===== */
.floating-call {
  position: fixed;
  bottom: 1.5rem;
  left: 1.5rem;
  z-index: 50;
  width: 3.5rem;
  height: 3.5rem;
  background: linear-gradient(to bottom right, #1d4ed8, #dc2626);
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 10px 20px rgba(59,130,246,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: pulse-glow 3s ease-in-out infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 20px rgba(43,76,159,0.2); }
  50% { box-shadow: 0 0 40px rgba(43,76,159,0.4); }
}
@media (min-width: 1024px) { .floating-call { display: none; } }

/* ===== SUCCESS MESSAGE ===== */
.success-message {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.success-message__icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #ecfdf5;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: #10b981;
  font-size: 2.5rem;
}
.success-message__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}
.success-message__text {
  margin-top: 0.75rem;
  color: #64748b;
}

/* SVG Icon inline defaults */
.icon {
  width: 1.25rem;
  height: 1.25rem;
  display: inline-block;
  vertical-align: middle;
}
.icon-sm { width: 1rem; height: 1rem; }
.icon-lg { width: 1.5rem; height: 1.5rem; }
