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

/* --- Google Fonts & Variables --- */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@400;500;600;700;800&display=swap');

:root {
  --primary: #1a3a6b;
  --primary-dark: #122952;
  --primary-light: #2a5298;
  --accent: #e8a020;
  --accent-dark: #c8870f;
  --accent-light: #f5b842;
  --text-dark: #1a1a2e;
  --text-medium: #444466;
  --text-light: #6b7280;
  --bg-light: #f8fafc;
  --bg-section: #f1f5f9;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 4px 20px rgba(26, 58, 107, 0.12);
  --shadow-lg: 0 10px 40px rgba(26, 58, 107, 0.18);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: all 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
  color: var(--text-dark);
}

/* --- Utility --- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section-pad { padding: 80px 0; }
.section-pad-sm { padding: 50px 0; }
.text-center { text-align: center; }
.text-white { color: var(--white) !important; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-weight: 600;
  font-size: 15px; cursor: pointer; border: none; transition: var(--transition);
  font-family: 'Inter', sans-serif;
}
.btn-primary {
  background: var(--accent); color: var(--white);
  box-shadow: 0 4px 15px rgba(232, 160, 32, 0.35);
}
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(232, 160, 32, 0.45); 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-blue {
  background: var(--primary); color: var(--white);
  box-shadow: 0 4px 15px rgba(26, 58, 107, 0.3);
}
.btn-blue:hover { background: var(--primary-dark); transform: translateY(-2px); color: var(--white); }

.section-label {
  display: inline-block; background: rgba(232,160,32,0.15); color: var(--accent-dark);
  font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 18px; border-radius: 50px; margin-bottom: 14px;
  border: 1px solid rgba(232,160,32,0.3);
}
.section-title {
  font-size: clamp(28px, 4vw, 42px); font-weight: 800;
  color: var(--text-dark); margin-bottom: 16px;
}
.section-title span { color: var(--accent); }
.section-subtitle {
  font-size: 17px; color: var(--text-light); max-width: 620px; line-height: 1.75;
}
.section-header { margin-bottom: 50px; }
.divider {
  width: 60px; height: 4px; background: var(--accent);
  border-radius: 2px; margin: 18px 0 24px;
}
.divider.center { margin: 18px auto 24px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13.5px; padding: 9px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px;
}
.top-bar-left { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.top-bar-right { display: flex; align-items: center; gap: 16px; }
.top-bar a { color: rgba(255,255,255,0.85); }
.top-bar a:hover { color: var(--accent-light); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item i { color: var(--accent-light); font-size: 13px; }
.social-icons { display: flex; align-items: center; gap: 10px; }
.social-icons a {
  width: 28px; height: 28px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; color: rgba(255,255,255,0.85); transition: var(--transition);
}
.social-icons a:hover { background: var(--accent); color: var(--white); }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,58,107,0.1);
  position: sticky; top: 0; z-index: 1000;
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo { display: flex; align-items: center; }
.logo img { height: 70px; width: auto; object-fit: contain; }
.nav-menu { display: flex; align-items: center; gap: 6px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px; border-radius: 6px; font-weight: 500; font-size: 14.5px;
  color: var(--text-dark); transition: var(--transition);
}
.nav-link:hover, .nav-link.active {
  color: var(--primary); background: var(--bg-light);
}
.nav-link i { font-size: 11px; transition: var(--transition); }
.nav-item:hover .nav-link i { transform: rotate(180deg); }
/* Dropdown */
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 0;
  background: var(--white); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); min-width: 240px;
  padding: 8px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-item:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 6px; font-size: 14px;
  color: var(--text-medium); font-weight: 500;
}
.dropdown-menu a i { color: var(--accent); width: 18px; }
.dropdown-menu a:hover { background: var(--bg-light); color: var(--primary); }
.nav-cta { margin-left: 10px; }
/* Hamburger */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { width: 26px; height: 2.5px; background: var(--primary); border-radius: 2px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative; min-height: 88vh;
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  display: flex; align-items: center; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  opacity: 0.12;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(18,41,82,0.92) 0%, rgba(26,58,107,0.85) 60%, rgba(42,82,152,0.75) 100%);
}
.hero-content { position: relative; z-index: 2; padding: 80px 0; }
.hero .container { display: grid; grid-template-columns: 1fr 420px; gap: 60px; align-items: center; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(232,160,32,0.2); border: 1px solid rgba(232,160,32,0.5);
  color: var(--accent-light); padding: 7px 18px; border-radius: 50px;
  font-size: 13px; font-weight: 600; letter-spacing: 1px;
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-badge i { font-size: 14px; }
.hero-title {
  font-size: clamp(32px, 5vw, 58px); font-weight: 800;
  color: var(--white); line-height: 1.15; margin-bottom: 20px;
}
.hero-title span { color: var(--accent-light); }
.hero-subtitle {
  font-size: 17px; color: rgba(255,255,255,0.82); line-height: 1.75;
  margin-bottom: 32px; max-width: 540px;
}
.hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 28px; font-weight: 800; color: var(--accent-light); font-family: 'Poppins', sans-serif; }
.hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.7); font-weight: 500; }

