/* =====================================================
   Chicago Comfort HVAC Services - Main Stylesheet
   ===================================================== */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1a3c6e;       /* Deep navy blue */
  --primary-dark: #122d54;
  --accent: #e8431a;        /* Bold orange-red */
  --accent-hover: #c73a16;
  --light-bg: #f4f7fc;
  --white: #ffffff;
  --text-dark: #1a1a2e;
  --text-mid: #444466;
  --text-light: #6b6b8a;
  --border: #dde3ee;
  --shadow: 0 4px 24px rgba(26,60,110,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,110,0.16);
  --radius: 10px;
  --radius-lg: 18px;
  --font-main: 'Inter', sans-serif;
  --transition: all 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-main);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.4rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p { color: var(--text-mid); margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ---------- Utility ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.bg-primary { background: var(--primary); }
.bg-accent { background: var(--accent); }
.bg-light { background: var(--light-bg); }
.bg-dark { background: var(--text-dark); }

.label-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(232,67,26,0.10);
  padding: 4px 14px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.label-tag.light {
  color: var(--white);
  background: rgba(255,255,255,0.18);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  font-weight: 600;
  transition: var(--transition);
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(232,67,26,0.30);
}
.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,67,26,0.38);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-lg { padding: 17px 40px; font-size: 1.1rem; }
.btn-sm { padding: 10px 22px; font-size: 0.9rem; }

/* ---------- Top Bar ---------- */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.85rem;
  padding: 8px 0;
}
.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--white); }
.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.top-bar i { margin-right: 5px; color: var(--accent); }

/* ---------- Header / Navbar ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 16px rgba(26,60,110,0.10);
}
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 20px;
}
.nav-logo img {
  height: 64px;
  width: auto;
  object-fit: contain;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-item { position: relative; }
.nav-link {
  display: block;
  padding: 9px 14px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--accent);
  background: rgba(232,67,26,0.06);
}

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  min-width: 230px;
  padding: 8px 0;
  z-index: 999;
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-item {
  display: block;
  padding: 10px 20px;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-dark);
  transition: var(--transition);
}
.dropdown-item:hover {
  color: var(--accent);
  background: var(--light-bg);
}
.nav-cta {
  margin-left: 10px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---------- Hero Section ---------- */
.hero {
  position: relative;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, #1e5096 100%);
  min-height: 620px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1581094288338-2314dddb7ece?w=1600&q=80') center/cover no-repeat;
  opacity: 0.13;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
}
.hero-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.stars { color: #fbbf24; font-size: 1.1rem; letter-spacing: 2px; }
.rating-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; font-weight: 500; }
.hero h1 { color: var(--white); margin-bottom: 18px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.85); font-size: 1.1rem; margin-bottom: 32px; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-badges {
  display: flex;
  gap: 20px;
  margin-top: 42px;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 8px;
  padding: 10px 18px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 600;
}
.hero-badge i { color: var(--accent); font-size: 1.1rem; }

/* ---------- Trust Bar ---------- */
.trust-bar {
  background: var(--accent);
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 600;
  font-size: 0.95rem;
}
.trust-item i { font-size: 1.2rem; }

/* ---------- Section Headers ---------- */
.section-header { margin-bottom: 48px; }
.section-header p { font-size: 1.05rem; max-width: 620px; }
.section-header.centered { text-align: center; }
.section-header.centered p { margin: 0 auto; }

/* ---------- Service Cards ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 26px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 36px 28px;
  transition: var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: 14px;
  background: rgba(26,60,110,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--primary);
  margin-bottom: 20px;
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--accent);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.service-card p { font-size: 0.95rem; margin-bottom: 20px; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--accent);
}
.service-link:hover { gap: 10px; }

/* ---------- Why Choose Us ---------- */
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 18px; }
.why-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.why-icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: rgba(232,67,26,0.10);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.15rem;
}
.why-text h4 { margin-bottom: 4px; font-size: 1rem; }
.why-text p { font-size: 0.93rem; margin: 0; }
.why-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 480px; object-fit: cover; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--primary);
  padding: 50px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}
