/* ================== GLOBAL RESET ================== */
html, body {
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  overflow-y: scroll !important;
  box-sizing: border-box;
}

/* ================== HEADER ================== */
.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  background: transparent !important;
}

/* ================== HERO SECTION ================== */
.hero-section {
  position: relative;
  width: 100vw; /* full viewport width */
  overflow: hidden;
  text-align: center;
  padding: 80px 20px 40px;
  box-sizing: border-box;
}

/* Full-width background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.8), rgba(0,0,0,0.4));
  z-index: 0;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 1; /* above background */
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Heading */
.hero-content h1 {
  font-family: 'Rajdhani', sans-serif;
  font-weight: 900;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 4px 15px rgba(0,0,0,0.9);
  margin: 0;
  line-height: 1.1;
  font-size: 68px;
  white-space: nowrap; /* force one line if possible */
}

/* Glow line */
.glow-line {
  height: 7px;
  width: 280px;
  background: #00eeff;
  margin-top: 25px;
  border-radius: 4px;
  box-shadow: 0 0 25px #00eeff;
}

/* Tablet */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 48px;
    white-space: normal; /* allow wrapping */
  }
  .glow-line {
    width: 200px;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .hero-content h1 {
    font-size: 28px;  /* smaller to fit screen */
    letter-spacing: 1px;
    white-space: normal; /* allow wrapping */
  }
  .glow-line {
    width: 150px;
  }
}

/* ================== HERO SERVICES ================== */
.services-hero {
  text-align: center;
  color: #ffffff;
  padding: 50px 20px;
}

.services-hero-heading {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 40px;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.services-hero-list {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left;
}

.services-hero-list li {
  position: relative;
  padding-left: 40px;
  margin-bottom: 25px;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 500;
  color: #fff;
  text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
}

.services-hero-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: 0;
  color: #2ecc71;
  font-size: 32px;
  font-weight: bold;
}

/* ================== SERVICES GRID CONTAINER ================== */
.services-grid-container {
  width: 100%;
  padding: 70px 20px !important;
  margin: 0 auto;
  background: #D9E6F2 !important;
  text-align: center !important;
  box-sizing: border-box;
}

/* ================== TOP CTA ================== */
.top-cta {
  width: 100%;
  padding: 40px 20px;
  margin-bottom: 50px;
}

.top-cta h2 {
  font-size: 36px;
  color: #1a1a1a;
}

.big-phone {
  font-size: 42px;
  font-weight: bold;
  margin: 15px 0;
}

.phone-link {
  color: #0066cc;
  text-decoration: none;
}

.phone-link:hover {
  text-decoration: underline;
}

/* ================== SERVICES GRID ================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.service-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: all 0.3s;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.service-card h3 {
  font-size: 22px;
  margin: 20px 0 12px;
  color: #1a1a1a;
}

.service-card p {
  padding: 0 20px;
  color: #555;
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.service-btn {
  display: inline-block;
  background: #0066cc;
  color: white !important;
  padding: 12px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  margin-bottom: 25px;
  transition: background 0.3s;
}

.service-btn:hover {
  background: #004c99;
}

/* ================== RESPONSIVE ================== */
/* Tablet */
@media (max-width: 992px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .top-cta h2 { font-size: 30px; }
  .big-phone { font-size: 36px; }
}

/* Mobile */
@media (max-width: 576px) {
  .services-grid { grid-template-columns: 1fr; }
  .top-cta h2 { font-size: 26px; }
  .big-phone { font-size: 32px; }
}

/* ================== CLICK-TO-CALL BUTTON ================== */
.call-btn {
  text-decoration: none;
  font-size: 18px;
  color: inherit;
  font-weight: 600;
  display: inline-block;
  text-align: center;
  width: 100%;
}

.call-btn .call-icon {
  display: none;
}

@media (max-width: 768px) {
  .call-btn {
    background: #32cd32;
    color: #ffffff;
    padding: 10px 16px;
    border-radius: 6px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-size: 18px;
    font-weight: 700;
    width: 100%;
    text-align: center;
  }

  .call-btn .call-icon {
    display: inline-block;
    margin-right: 8px;
    font-size: 20px;
  }
}

/* ================== SERVICE AREAS SECTION ================== */
.service-areas-section {
    padding: 70px 20px;
    background: #D9E6F2;
    text-align: center;
    box-sizing: border-box;
}

.service-areas-section .container {
    max-width: 1200px;
    margin: 0 auto;
}

.service-areas-section .section-title {
    font-size: 2.2rem;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-areas-section .section-subtitle {
    color: #444;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.service-areas-section .state-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.service-areas-section .state-badges a {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    padding: 18px 15px;
    background: white;
    color: #0044a0;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.service-areas-section .state-badges a:hover {
    background: #0044a0;
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,68,160,0.25);
}

.service-areas-section .state-icon {
    margin-right: 8px;
    font-size: 18px;
}

@media (max-width: 992px) {
    .service-areas-section .state-badges a {
        min-width: 130px;
        padding: 16px 12px;
        font-size: 0.95rem;
    }
}

@media (max-width: 576px) {
    .service-areas-section .state-badges {
        flex-wrap: nowrap;
        overflow-x: auto;
        padding-bottom: 10px;
    }
    .service-areas-section .state-badges a {
        min-width: 120px;
        margin-right: 10px;
        font-size: 0.9rem;
        justify-content: flex-start;
        padding-left: 12px;
        padding-right: 12px;
    }
}
/* Add offset for anchor links due to fixed header */
:target::before {
  content: "";
  display: block;
  height: 100px; /* approximate height of your fixed header */
  margin-top: -100px; /* same value as height */
}
