/* ===== SIMON AIR - Modern HVAC Website Stylesheet ===== */

/* --- CSS Variables --- */
:root {
  --primary: #1a5276;
  --primary-dark: #0e3a56;
  --primary-light: #2980b9;
  --accent: #e67e22;
  --accent-dark: #d35400;
  --accent-light: #f39c12;
  --white: #ffffff;
  --off-white: #f8f9fa;
  --light-gray: #ecf0f1;
  --medium-gray: #bdc3c7;
  --dark-gray: #7f8c8d;
  --text: #2c3e50;
  --text-light: #5a6c7d;
  --success: #27ae60;
  --shadow: 0 4px 6px rgba(0,0,0,0.07);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
  --radius: 12px;
  --radius-sm: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  color: var(--text);
  line-height: 1.7;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 { font-weight: 700; line-height: 1.2; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.5rem); }
p { margin-bottom: 1rem; }

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-header h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--accent);
  border-radius: 2px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 16px auto 0;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 1rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  font-family: var(--font);
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230,126,34,0.4);
}
.btn-secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-secondary:hover {
  background: var(--white);
  color: var(--primary);
}
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

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

/* --- Header / Navbar --- */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 0;
}
.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 48px;
  height: 48px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
}
.logo-text h1 {
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.1;
}
.logo-text span {
  font-size: 0.7rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}
.nav-links a {
  font-weight: 500;
  color: var(--text);
  font-size: 0.95rem;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--primary); }
.nav-cta {
  background: var(--accent) !important;
  color: var(--white) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-sm) !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
  background: var(--accent-dark) !important;
  transform: translateY(-1px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
}
.menu-toggle span {
  width: 28px;
  height: 3px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero Section --- */
.hero {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 50%, var(--primary-light) 100%);
  color: var(--white);
  padding: 100px 0 120px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,0.05) 0%, transparent 70%);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(230,126,34,0.1) 0%, transparent 70%);
  border-radius: 50%;
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}
.hero-content h1 span { color: var(--accent-light); }
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.8;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.hero-stat {
  text-align: center;
  padding: 16px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent-light);
  display: block;
}
.hero-stat .label {
  font-size: 0.85rem;
  opacity: 0.85;
  margin-top: 4px;
  display: block;
}
.hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius);
  padding: 40px;
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.hero-card .icon {
  font-size: 4rem;
  margin-bottom: 20px;
}
.hero-card h3 {
  color: var(--white);
  margin-bottom: 12px;
  font-size: 1.4rem;
}
.hero-card p {
  opacity: 0.85;
  font-size: 0.95rem;
}
.hero-card .phone-big {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--accent-light);
  margin-top: 16px;
  display: block;
}

/* --- Trust Badges --- */
.trust-bar {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--light-gray);
}
.trust-items {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
  align-items: center;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text);
  font-size: 0.95rem;
}
.trust-item .icon {
  width: 44px;
  height: 44px;
  background: var(--off-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--primary);
}

/* --- Services Section --- */
.services {
  padding: 100px 0;
  background: var(--off-white);
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}
.service-card .icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  margin-bottom: 20px;
}
.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}
.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* --- Why Choose Us --- */
.why-us {
  padding: 100px 0;
  background: var(--white);
}
.why-us-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}
.why-card {
  display: flex;
  gap: 20px;
  padding: 28px;
  border-radius: var(--radius);
  transition: var(--transition);
}
.why-card:hover {
  background: var(--off-white);
}
.why-card .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--accent);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.why-card h3 {
  margin-bottom: 8px;
  font-size: 1.1rem;
}
.why-card p {
  color: var(--text-light);
  font-size: 0.92rem;
}

/* --- Testimonials --- */
.testimonials {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.testimonials .section-header h2 { color: var(--white); }
.testimonials .section-header h2::after { background: var(--accent-light); }
.testimonials .section-header p { color: rgba(255,255,255,0.8); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.testimonial-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 32px;
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.14);
  transform: translateY(-4px);
}
.testimonial-stars {
  color: var(--accent-light);
  font-size: 1.1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}
.testimonial-card blockquote {
  font-size: 0.98rem;
  line-height: 1.8;
  opacity: 0.92;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-name {
  font-weight: 600;
  font-size: 0.95rem;
}
.testimonial-source {
  font-size: 0.8rem;
  opacity: 0.7;
}

/* --- Service Areas --- */
.areas {
  padding: 100px 0;
  background: var(--off-white);
}
.areas-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.areas-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.areas-list a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 16px;
  background: var(--white);
  border-radius: var(--radius-sm);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--text);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.areas-list a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(4px);
}
.areas-list a::before {
  content: '📍';
  font-size: 0.85rem;
}
.areas-map {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  text-align: center;
}
.areas-map h3 {
  margin-bottom: 16px;
}
.areas-map p {
  color: var(--text-light);
  margin-bottom: 24px;
}