.stat-item { color: var(--white); }
.stat-number {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label { font-size: 0.95rem; opacity: 0.85; font-weight: 500; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 26px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 18px; right: 24px;
  font-size: 5rem;
  color: rgba(232,67,26,0.10);
  font-family: Georgia, serif;
  line-height: 1;
}
.test-stars { color: #fbbf24; font-size: 1rem; margin-bottom: 14px; }
.test-text { font-size: 0.97rem; color: var(--text-mid); margin-bottom: 20px; font-style: italic; }
.test-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.test-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.test-name { font-weight: 700; font-size: 0.95rem; }
.test-location { font-size: 0.82rem; color: var(--text-light); }

/* ---------- Service Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.area-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  font-weight: 500;
  transition: var(--transition);
}
.area-item:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateX(4px);
}
.area-item i { color: var(--accent); font-size: 0.8rem; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  top: -200px; right: -100px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.80); font-size: 1.05rem; margin-bottom: 32px; max-width: 580px; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 28px;
}
.cta-phone i { color: var(--accent); }

/* ---------- Contact Section ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
}
.contact-detail h4 { margin-bottom: 4px; font-size: 0.95rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-detail p, .contact-detail a { font-size: 1rem; font-weight: 600; color: var(--text-dark); margin: 0; }
.contact-detail a:hover { color: var(--accent); }

/* Hours Table */
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 9px 0; font-size: 0.93rem; }
.hours-table td:first-child { font-weight: 600; color: var(--text-dark); width: 55%; }
.hours-table td:last-child { color: var(--text-mid); }
.hours-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  border-radius: 20px;
  padding: 3px 10px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Contact Form */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow); border: 1px solid var(--border); }
.contact-form h3 { margin-bottom: 24px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.88rem; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.97rem;
  font-family: inherit;
  color: var(--text-dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(26,60,110,0.08); }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Map */
.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; display: block; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.80);
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-brand img { height: 58px; width: auto; margin-bottom: 18px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.93rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,0.10);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  font-size: 1rem;
  transition: var(--transition);
}
.social-link:hover { background: var(--accent); color: var(--white); transform: translateY(-2px); }

.footer-col h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer-links a::before { content: '›'; color: var(--accent); font-size: 1.1rem; }
.footer-links a:hover { color: var(--white); padding-left: 4px; }

.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; gap: 10px; align-items: flex-start; }
.footer-contact-item i { color: var(--accent); font-size: 0.95rem; margin-top: 3px; flex-shrink: 0; }
.footer-contact-item span, .footer-contact-item a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.70);
}
.footer-contact-item a:hover { color: var(--white); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.85rem; color: rgba(255,255,255,0.50); margin: 0; }
.footer-bottom a { color: rgba(255,255,255,0.65); }
.footer-bottom a:hover { color: var(--white); }

/* ---------- Page Hero (Interior Pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 80px 0 70px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: rgba(255,255,255,0.04);
  bottom: -300px; right: -150px;
}
.page-hero-content { position: relative; z-index: 2; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb i { font-size: 0.7rem; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.82); font-size: 1.1rem; max-width: 640px; }

/* ---------- Service Page Sections ---------- */
.feature-list { display: flex; flex-direction: column; gap: 14px; margin: 20px 0; }
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 18px;
  background: var(--light-bg);
  border-radius: 10px;
  border-left: 4px solid var(--accent);
}
.feature-item i { color: var(--accent); margin-top: 2px; flex-shrink: 0; }
.feature-item div h4 { font-size: 0.97rem; margin-bottom: 3px; }
.feature-item div p { font-size: 0.9rem; margin: 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 26px;
}
.process-step {
  text-align: center;
  padding: 30px 20px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  width: 50px;
  height: 50px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 16px;
}
.process-step h4 { margin-bottom: 8px; }
.process-step p { font-size: 0.9rem; margin: 0; }

