/* GLOBAL */
body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background-color: #ffffff;
  color: #333;
}
a { text-decoration: none; }

/* NAVBAR */
#mainNav,
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  padding: 12px 0;
}
.navbar.scrolled,
#mainNav.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0px 2px 12px rgba(0, 0, 0, 0.15);
}
.brand-logo { height: 60px; width: auto; }
.brand-title { font-size: 1.2rem; font-weight: 700; color: #ffffff !important; }
.brand-subtitle { font-size: 0.85rem; font-weight: 400; color: #ffffff !important; }
.nav-link { color: #fffdfd !important; font-weight: 600; font-size: 1.1rem; margin: 0 12px; transition: color 0.3s ease; }
.nav-link:hover { color: #d32f2f !important; }

/* Service Areas Highlight */
.service-areas-highlight {
  background-color: #fff5f5; /* subtle light red background */
  border-left: 5px solid #d32f2f; /* red accent border */
}

.service-heading {
  font-size: 1.8rem;
  font-weight: 700;
  color: #d32f2f; /* bold red */
  margin-bottom: 10px;
}

.service-text {
  font-size: 1.1rem;
  font-weight: 600;
  color: #333;
  line-height: 1.5;
}


/* HERO */
.hero-contact {
  height: 40vh;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 1; }
.hero-content { position: relative; z-index: 2; text-align: center; color: #fff; }
.hero-content h1 { font-size: 3rem; font-weight: 700; }
.hero-content p { font-size: 1.2rem; }

/* CONTACT FORM */
.contact-form input,
.contact-form textarea,
.contact-form select {
  border-radius: 8px;
  border: 1px solid #ccc;
  padding: 12px;
  width: 100%;
  margin-bottom: 15px;
  font-family: "Poppins", sans-serif;
}

/* BUTTONS */
.btn-cta {
  background-color: #d32f2f;
  color: white;
  padding: 10px 20px;
  font-size: 1rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.btn-cta:hover { background-color: #b71c1c; transform: scale(1.05); }

/* MAP */
.map-container {
  width: 100%;
  height: 400px;
  min-height: 350px;
  overflow: hidden;
  border-radius: 8px;
}

/* FOOTER */
footer {
  background: #222;
  color: white;
  padding: 40px 0;
  text-align: center;
}
footer a { color: #ddd; }
footer a:hover { color: #fff; }
