/* Reset and base styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #f4f4f4;
  color: #333;
  line-height: 1.6;
  padding-bottom: 60px;
}

/* Header */
header {
  background-color: #2c3e50;
  color: white;
  text-align: center;
  padding: 2rem 1rem;
}

header h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

header p {
  font-size: 1rem;
  opacity: 0.9;
}

/* Navigation */
nav {
  margin-top: 1rem;
}

nav a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
}

nav a:hover {
  text-decoration: underline;
}

/* Main content */
main {
  max-width: 1100px;
  margin: auto;
  padding: 2rem 1rem;
}

/* Intro Section */
.intro {
  text-align: center;
  margin-bottom: 3rem;
}

.intro h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.intro p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
}

.buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn, .btn-secondary {
  padding: 12px 25px;
  font-size: 1rem;
  border: none;
  border-radius: 5px;
  text-decoration: none;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn {
  background-color: #e67e22;
  color: white;
}

.btn:hover {
  background-color: #d35400;
}

.btn-secondary {
  background-color: #ecf0f1;
  color: #2c3e50;
}

.btn-secondary:hover {
  background-color: #bdc3c7;
}

/* Service List */
.services-list h2 {
  text-align: center;
  font-size: 1.8rem;
  color: #2c3e50;
  margin-bottom: 1.5rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.service-card {
  background-color: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  text-align: center;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  background-color: #f0f0f0;
}

/* Booking Form */
form {
  background-color: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  display: flex;
  flex-direction: column;
  gap: 15px;
}

form label {
  font-weight: 500;
}

form input, form select, form button {
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}

form button {
  background-color: #27ae60;
  color: white;
  border: none;
  cursor: pointer;
}

form button:hover {
  background-color: #1e8449;
}

/* Footer */
footer {
  text-align: center;
  background-color: #2c3e50;
  color: white;
  padding: 1rem;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 3rem;
}

/* Responsive design */
@media (max-width: 768px) {
  header h1 {
    font-size: 2rem;
  }

  nav a {
    display: inline-block;
    margin: 10px 5px;
    font-size: 0.95rem;
  }

  .btn, .btn-secondary {
    width: 100%;
    text-align: center;
  }

  .intro h2 {
    font-size: 1.6rem;
  }

  form {
    padding: 1.5rem;
  }
}
/* WhatsApp Floating Button */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1000;
  background-color: #25D366;
  border-radius: 50%;
  padding: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}
.working-areas {
  background-color: #f9f9f9;
  padding: 40px 20px;
  text-align: center;
}

.working-areas h2 {
  font-size: 28px;
  color: #333;
  margin-bottom: 20px;
}

.working-areas ul {
  list-style: none;
  padding: 0;
}

.working-areas li {
  font-size: 18px;
  color: #555;
  padding: 8px 0;
}
.survey-charge-box {
  border: 2px solid #ffc107;
  background-color: #fffbea;
  padding: 15px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.survey-charge-box h3 {
  margin-top: 0;
  color: #d35400;
}

.survey-charge-box p {
  margin: 8px 0;
  color: #444;
}