/* FAQ */
.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 0.97rem;
  color: var(--text-dark);
  text-align: left;
  cursor: pointer;
  transition: var(--transition);
  background: none;
  border: none;
  font-family: inherit;
}
.faq-question:hover { color: var(--accent); }
.faq-question i { font-size: 0.85rem; transition: var(--transition); flex-shrink: 0; }
.faq-question.open i { transform: rotate(180deg); color: var(--accent); }
.faq-answer {
  display: none;
  padding: 0 22px 18px;
  font-size: 0.95rem;
  color: var(--text-mid);
  border-top: 1px solid var(--border);
  padding-top: 14px;
}
.faq-answer.open { display: block; }

/* Service Page Sidebar */
.service-page-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 50px;
  align-items: start;
}
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.sidebar-card h3 { font-size: 1.05rem; margin-bottom: 16px; }
.sidebar-nav { display: flex; flex-direction: column; gap: 8px; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.sidebar-nav a i { color: var(--accent); font-size: 0.95rem; }
.sidebar-nav a.active i, .sidebar-nav a:hover i { color: rgba(255,255,255,0.75); }
.sidebar-cta {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px;
  text-align: center;
}
.sidebar-cta h3 { color: var(--white); margin-bottom: 10px; font-size: 1.1rem; }
.sidebar-cta p { color: rgba(255,255,255,0.80); font-size: 0.9rem; margin-bottom: 18px; }
.sidebar-cta a { color: var(--white); }
.sidebar-cta .phone-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
  margin-bottom: 16px;
}

/* ---------- About Page ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-image { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 500px; object-fit: cover; }
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.value-card {
  text-align: center;
  padding: 24px 18px;
  background: var(--light-bg);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.value-card i { font-size: 1.8rem; color: var(--accent); margin-bottom: 10px; }
.value-card h4 { font-size: 0.95rem; }

/* Team Member */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 26px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  margin: 0 auto 16px;
}
.team-card h4 { margin-bottom: 4px; }
.team-card p { font-size: 0.88rem; margin: 0; }

/* ---------- Benefits Checklist ---------- */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
}
.benefit-item i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; }
  .why-image img { height: 350px; }
  .service-page-layout { grid-template-columns: 1fr; }
  .service-sidebar { order: -1; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section-pad { padding: 55px 0; }
  .top-bar { display: none; }
  .nav-menu {
    display: none;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    gap: 4px;
    z-index: 999;
    max-height: calc(100vh - 90px);
    overflow-y: auto;
  }
  .nav-menu.open { display: flex; }
  .nav-toggle { display: flex; }
  .nav-cta { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border: none; background: var(--light-bg); border-radius: 8px; padding: 6px; display: none !important; }
  .nav-item:hover .dropdown-menu { display: none !important; }
  .hero { min-height: 560px; }
  .hero-badges { gap: 12px; }
  .hero-badge { font-size: 0.8rem; padding: 8px 14px; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-bar-inner { gap: 20px; }
  .benefits-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-phone { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; justify-content: center; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .areas-grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .process-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Animations ---------- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.65s ease forwards; }

/* ---------- Misc ---------- */
.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
  margin: 14px 0 24px;
}
.divider.centered { margin: 14px auto 24px; }
.highlight-box {
  background: rgba(26,60,110,0.06);
  border-left: 4px solid var(--primary);
  border-radius: 6px;
  padding: 18px 22px;
  margin: 20px 0;
}
.highlight-box p { margin: 0; font-size: 0.97rem; }

/* Alert/Success */
.form-success {
  display: none;
  background: rgba(34,197,94,0.12);
  color: #16a34a;
  border: 1px solid rgba(34,197,94,0.30);
  border-radius: 8px;
  padding: 14px 18px;
  font-size: 0.95rem;
  font-weight: 500;
  margin-top: 14px;
  text-align: center;
}
