/* =====================
   Global Styles
===================== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: #f9f9f9;
  color: #333;
}

/* =====================
   Header & Navigation
===================== */
.site-header {
  background: #0052cc;
  color: white;
  padding: 1rem;
  text-align: center;
}

.site-header nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: bold;
}

/* Call Button in Header */
.btn-call {
  background: white;
  color: #0052cc;
  padding: 0.5rem 1rem;
  margin: 0.5rem auto;
  border-radius: 4px;
  font-weight: bold;
  text-decoration: none;
}

/* =====================
   Dropdown Menu (Fix)
===================== */
.dropdown {
  display: inline-block;
  position: relative;
}

.dropbtn {
  background-color: transparent;
  border: none;
  color: white;
  font-size: 1rem;
  cursor: pointer;
  font-weight: bold;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #ffffff; /* White background for visibility */
  min-width: 160px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.2);
  z-index: 1;
  border-radius: 4px;
}

.dropdown-content a {
  color: #0052cc; /* Dark blue text for readability */
  padding: 10px;
  text-decoration: none;
  display: block;
  font-weight: bold;
}

.dropdown-content a:hover {
  background-color: #eaf0f6; /* Light blue hover */
}

.dropdown:hover .dropdown-content {
  display: block;
}

/* =====================
   Hero Section
===================== */
.hero {
  text-align: center;
  padding: 2rem;
  background: #eaf0f6;
}

/* CTA Button */
.btn-cta {
  display: inline-block;
  margin-top: 1rem;
  background: #0052cc;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  font-size: 1.2rem;
}

/* =====================
   About Snippet Section
===================== */
.about-snippet {
  padding: 2rem;
  background: white;
  text-align: center;
}

/* =====================
   Services Section
===================== */
.services {
  padding: 2rem 1rem;
  text-align: center;
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.service-item {
  background: white;
  padding: 1rem;
  border-radius: 6px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* =====================
   Features (Water Damage Page)
===================== */
.features {
  padding: 2rem 1rem;
  background: white;
}

/* =====================
   Fast Emergency Section
===================== */
.fast-emergency {
  background: url('https://i.imgur.com/9O6iGpM.png') center/cover no-repeat;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

/* =====================
   Disclaimer Section
===================== */
.disclaimer {
  background: #f4f4f4;
  padding: 1rem;
  font-size: 0.85rem;
  color: #555;
  text-align: center;
}

/* =====================
   Footer
===================== */
.site-footer {
  background: #0052cc;
  color: white;
  text-align: center;
  padding: 1rem;
}

.footer-nav a {
  color: white;
  margin: 0 5px;
  text-decoration: none;
  font-weight: bold;
}

/* =====================
   Sticky Call Bar (Mobile)
===================== */
.sticky-call {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #0052cc;
  text-align: center;
  padding: 0.75rem;
  display: none;
}

.sticky-call a {
  color: white;
  font-size: 1.2rem;
  font-weight: bold;
  text-decoration: none;
}

/* =====================
   Mobile Responsiveness
===================== */
@media (max-width: 768px) {
  .sticky-call {
    display: block;
  }
}