/* --- CTA Banner --- */
.cta-banner {
  background: var(--accent);
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 {
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1.15rem;
  opacity: 0.92;
  max-width: 600px;
  margin: 0 auto 32px;
}
.cta-banner .btn-secondary {
  border-color: var(--white);
  font-size: 1.05rem;
}
.cta-phone {
  font-size: 2rem;
  font-weight: 800;
  display: block;
  margin-bottom: 8px;
}

/* --- Contact Section --- */
.contact {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-card {
  display: flex;
  gap: 16px;
  padding: 24px;
  background: var(--off-white);
  border-radius: var(--radius);
  transition: var(--transition);
}
.contact-card:hover {
  box-shadow: var(--shadow);
}
.contact-card .icon {
  width: 52px;
  height: 52px;
  min-width: 52px;
  background: var(--primary);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--white);
}
.contact-card h4 {
  margin-bottom: 4px;
  font-size: 1rem;
}
.contact-card p, .contact-card a {
  color: var(--text-light);
  font-size: 0.92rem;
}
.contact-card a:hover { color: var(--accent); }
.contact-form {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 40px;
}
.contact-form h3 {
  margin-bottom: 24px;
}
.form-group {
  margin-bottom: 16px;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 6px;
  color: var(--text);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--medium-gray);
  border-radius: var(--radius-sm);
  font-family: var(--font);
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(26,82,118,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* --- Footer --- */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.8);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer h4 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1.05rem;
}
.footer p { font-size: 0.92rem; line-height: 1.8; }
.footer a { color: rgba(255,255,255,0.7); font-size: 0.92rem; }
.footer a:hover { color: var(--accent-light); }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}
.footer-license { color: rgba(255,255,255,0.5); font-size: 0.8rem; }

/* --- Lifestyle Image Sections --- */
.lifestyle-banner {
  position: relative;
  padding: 80px 0;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: var(--white);
  text-align: center;
}
.lifestyle-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(14,58,86,0.7);
}
.lifestyle-banner .container { position: relative; z-index: 2; }
.lifestyle-banner h2 { color: var(--white); margin-bottom: 16px; }
.lifestyle-banner p { opacity: 0.92; font-size: 1.1rem; max-width: 700px; margin: 0 auto; }

.img-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Hero with background image */
.hero-bg {
  background-image: linear-gradient(135deg, rgba(14,58,86,0.88) 0%, rgba(26,82,118,0.82) 50%, rgba(41,128,185,0.78) 100%),
    url('../images/ac-unit-modern-home.png');
  background-size: cover;
  background-position: center;
}

/* Image gallery row */
.image-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  overflow: hidden;
}
.image-row img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: var(--transition);
}
.image-row img:hover {
  transform: scale(1.03);
}

/* Why Us with image */
.why-us-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-us-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 100%;
  min-height: 400px;
}
.why-us-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* CTA with background image */
.cta-bg {
  background-image: linear-gradient(135deg, rgba(230,126,34,0.92), rgba(211,84,0,0.88)),
    url('../images/technician-gauges-rooftop.png');
  background-size: cover;
  background-position: center;
}

/* Service card images */
.service-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius) var(--radius) 0 0;
  margin: -36px -28px 20px -28px;
  width: calc(100% + 56px);
}

/* Contact image */
.contact-image {
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 20px;
  max-height: 200px;
}
.contact-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

/* City hero with image */
.city-hero-bg {
  background-size: cover;
  background-position: center;
  position: relative;
}
.city-hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,58,86,0.88), rgba(26,82,118,0.82));
}
.city-hero-bg .container { position: relative; z-index: 2; }

/* Responsive for image sections */
@media (max-width: 1024px) {
  .why-us-layout { grid-template-columns: 1fr; }
  .why-us-image { min-height: 300px; }
}
@media (max-width: 768px) {
  .image-row { grid-template-columns: repeat(3, 1fr); }
  .image-row img { height: 140px; }
  .lifestyle-banner { background-attachment: scroll; padding: 60px 0; }
  .why-us-image { min-height: 250px; }
}

/* --- City/SEO Page Specific --- */
.city-hero {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.city-hero h1 { color: var(--white); margin-bottom: 16px; }
.city-hero p { opacity: 0.9; font-size: 1.1rem; max-width: 700px; margin: 0 auto 32px; }
.city-content {
  padding: 80px 0;
}
.city-content h2 {
  margin-bottom: 16px;
}
.city-content p {
  color: var(--text-light);
  font-size: 1rem;
  margin-bottom: 16px;
}
.city-services-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 32px 0;
}
.city-service-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  font-weight: 500;
}
.city-service-item::before {
  content: '✓';
  color: var(--success);
  font-weight: 800;
  font-size: 1.2rem;
}
.city-faq {
  padding: 80px 0;
  background: var(--off-white);
}
.faq-item {
  background: var(--white);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: var(--white);
  border: none;
  text-align: left;
  font-family: var(--font);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-question .arrow { transition: var(--transition); font-size: 1.2rem; }
.faq-question.active .arrow { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding: 0 24px;
}
.faq-answer.open {
  max-height: 300px;
  padding: 0 24px 20px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* --- Nearby Cities Sidebar --- */
.nearby-cities {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 32px;
}
.nearby-cities h3 { margin-bottom: 16px; font-size: 1.1rem; }
.nearby-cities-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.nearby-cities-list a {
  display: inline-block;
  padding: 8px 16px;
  background: var(--white);
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--primary);
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.nearby-cities-list a:hover {
  background: var(--primary);
  color: var(--white);
}

/* --- Breadcrumb --- */
.breadcrumb {
  padding: 12px 0;
  background: var(--off-white);
  font-size: 0.85rem;
}
.breadcrumb a { color: var(--primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--dark-gray); margin: 0 8px; }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-content p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-visual { display: none; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .areas-content { grid-template-columns: 1fr; }
  .why-us-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    gap: 16px;
  }
  .menu-toggle { display: flex; }
  .hero { padding: 60px 0 80px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .hero-stat .number { font-size: 1.5rem; }
  .services, .why-us, .testimonials, .areas, .contact, .city-content, .city-faq { padding: 60px 0; }
  .section-header { margin-bottom: 40px; }
  .top-bar { display: none; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .areas-list { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .trust-items { gap: 24px; }
  .cta-phone { font-size: 1.5rem; }
}
