:root {
  --primary: #0f172a;
  --accent: #dc2626;
  --white: #ffffff;
  --gray-50: #f8fafc;
  --gray-100: #f1f5f9;
  --gray-600: #475569;
  --gray-800: #1e293b;
  --font: 'Inter', sans-serif;
  --shadow-md: 0 4px 20px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 40px rgba(0,0,0,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-pill: 50px;
  --transition: all 0.3s ease;
  --container: 1280px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font);
  color: var(--gray-800);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  line-height: 1.1;
  color: var(--primary);
}

h1 { font-size: clamp(36px, 6vw, 64px); font-weight: 900; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; position: relative; margin-bottom: 40px; }
h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin-top: 15px;
}
h3 { font-size: clamp(20px, 3vw, 28px); font-weight: 700; margin-bottom: 15px; }

a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 100px 0;
}

.section:nth-child(even) {
  background: var(--gray-50);
}

/* BUTTONS */
.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  min-height: 44px;
}

.btn-pill:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
}

.btn-primary:hover {
  background: #b91c1c;
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background: var(--gray-100);
}

/* CARDS */
.card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-left: 0 solid var(--accent);
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-left-width: 5px;
}

/* FORMS */
.form-group {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.form-input {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid #cbd5e1;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 16px;
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--accent);
  ring: 2px solid var(--accent);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

/* LABELS & BADGES */
.label-accent {
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
  margin-bottom: 10px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  margin-bottom: 12px;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 900;
}

/* HEADER */
.top-bar {
  background: var(--primary);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-bar-nav a {
  margin-left: 20px;
  opacity: 0.8;
}

.top-bar-nav a:hover { opacity: 1; }

.mid-header {
  background: var(--primary);
  color: var(--white);
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.mid-header.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-lg);
}

.mid-header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo-wrap h1 {
  font-size: 24px;
  color: var(--white);
  margin: 0;
}

.logo-sub {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--accent);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.emergency-tag {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
}

.pulse-dot {
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(220, 38, 38, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(220, 38, 38, 0); }
}

.bot-nav {
  background: #0a1120;
  color: var(--white);
  padding: 12px 0;
  position: relative;
  z-index: 999;
}

.bot-nav ul {
  display: flex;
  gap: 30px;
}

.nav-item {
  position: relative;
}

.nav-link {
  font-weight: 600;
  font-size: 15px;
}

.nav-link:hover, .nav-link.active {
  color: var(--accent);
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 200px;
  box-shadow: var(--shadow-lg);
  border-radius: var(--radius-sm);
  padding: 10px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  z-index: 1001; /* Ensure it's above hero */
}

.nav-item:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown a {
  display: block;
  padding: 10px 20px;
  color: var(--gray-800);
  font-size: 14px;
}

.dropdown a:hover {
  background: var(--gray-100);
  color: var(--accent);
}

/* HERO index */
.hero {
  color: var(--white);
  padding: 120px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero .container {
  position: relative;
  z-index: 5; /* Above the overlay */
}

.hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.7); /* Standard overlay */
}


.service-hero {
  color: var(--white);
  padding: 100px 0;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.service-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(15, 23, 42, 0.8);
}

.service-hero .container {
  position: relative;
  z-index: 5;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  opacity: 0.9;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}

.hero-badges {
  display: flex;
  gap: 30px;
}

.badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
}

.hero-form-card {
  color: var(--gray-800);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card .icon {
  font-size: 40px;
  margin-bottom: 20px;
  display: block;
}

.learn-more {
  display: inline-block;
  margin-top: 15px;
  color: var(--accent);
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* WHY CHOOSE US */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-size: 48px;
  font-weight: 900;
  color: var(--accent);
  display: block;
}

.stat-label {
  font-weight: 700;
  color: var(--gray-600);
}

/* HOW IT WORKS */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.step-item {
  text-align: center;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--accent);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  margin: 0 auto 20px;
}

