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

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; color: #333; line-height: 1.7; background: #fff; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }

/* Variables */
:root {
  --orange: #e8882a;
  --orange-dark: #c96f14;
  --dark: #1a1a1a;
  --dark2: #222222;
  --dark3: #2d2d2d;
  --light-bg: #f8f8f8;
  --gray: #666;
  --border: #e0e0e0;
  --white: #ffffff;
  --text: #333333;
  --heading: #1a1a1a;
}

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--dark);
  color: #fff;
  text-align: center;
  padding: 8px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
}
.top-bar a { color: var(--orange); font-weight: 700; }
.top-bar a:hover { text-decoration: underline; }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0 20px;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 75px;
}
.nav-logo img {
  height: 55px;
  width: auto;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 5px;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  cursor: pointer;
  white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--orange); }
.nav-link svg { width: 12px; height: 12px; transition: transform 0.3s; }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  min-width: 240px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.12);
  border-top: 3px solid var(--orange);
  z-index: 100;
}
.nav-item:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 11px 20px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s, color 0.2s, padding 0.2s;
}
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a:hover { background: var(--light-bg); color: var(--orange); padding-left: 28px; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-phone {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  white-space: nowrap;
}
.nav-phone:hover { color: var(--orange); }
.btn-contact {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: background 0.3s;
  white-space: nowrap;
}
.btn-contact:hover { background: var(--orange-dark); color: #fff; }

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}
.nav-toggle span {
  display: block;
  width: 25px;
  height: 3px;
  background: var(--dark);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  background: var(--dark2);
  min-height: 560px;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
  z-index: 1;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: 0.3;
}
.hero-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 20px;
  display: flex;
  align-items: center;
  gap: 40px;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-content { flex: 1; }
.hero-tag {
  display: inline-block;
  color: var(--orange);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.hero-title {
  font-size: clamp(32px, 5vw, 58px);
  font-weight: 900;
  color: #fff;
  line-height: 1.1;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.hero-title span { color: var(--orange); }
.hero-subtitle {
  font-size: 18px;
  color: rgba(255,255,255,0.85);
  margin-bottom: 30px;
  font-style: italic;
}
.hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--orange);
}
.btn-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); transform: translateY(-2px); }
.btn-secondary {
  background: transparent;
  color: #fff;
  padding: 14px 28px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-radius: 4px;
  border: 2px solid #fff;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-secondary:hover { background: #fff; color: var(--dark); }
.hero-ratings {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.rating-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 6px;
  padding: 6px 12px;
}
.rating-badge .stars { color: #ffd700; font-size: 13px; }
.rating-badge .rating-text { color: #fff; font-size: 12px; font-weight: 600; }
.rating-badge .rating-logo { font-size: 13px; font-weight: 800; }
.rating-badge.google .rating-logo { color: #4285F4; }
.rating-badge.yelp .rating-logo { color: #d32323; }
.rating-badge.facebook .rating-logo { color: #1877F2; }

/* ============================================
   SECTION STYLES
   ============================================ */
section { padding: 80px 20px; }
.section-container { max-width: 1200px; margin: 0 auto; }
.section-label {
  display: inline-block;
  color: var(--orange);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.section-title {
  font-size: clamp(26px, 4vw, 42px);
  font-weight: 800;
  color: var(--heading);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title span { color: var(--orange); }
.section-title.white { color: #fff; }
.section-desc {
  font-size: 16px;
  color: var(--gray);
  max-width: 640px;
  margin-bottom: 48px;
}
.section-desc.white { color: rgba(255,255,255,0.75); }
.text-center { text-align: center; }
.text-center .section-desc { margin-left: auto; margin-right: auto; }

/* Divider */
.divider {
  width: 60px;
  height: 4px;
  background: var(--orange);
  margin-bottom: 20px;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: #fff; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.12); }
.service-card-icon {
  background: var(--dark2);
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  min-height: 120px;
}
.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.service-card-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--heading);
  margin-bottom: 10px;
}
.service-card-desc {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 18px;
}
.service-card-link {
  color: var(--orange);
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.3s;
}
.service-card-link:hover { gap: 10px; }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-us-section { background: var(--dark2); }
.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.feature-icon {
  width: 44px;
  height: 44px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.feature-text h4 { color: #fff; font-size: 14px; font-weight: 700; margin-bottom: 4px; }
.feature-text p { color: rgba(255,255,255,0.65); font-size: 13px; }
.why-us-image { position: relative; }
.why-us-image img { border-radius: 10px; width: 100%; }
.why-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.stat-box {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
}
.stat-box .num {
  font-size: 36px;
  font-weight: 900;
  color: var(--orange);
  display: block;
}
.stat-box .label { color: rgba(255,255,255,0.7); font-size: 13px; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--light-bg); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.testimonial-card {
  background: #fff;
  border-radius: 10px;
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.07);
  position: relative;
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px;
  right: 24px;
  font-size: 80px;
  color: var(--orange);
  opacity: 0.15;
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-stars { color: #ffd700; font-size: 16px; margin-bottom: 14px; }
.testimonial-text { font-size: 15px; color: #555; line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--heading); }
.testimonial-role { font-size: 13px; color: var(--gray); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section { background: #fff; }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 14px;
  margin-top: 40px;
}
.area-item {
  background: var(--light-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
  color: var(--heading);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  cursor: default;
}
.area-item:hover { background: var(--orange); color: #fff; border-color: var(--orange); }
.area-item svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: var(--orange);
  padding: 60px 20px;
}
.cta-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-text h2 { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 8px; }
.cta-text p { color: rgba(255,255,255,0.85); font-size: 16px; }
.btn-white {
  background: #fff;
  color: var(--orange);
  padding: 14px 32px;
  font-weight: 700;
  font-size: 15px;
  border-radius: 4px;
  transition: all 0.3s;
  white-space: nowrap;
  text-transform: uppercase;
}
.btn-white:hover { background: var(--dark); color: #fff; }

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section { background: var(--light-bg); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}
.contact-info-list { margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.contact-info-icon {
  width: 48px;
  height: 48px;
  background: var(--orange);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}
.contact-info-text h4 { font-weight: 700; font-size: 15px; color: var(--heading); margin-bottom: 4px; }
.contact-info-text p, .contact-info-text a { font-size: 14px; color: var(--gray); }
.contact-info-text a:hover { color: var(--orange); }

/* Hours Table */
.hours-table { width: 100%; margin-top: 8px; }
.hours-table tr td { padding: 4px 0; font-size: 14px; color: var(--gray); }
.hours-table tr td:first-child { font-weight: 600; color: var(--dark); padding-right: 20px; }

/* Map */
.map-container { border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.1); }
.map-container iframe { width: 100%; height: 400px; display: block; }

/* Contact Form */
.contact-form { background: #fff; border-radius: 10px; padding: 36px; box-shadow: 0 4px 20px rgba(0,0,0,0.07); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--text);
  transition: border-color 0.3s;
  font-family: inherit;
  background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--orange);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.btn-submit {
  width: 100%;
  background: var(--orange);
  color: #fff;
  padding: 14px;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  letter-spacing: 0.5px;
}
.btn-submit:hover { background: var(--orange-dark); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 60px 20px 0;
}
.footer-container { max-width: 1200px; margin: 0 auto; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 55px; margin-bottom: 16px; }
.footer-brand p { font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px;
  transition: background 0.3s;
  color: #fff;
}
.social-link:hover { background: var(--orange); }
.footer-col h4 { color: #fff; font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); display: inline-block; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.65); transition: color 0.3s, padding-left 0.3s; display: flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '›'; color: var(--orange); font-size: 16px; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.65); }
.footer-contact-item span:first-child { font-size: 16px; flex-shrink: 0; margin-top: 1px; }
.footer-contact-item a:hover { color: var(--orange); }
.footer-bottom {
  text-align: center;
  padding: 20px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: rgba(255,255,255,0.4); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================
   PAGE HERO (inner pages)
   ============================================ */
.page-hero {
  background: var(--dark2);
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(232,136,42,0.15) 0%, rgba(0,0,0,0.5) 100%);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .section-label { display: block; margin-bottom: 12px; }
.page-hero-content h1 {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.page-hero-content p { color: rgba(255,255,255,0.8); font-size: 17px; max-width: 640px; margin: 0 auto 24px; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 14px; color: rgba(255,255,255,0.6); flex-wrap: wrap; }
.breadcrumb a { color: var(--orange); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-intro { background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img-wrapper { position: relative; }
.about-img-wrapper img { border-radius: 12px; width: 100%; }
.about-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--orange);
  color: #fff;
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-weight: 800;
  font-size: 22px;
  line-height: 1.2;
  box-shadow: 0 8px 20px rgba(232,136,42,0.4);
}
.about-badge span { display: block; font-size: 12px; font-weight: 500; }
.about-list { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.about-list-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  color: var(--gray);
}
.check-icon {
  width: 22px; height: 22px;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
  flex-shrink: 0;
  margin-top: 2px;
}

/* Team */
.team-section { background: var(--light-bg); }
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 28px; margin-top: 48px; }
.team-card { background: #fff; border-radius: 10px; overflow: hidden; box-shadow: 0 4px 20px rgba(0,0,0,0.07); text-align: center; }
.team-img-placeholder {
  height: 200px; background: linear-gradient(135deg, var(--dark2), var(--dark3));
  display: flex; align-items: center; justify-content: center; font-size: 60px;
}
.team-body { padding: 20px; }
.team-name { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 4px; }
.team-role { font-size: 13px; color: var(--orange); font-weight: 600; }

/* Values */
.values-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 28px; margin-top: 48px; }
.value-card { background: #fff; border-radius: 10px; padding: 32px 24px; text-align: center; border-top: 4px solid var(--orange); box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.value-icon { font-size: 42px; margin-bottom: 16px; }
.value-title { font-size: 18px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.value-text { font-size: 14px; color: var(--gray); line-height: 1.7; }

/* ============================================
   SERVICE PAGE CONTENT
   ============================================ */
.service-content { background: #fff; }
.service-content-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; align-items: start; }
.service-article h2 { font-size: 26px; font-weight: 800; color: var(--heading); margin: 32px 0 14px; }
.service-article h2:first-child { margin-top: 0; }
.service-article h3 { font-size: 20px; font-weight: 700; color: var(--heading); margin: 24px 0 12px; }
.service-article p { font-size: 15px; color: #555; line-height: 1.8; margin-bottom: 16px; }
.service-article ul { margin: 12px 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.service-article ul li {
  font-size: 15px; color: #555;
  display: flex; align-items: flex-start; gap: 10px;
}
.service-article ul li::before { content: '✓'; color: var(--orange); font-weight: 700; flex-shrink: 0; margin-top: 2px; }

/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-box { background: var(--light-bg); border-radius: 10px; padding: 28px; }
.sidebar-box h4 { font-size: 17px; font-weight: 700; color: var(--heading); margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--orange); }
.sidebar-links { display: flex; flex-direction: column; gap: 10px; }
.sidebar-links a {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--dark); font-weight: 600;
  padding: 10px 14px; border-radius: 6px; background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s;
}
.sidebar-links a:hover, .sidebar-links a.active { background: var(--orange); color: #fff; border-color: var(--orange); }
.sidebar-cta { background: var(--dark2); }
.sidebar-cta h4 { color: #fff; border-bottom-color: var(--orange); }
.sidebar-cta p { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 16px; }
.sidebar-phone { color: var(--orange); font-size: 20px; font-weight: 800; display: block; margin-bottom: 12px; }
.sidebar-cta .btn-primary { width: 100%; justify-content: center; }

/* Process Steps */
.process-section { background: var(--light-bg); }
.steps-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 28px; margin-top: 48px; }
.step-card { background: #fff; border-radius: 10px; padding: 28px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); position: relative; }
.step-num {
  width: 48px; height: 48px;
  background: var(--orange);
  border-radius: 50%;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step-title { font-size: 16px; font-weight: 700; color: var(--heading); margin-bottom: 10px; }
.step-text { font-size: 14px; color: var(--gray); }

/* FAQ */
.faq-section { background: #fff; }
.faq-list { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; max-width: 800px; }
.faq-item { border: 1px solid var(--border); border-radius: 8px; overflow: hidden; }
.faq-question {
  padding: 18px 22px;
  font-size: 16px;
  font-weight: 700;
  color: var(--heading);
  background: var(--light-bg);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.3s;
}
.faq-question:hover { background: #f0f0f0; }
.faq-question.open { background: var(--dark2); color: #fff; }
.faq-question.open .faq-icon { transform: rotate(180deg); color: var(--orange); }
.faq-icon { font-size: 20px; transition: transform 0.3s; flex-shrink: 0; }
.faq-answer {
  padding: 0 22px;
  font-size: 15px;
  color: var(--gray);
  line-height: 1.8;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
}
.faq-answer.open { max-height: 400px; padding: 18px 22px; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-full-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .why-us-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-content-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-full-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .nav-menu { display: none; position: absolute; top: 75px; left: 0; right: 0; background: #fff; flex-direction: column; padding: 20px; box-shadow: 0 8px 20px rgba(0,0,0,0.1); gap: 0; }
  .nav-menu.open { display: flex; }
  .nav-link { padding: 12px 8px; border-bottom: 1px solid var(--border); }
  .nav-toggle { display: flex; }
  .nav-phone { display: none; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 16px; }
  .nav-item:hover .dropdown-menu { display: none; }
  .nav-item.open .dropdown-menu { display: block; }
  .hero-container { flex-direction: column; padding: 50px 16px; }
  .why-us-features { grid-template-columns: 1fr; }
  .why-stats { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-container { flex-direction: column; text-align: center; }
  .about-badge { position: static; display: inline-block; margin-top: 20px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 28px; }
  .hero-btns { flex-direction: column; }
  .hero-ratings { gap: 8px; }
}
