/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  color: #eee;                /* light text */
  background-color: #1a1a2e;  /* dark navy */
}

/* ----- Mobile menu (hamburger) ----- */
.nav-toggle {
  display: none;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  display: block;
  width: 28px;
  height: 3px;
  background: #fff;
  position: relative;
  border-radius: 3px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle .hamburger::before { top: -9px; }
.nav-toggle .hamburger::after  { top: 9px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; margin-left: 12px; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    height: 100vh;
    width: 260px;
    flex-direction: column;
    align-items: flex-start;
    padding: 70px 20px;
    gap: 18px;
    background: #1a1a2e;
    transition: right 0.28s ease;
    z-index: 1500;
  }

  .nav-links li a {
    color: #fff;
    font-size: 1.05rem;
    display: block;
    width: 100%;
  }

  .nav-links .phone-link {
    background: #f4b400;
    color: #222 !important;
    padding: 10px 14px;
    border-radius: 6px;
  }

  .nav-links.open { right: 0; }
}

.nav-toggle.open .hamburger { background: transparent; }
.nav-toggle.open .hamburger::before {
  transform: translateY(9px) rotate(45deg);
}
.nav-toggle.open .hamburger::after {
  transform: translateY(-9px) rotate(-45deg);
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #1a1a2e;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar .logo img {
  height: 80px;   /* consistent size */
  width: auto;
  filter: none;   /* no fading */
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 20px;
}

.navbar ul li a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: color 0.3s ease;
}

.navbar ul li a:hover { color: #f4b400; }

.phone-link {
  background: #f4b400;
  color: #222 !important;
  padding: 8px 15px;
  border-radius: 5px;
  font-weight: bold;
}
/* HERO */
.hero {
  position: relative;
  min-height: 520px;
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero img.bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.35) contrast(1.1) saturate(1.15);
}

.hero .overlay {
  display: none; /* remove dark overlay */
}

.hero-text {
  position: absolute;
  text-align: center;
  padding: 0 20px;
  max-width: 980px;
  color: #fff;
}

.hero-text h1 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin-bottom: 10px;
  text-shadow: 0 3px 10px rgba(0, 0, 0, 0.8);
}

.hero-text p {
  font-size: 1.05rem;
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  color: #f9f9f9;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}


/* Sections */
#services, #areas, #testimonials, #contact {
  padding: 50px 20px;
  background: #222831;  /* dark section */
  color: #eee;
  text-align: center;
}

#services h2, #areas h2, #testimonials h2, #contact h2 {
  color: #f4b400;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  list-style: none;
}

.services-grid li {
  background: #1f1f2e;
  padding: 20px;
  border-radius: 10px;
  font-weight: bold;
}

/* Testimonials */
.testimonials-list blockquote {
  background: #1f1f2e;
  padding: 20px;
  margin: 15px auto;
  border-left: 5px solid #f4b400;
  max-width: 600px;
  font-style: italic;
}

/* Contact form */
#contact form {
  max-width: 500px;
  margin: 20px auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

#contact input, #contact textarea {
  padding: 10px;
  border: 1px solid #555;
  border-radius: 5px;
  background: #2a2a3b;
  color: #eee;
}

#contact button {
  background: #f4b400;
  border: none;
  padding: 10px;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
}
#contact button:hover { background: #e0a800; }

/* Call to Action */
.cta {
  padding: 50px 20px;
  background: #f4b400;
  color: #1a1a2e;
  text-align: center;
}

.cta h2 { margin-bottom: 15px; }

.cta a {
  background: #222;
  color: #fff;
  padding: 10px 20px;
  border-radius: 5px;
  text-decoration: none;
}
.cta a:hover { background: #000; }

/* Footer */
footer {
  padding: 20px;
  background: #0f0f1a;
  color: #fff;
  text-align: center;
}
footer a { color: #f4b400; text-decoration: none; }
footer a:hover { text-decoration: underline; }
/* Service Area Cards */
.area-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 18px;
}

/* SERVICE AREAS */
#areas {
  margin: 30px 0;
  text-align: center;
}

#areas h2 {
  color: #f4b400;
  margin-bottom: 20px;
}

.area-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.area-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 220px; /* ensures background image shows */
  background-size: cover;
  background-position: center;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,0.5);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.area-card:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 28px rgba(0,0,0,0.65);
}

.area-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0.25));
}

.area-card .content {
  position: relative;
  padding: 16px;
  z-index: 1;
  text-align: left;
}

.area-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #f4b400;
}

.area-card p {
  margin: 0;
  font-size: 0.95rem;
  color: #dbe7ff;
}