/* Hero Card (Contact Box) */
.hero-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 30px; box-shadow: var(--shadow-lg);
}
.hero-card h3 { font-size: 22px; color: var(--primary); margin-bottom: 6px; }
.hero-card p { font-size: 14px; color: var(--text-light); margin-bottom: 24px; }
.hero-card form { display: flex; flex-direction: column; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-medium); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 15px; border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 14px; font-family: 'Inter', sans-serif; color: var(--text-dark);
  transition: var(--transition); background: var(--bg-light);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none; border-color: var(--primary); background: var(--white);
  box-shadow: 0 0 0 3px rgba(26,58,107,0.08);
}
.form-group textarea { min-height: 90px; resize: vertical; }

/* ============================================
   TRUST BAR
   ============================================ */
.trust-bar { background: var(--accent); padding: 20px 0; }
.trust-bar .container { display: flex; justify-content: center; flex-wrap: wrap; gap: 32px; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  color: var(--white); font-weight: 600; font-size: 14.5px;
}
.trust-item i { font-size: 22px; opacity: 0.9; }

/* ============================================
   SERVICES SECTION
   ============================================ */
.services-section { background: var(--bg-section); }
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 34px 28px; box-shadow: var(--shadow);
  transition: var(--transition); border: 1px solid var(--border);
  position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0;
  width: 4px; height: 100%; background: var(--accent);
  transform: scaleY(0); transform-origin: bottom; transition: var(--transition);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.service-card:hover::before { transform: scaleY(1); }
.service-icon {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px; font-size: 26px; color: var(--white);
}
.service-card h3 { font-size: 18px; margin-bottom: 10px; color: var(--text-dark); }
.service-card p { font-size: 14.5px; color: var(--text-light); line-height: 1.7; margin-bottom: 18px; }
.service-card a.service-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--primary); font-weight: 600; font-size: 14px;
}
.service-card a.service-link:hover { color: var(--accent); }
.service-card a.service-link i { font-size: 12px; transition: var(--transition); }
.service-card a.service-link:hover i { transform: translateX(4px); }

/* ============================================
   WHY CHOOSE US
   ============================================ */
