/* General Styles */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  background-color: #f9fafb;
  color: #333;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

header h1 {
  color: #1E88E5;
  font-size: 22px;
}

header nav a {
  margin-left: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
header nav a:hover {
  color: #1E88E5;
}

/* Hero */
.location-hero {
  background: url('./images/serviceheader.png') center/cover no-repeat;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
}
.location-hero h1 {
  font-size: 36px;
}
.location-hero p {
  font-size: 16px;
  margin: 10px 0 20px;
}
.btn-primary {
  background: #FFA726;
  padding: 10px 20px;
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
}

/* Sections */
.container {
  max-width: 1100px;
  margin: auto;
  padding: 2rem;
}
.about-location h2, .services h2 {
  color: #1E88E5;
  margin-bottom: 10px;
}

/* Service Grid */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.service-card {
  background: #fff;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  text-align: center;
}

/* CTA */
.cta {
  background: #1E88E5;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
}
.cta .btn-primary {
  background: #FFA726;
}

/* Contact */
.contact p {
  margin: 5px 0;
}

/* Footer */
footer {
  background: #1E88E5;
  color: #fff;
  text-align: center;
  padding: 1rem;
}

/* WhatsApp */
.whatsapp-button {
  position: fixed;
  bottom: 20px;
  left: 20px;
}
.whatsapp-button img {
  width: 55px;
  border-radius: 50%;
}
