:root {
  --accent: #ff4500;
  --dark: #ffffff; /* White for contrast */
  --muted: #cccccc; /* Lighter gray for secondary text */
  --cta-bg: #16a34a;
}

* { box-sizing: border-box; }
html, body {
  margin: 0;
  padding: 0;
  font-family: Inter, system-ui, Arial, sans-serif;
  color: var(--dark);
  line-height: 1.4;
  background-color: #2f4f4f; /* Darkish blue/gray */
}

/* Ensure background stays consistent on all devices */
@media screen and (max-width: 1024px) {
  html, body {
    background-color: #2f4f4f;
  }
}

/* Header */
.site-header {
  position: relative;
  background: #2f4f4f; /* Darkish blue/gray */
  border-bottom: 1px solid #555;
  z-index: 1000;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
}
.logo {
  height: 220px; /* 4x bigger */
}
.contact-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}
.phone { color: var(--accent); font-weight: 700; text-decoration: none; }
.cta { background: var(--cta-bg); color: #fff; padding: 8px 12px; border-radius: 8px; text-decoration: none; font-weight: 700; }

/* Hero */
.hero {
  min-height: 400px;
  background: linear-gradient(90deg, rgba(15,15,15,0.6), rgba(0,0,0,0.4)), url('hero.jpg') no-repeat center center;
  background-size: cover;
  color: #fff;
  padding: 40px 12px;
  text-align: center;
}
.hero-title { font-size: 2.25rem; margin-bottom: 16px; }
.hero-sub { font-size: 1.5rem; margin-bottom: 20px; }
.hero-cta { background: #ff2d00; color: #fff; padding: 12px 18px; border-radius: 10px; text-decoration: none; font-weight: 800; display: inline-block; }

/* Why Us */
.why-us { padding: 28px 12px; background: #2f4f4f; text-align: center; }
.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 12px; max-width: 1100px; margin: 16px auto; }
.feature { background: #333333; border: 1px solid #555; padding: 14px; border-radius: 10px; } /* Dark gray */

/* Services */
.services { padding: 28px 12px; background: #2f4f4f; }
.services h2 { text-align: center; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 12px; max-width: 900px; margin: 12px auto; }
.service-card { background: #333333; border-radius: 10px; padding: 14px; border: 1px solid #555; text-align: center; } /* Dark gray */
.service-card .sicon { font-size: 22px; margin-bottom: 8px; }
.service-card h4 { margin: 8px 0; font-weight: bold; }
.service-card p { margin: 0; font-size: 0.95rem; color: var(--muted); }

/* Map */
.map-section { padding: 22px 12px; background: #2f4f4f; max-width: 1100px; margin: 0 auto; }
.map-section h2 { text-align: center; }
#map-container { width: 100%; height: 400px; }
#map { width: 100%; height: 100%; }

/* Testimonials */
.testimonials { padding: 22px 12px; background: #2f4f4f; text-align: center; }
.testimonials blockquote { margin: 8px 0; padding: 10px; border-left: 4px solid var(--accent); background: #3a5a5a; border-radius: 6px; display: none; }

/* FAQ */
.faq { padding: 22px 12px; background: #2f4f4f; }
.faq details { margin-bottom: 8px; }

/* Mission */
.mission { padding: 22px 12px; background: #2f4f4f; }

/* Footer */
.site-footer { border-top: 1px solid #555; padding: 18px 12px; background: #2f4f4f; }
.footer-inner { max-width: 1100px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.payments img.pay-logo { height: 32px; margin-right: 8px; vertical-align: middle; }

/* Mobile CTA */
.mobile-cta { position: fixed; left: 12px; right: 12px; bottom: 12px; z-index: 1001; }
.mobile-cta a { display: block; background: var(--cta-bg); color: #fff; padding: 14px; border-radius: 10px; text-align: center; font-weight: 800; text-decoration: none; }

/* Mobile tweaks */
@media (max-width: 700px) {
  .phone { display: none; }
  .header-inner .logo-wrap { justify-content: center; }
  .site-footer { padding-bottom: 80px; }
}