.why-section { background: var(--white); }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-image-wrap { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-image-wrap img { width: 100%; height: 500px; object-fit: cover; border-radius: var(--radius-lg); }
.why-badge {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--accent); color: var(--white); padding: 14px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.why-badge-num { font-size: 30px; font-weight: 800; font-family: 'Poppins', sans-serif; }
.why-badge-text { font-size: 13px; font-weight: 600; }
.why-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 28px; }
.why-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px; background: var(--bg-light); border-radius: var(--radius);
  transition: var(--transition);
}
.why-item:hover { background: var(--bg-section); transform: translateX(4px); }
.why-item-icon {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 17px; flex-shrink: 0;
}
.why-item-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 3px; }
.why-item-text p { font-size: 13.5px; color: var(--text-light); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section { background: var(--bg-section); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 26px; }
.testimonial-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 30px; box-shadow: var(--shadow); border: 1px solid var(--border);
  transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stars { color: var(--accent); font-size: 15px; margin-bottom: 14px; }
.testimonial-card blockquote {
  font-size: 15px; color: var(--text-medium); line-height: 1.75;
  margin-bottom: 20px; font-style: italic;
}
.testimonial-card blockquote::before { content: '"'; color: var(--accent); font-size: 40px; line-height: 0; vertical-align: -16px; margin-right: 4px; font-family: 'Poppins', sans-serif; }
.reviewer { display: flex; align-items: center; gap: 12px; }
.reviewer-avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 16px;
}
.reviewer-info h4 { font-size: 15px; font-weight: 600; }
.reviewer-info p { font-size: 13px; color: var(--text-light); }

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); }
.areas-section .section-title { color: var(--white); }
.areas-section .section-label { background: rgba(232,160,32,0.2); color: var(--accent-light); }
.areas-section .section-subtitle { color: rgba(255,255,255,0.75); }
.areas-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.area-col ul { display: flex; flex-direction: column; gap: 8px; }
.area-col ul li a {
  display: flex; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.82); font-size: 14.5px; padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1); transition: var(--transition);
}
.area-col ul li a i { color: var(--accent-light); font-size: 11px; }
.area-col ul li a:hover { color: var(--accent-light); padding-left: 6px; }

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  background: linear-gradient(135deg, var(--accent-dark), var(--accent));
  padding: 70px 0;
}
.cta-section .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 30px; }
.cta-text h2 { font-size: clamp(24px, 3.5vw, 36px); color: var(--white); font-weight: 800; margin-bottom: 10px; }
.cta-text p { font-size: 16px; color: rgba(255,255,255,0.88); }
.cta-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.cta-phone {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,0.15); padding: 14px 24px;
  border-radius: 50px; color: var(--white); font-weight: 700;
  border: 2px solid rgba(255,255,255,0.4); font-size: 18px;
}
.cta-phone:hover { background: var(--white); color: var(--accent); }
.cta-phone i { font-size: 20px; }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary-dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 70px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { margin-bottom: 18px; }
.footer-logo img { height: 65px; filter: brightness(0) invert(1); opacity: 0.9; }
.footer-about p { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.72); margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px; background: rgba(255,255,255,0.1); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; color: rgba(255,255,255,0.8); transition: var(--transition);
}
.footer-social a:hover { background: var(--accent); color: var(--white); transform: translateY(-3px); }
.footer-col h4 {
  font-size: 16px; font-weight: 700; color: var(--white);
  margin-bottom: 20px; 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: 14px; color: rgba(255,255,255,0.72); display: flex;
  align-items: center; gap: 8px; transition: var(--transition);
}
.footer-links a i { color: var(--accent-light); font-size: 11px; }
.footer-links a:hover { color: var(--accent-light); padding-left: 5px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; }
.footer-contact-item i { color: var(--accent-light); font-size: 16px; margin-top: 2px; flex-shrink: 0; }
.footer-contact-item span { font-size: 14px; color: rgba(255,255,255,0.75); line-height: 1.6; }
.footer-contact-item a { color: rgba(255,255,255,0.75); }
.footer-contact-item a:hover { color: var(--accent-light); }
.footer-hours { display: flex; flex-direction: column; gap: 8px; }
.footer-hour-row { display: flex; justify-content: space-between; font-size: 13.5px; color: rgba(255,255,255,0.72); }
.footer-hour-row span:last-child { color: var(--accent-light); font-weight: 500; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 13.5px; color: rgba(255,255,255,0.55); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 13px; color: rgba(255,255,255,0.55); }
.footer-bottom-links a:hover { color: var(--accent-light); }

/* ============================================
   PAGE HERO (Inner Pages)
   ============================================ */
.page-hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 60%, var(--primary-light) 100%);
  padding: 80px 0; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover;
  opacity: 0.07;
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-content { max-width: 700px; }
.page-hero h1 { font-size: clamp(28px, 4.5vw, 50px); color: var(--white); font-weight: 800; margin-bottom: 14px; }
.page-hero p { font-size: 17px; color: rgba(255,255,255,0.82); margin-bottom: 26px; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: rgba(255,255,255,0.65); }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb i { font-size: 10px; }
.breadcrumb span.current { color: var(--accent-light); }

/* ============================================
   SERVICE DETAIL PAGE
   ============================================ */
.service-detail-section { padding: 70px 0; }
.service-detail-grid { display: grid; grid-template-columns: 1fr 360px; gap: 50px; align-items: start; }
.service-content h2 { font-size: 30px; margin-bottom: 14px; }
.service-content h3 { font-size: 22px; margin: 30px 0 12px; color: var(--primary); }
.service-content p { font-size: 15.5px; color: var(--text-medium); line-height: 1.8; margin-bottom: 16px; }
.service-content ul { margin: 14px 0 20px 0; display: flex; flex-direction: column; gap: 10px; }
.service-content ul li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: 15px; color: var(--text-medium);
}
.service-content ul li i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }
/* Sidebar */
.service-sidebar { display: flex; flex-direction: column; gap: 24px; }
.sidebar-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--border); overflow: hidden; box-shadow: var(--shadow);
}
.sidebar-card-header {
  background: var(--primary); padding: 16px 20px;
  color: var(--white); font-weight: 700; font-size: 16px;
  display: flex; align-items: center; gap: 10px;
}
.sidebar-card-header i { color: var(--accent-light); }
.sidebar-card-body { padding: 20px; }
.sidebar-services a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 11px 0; border-bottom: 1px solid var(--border);
  font-size: 14.5px; color: var(--text-medium); font-weight: 500;
}
.sidebar-services a:last-child { border-bottom: none; }
.sidebar-services a:hover { color: var(--primary); }
.sidebar-services a i { color: var(--accent); }
.contact-sidebar { text-align: center; }
.contact-sidebar .phone-big {
  font-size: 24px; font-weight: 800; color: var(--primary);
  font-family: 'Poppins', sans-serif; display: block; margin: 10px 0;
}
.contact-sidebar p { font-size: 13.5px; color: var(--text-light); margin-bottom: 16px; }
.hours-list { display: flex; flex-direction: column; gap: 8px; }
.hour-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13.5px; padding: 7px 0; border-bottom: 1px solid var(--border);
}
.hour-row:last-child { border-bottom: none; }
.hour-row .day { color: var(--text-medium); font-weight: 500; }
.hour-row .time { color: var(--primary); font-weight: 600; }