/* REVIEWS */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.review-card {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.stars { color: #fbbf24; margin-bottom: 15px; }

/* SERVICE AREAS */
.areas-section {
  color: var(--gray-800);
}

.areas-section h2 { color: var(--primary); }
.areas-section h2::after { background: var(--accent); }

.pill-container {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.area-pill {
  background: var(--white);
  color: var(--primary);
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  border: 1px solid #cbd5e1;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.map-embed {
  height: 400px;
  width: 100%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

/* SPECIALS STRIP */
.specials-strip {
  background: #0a1120;
  color: var(--white);
  padding: 60px 0;
  text-align: center;
}

.offer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.offer-box h2 {
  margin: 0;
  color: var(--white);
}
.offer-box h2::after { display: none; }

/* FOOTER */
footer {
  background: var(--primary);
  color: var(--white);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col h4 {
  color: var(--white);
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: 800;
}

.footer-links li { margin-bottom: 12px; }
.footer-links a { opacity: 0.7; }
.footer-links a:hover { opacity: 1; padding-left: 5px; }

.footer-brand p { opacity: 0.7; margin-bottom: 20px; font-size: 14px; }

.trust-badges-footer {
  display: flex;
  gap: 15px;
}

.trust-badge {
  background: rgba(255,255,255,0.1);
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 900;
}

.bottom-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  opacity: 0.7;
}

.social-links { display: flex; gap: 20px; }

/* MOBILE HEADER & DRAWER */
.mob-header { display: none; }
.mob-drawer {
  position: fixed;
  top: 0; right: -100%;
  width: 320px; height: 100%;
  max-width: 80vw;
  background: var(--primary);
  z-index: 2000;
  transition: 0.4s ease-in-out;
  padding: 80px 30px;
  color: var(--white);
  overflow-y: auto;
  box-shadow: -5px 0 20px rgba(0,0,0,0.5);
}

.mob-drawer.open { right: 0; }

.drawer-close {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 40px;
  cursor: pointer;
}

.drawer-nav { margin-bottom: 40px; }
.drawer-group { margin-bottom: 30px; }
.drawer-group h5 {
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  margin-bottom: 15px;
}

.drawer-link {
  display: block;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.mob-action-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; width: 100%;
  height: 70px;
  background: var(--white);
  z-index: 1500;
  grid-template-columns: 1fr 1fr;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

.mob-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
}

.mob-action-btn.call { color: var(--primary); }
.mob-action-btn.book { background: var(--accent); color: var(--white); }

/* SERVICE PAGE LAYOUT */
.service-hero {
  background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), url('data:image/svg+xml,<svg width="100" height="100" viewBox="0 0 100 100" xmlns="http://www.w3.org/2000/svg"><rect width="100" height="100" fill="%230f172a"/></svg>');
  padding: 80px 0;
  color: var(--white);
  text-align: center;
}

.service-hero h1 { color: var(--white); }

.service-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 60px;
}

.content-block { margin-bottom: 60px; }
.content-block p { margin-bottom: 20px; font-size: 18px; }

.financing-box {
  border: 2px dashed var(--accent);
  padding: 30px;
  border-radius: var(--radius-md);
  background: rgba(220, 38, 38, 0.05);
  margin: 40px 0;
}

.faq-item {
  border-bottom: 1px solid var(--gray-100);
}

.faq-question {
  padding: 20px 0;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question::after {
  content: '+';
  font-size: 24px;
  color: var(--accent);
}

.faq-item.active .faq-question::after { content: '-'; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding-bottom: 20px;
}

.trust-bar {
  display: flex;
  justify-content: space-between;
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  margin: 40px 0;
}

.trust-bar-item {
  text-align: center;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
}

/* SPECIALS */
.coupons-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.coupon-card {
  border: 3px dashed #cbd5e1;
  padding: 40px;
  border-radius: var(--radius-md);
  text-align: center;
  position: relative;
  background: var(--white);
}

.coupon-card::before {
  content: '✂️';
  position: absolute;
  top: -15px; left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 0 10px;
  font-size: 24px;
}

.coupon-offer {
  font-size: 32px;
  font-weight: 900;
  color: var(--accent);
  margin-bottom: 10px;
}

/* MAINTENANCE */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.price-card {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  text-align: center;
}

.price-card.featured {
  border: 2px solid var(--accent);
  transform: scale(1.05);
}

.price-val {
  font-size: 48px;
  font-weight: 900;
  margin: 20px 0;
}

.price-val span { font-size: 18px; font-weight: 400; color: var(--gray-600); }

/* MODAL */
.modal {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.8);
  z-index: 3000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal.open { display: flex; }

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius-md);
  max-width: 500px;
  width: 90%;
  position: relative;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  body { padding-bottom: 70px; }
  .top-bar, .mid-header, .bot-nav, .header-actions { display: none; }
  .mob-header {
    display: block;
    background: var(--primary);
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  .mob-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .hamburger {
    color: var(--white);
    font-size: 30px;
    cursor: pointer;
  }
  .services-grid, .steps-grid, .reviews-grid, .footer-grid, .coupons-grid, .pricing-grid {
    grid-template-columns: 1fr;
  }
  .mob-action-bar { display: grid; }
  .section { padding: 60px 0; }
  .hero { padding: 60px 0; }
  .trust-bar { flex-direction: column; gap: 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  .hero-ctas { flex-direction: column; }
  .hero-badges { flex-direction: column; gap: 10px; }
}