/* Benefits Grid */
.benefits-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin: 28px 0;
}
.benefit-item {
  background: var(--bg-light); padding: 20px; border-radius: var(--radius);
  border-left: 3px solid var(--accent); transition: var(--transition);
}
.benefit-item:hover { background: var(--bg-section); }
.benefit-item h4 { font-size: 15px; margin-bottom: 5px; color: var(--primary); }
.benefit-item p { font-size: 13.5px; color: var(--text-light); }

/* Process Steps */
.process-steps { display: flex; flex-direction: column; gap: 20px; margin: 28px 0; }
.process-step { display: flex; gap: 18px; align-items: flex-start; }
.step-num {
  width: 44px; height: 44px; background: var(--primary); color: var(--white);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 17px; flex-shrink: 0; font-family: 'Poppins', sans-serif;
}
.step-content h4 { font-size: 16px; margin-bottom: 5px; }
.step-content p { font-size: 14.5px; color: var(--text-light); }

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-img { border-radius: var(--radius-lg); overflow: hidden; }
.about-img img { width: 100%; height: 460px; object-fit: cover; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin: 50px 0; }
.stat-card {
  text-align: center; background: var(--white); padding: 28px 20px;
  border-radius: var(--radius); box-shadow: var(--shadow); border-top: 3px solid var(--accent);
}
.stat-card .num { font-size: 38px; font-weight: 800; color: var(--primary); font-family: 'Poppins', sans-serif; }
.stat-card .label { font-size: 13.5px; color: var(--text-light); font-weight: 500; margin-top: 4px; }
.team-section { background: var(--bg-section); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.value-card {
  background: var(--white); padding: 30px 24px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow); text-align: center; transition: var(--transition);
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.value-icon {
  width: 64px; height: 64px; margin: 0 auto 18px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 26px; color: var(--white);
}
.value-card h3 { font-size: 17px; margin-bottom: 10px; }
.value-card p { font-size: 14px; color: var(--text-light); }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--bg-section); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-form-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px; box-shadow: var(--shadow);
}
.contact-form-card h2 { font-size: 26px; margin-bottom: 8px; }
.contact-form-card > p { font-size: 15px; color: var(--text-light); margin-bottom: 28px; }
.contact-info-col { display: flex; flex-direction: column; gap: 22px; }
.contact-info-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow);
  display: flex; align-items: flex-start; gap: 16px;
}
.contact-info-icon {
  width: 54px; height: 54px; background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white); flex-shrink: 0;
}
.contact-info-box h3 { font-size: 16px; margin-bottom: 5px; }
.contact-info-box p { font-size: 14.5px; color: var(--text-medium); line-height: 1.7; }
.contact-info-box a { color: var(--primary); font-weight: 500; }
.contact-info-box a:hover { color: var(--accent); }
.map-section { padding: 0 0 70px; background: var(--bg-section); }
.map-wrap { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 400px; display: block; }
/* Form row */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-card { max-width: 500px; }
  .why-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { display: grid; grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .top-bar .container { flex-direction: column; gap: 8px; text-align: center; }
  .top-bar-left { justify-content: center; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 0; right: -100%; bottom: 0; width: 290px;
    background: var(--white); flex-direction: column; align-items: flex-start;
    padding: 80px 24px 24px; box-shadow: -5px 0 20px rgba(0,0,0,0.15);
    transition: right 0.35s ease; overflow-y: auto; z-index: 999;
    gap: 4px;
  }
  .nav-menu.open { right: 0; }
  .nav-item { width: 100%; }
  .nav-link { width: 100%; padding: 12px 14px; }
  .dropdown-menu { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: none; padding: 0 0 0 14px; display: none; }
  .nav-item.open .dropdown-menu { display: block; }
  .nav-cta { width: 100%; margin: 10px 0 0; }
  .nav-cta .btn { width: 100%; justify-content: center; }
  .hero { min-height: auto; }
  .hero-content { padding: 60px 0; }
  .hero-stats { gap: 20px; }
  .trust-bar .container { gap: 18px; }
  .areas-grid { grid-template-columns: 1fr; }
  .about-story-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section .container { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .service-sidebar { display: flex; }
  .benefits-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .section-pad { padding: 55px 0; }
  .hero-buttons { flex-direction: column; }
  .stats-row { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .hero-stats { flex-direction: row; justify-content: flex-start; }
}
