:root {
  --primary: #1976d2;
  --accent: #ffd54f;
  --bg: #f5f7fa;
  --whatsapp: #25d366;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--bg);
  color: #333;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Header */
header {
  background: var(--primary);
  color: white;
  padding: 12px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}

nav a {
  color: white;
  margin-left: 18px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
}

nav a.active,
nav a:hover {
  text-decoration: underline;
}

/* Hero */
.hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  margin-top: 40px;
  flex-grow: 1;
}

.hero-text {
  flex: 1;
  min-width: 320px;
}

.hero-text h3 {
  margin-bottom: 8px;
  color: var(--primary);
}

.hero-text p {
  line-height: 1.6;
  font-size: 15px;
}

.hero-buttons {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.btn {
  display: inline-block;
  background: var(--primary);
  color: white;
  padding: 10px 18px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
  min-width: 150px;
  text-align: center;
}

.btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

.btn.call {
  background: var(--accent);
  color: #111;
}

.btn.whatsapp {
  background: var(--whatsapp);
}

.btn.send {
  width: 100%;
  background: var(--primary);
  color: white;
  font-weight: 600;
}

/* Booking Card */
.card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  width: 100%;
  max-width: 430px;
  align-self: flex-start;
}

.booking h3 {
  margin-bottom: 16px;
  color: var(--primary);
}

.booking form input,
.booking form textarea {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 15px;
  box-sizing: border-box;
}

.service-heading {
  font-weight: 600;
  margin-bottom: 8px;
  font-size: 15px;
}

.services-checkboxes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
  margin-bottom: 15px;
}

.services-checkboxes label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  background: #f8f8f8;
  padding: 6px 10px;
  border-radius: 8px;
  border: 1px solid #ddd;
  cursor: pointer;
  transition: 0.2s ease;
}

.services-checkboxes label:hover {
  background: #eef4ff;
  border-color: var(--primary);
}

.services-checkboxes input[type="checkbox"] {
  accent-color: var(--primary);
  width: 16px;
  height: 16px;
}

/* Footer */
footer {
  margin-top: auto;
  text-align: center;
  padding: 18px;
  background: #222;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.3px;
}
.hidden {
  display: none;
}

/* Style thank-you section */
.thankyou {
  text-align: center;
  padding: 20px;
  background: #f0f9ff;
  border: 1px solid #b3e5fc;
  border-radius: 10px;
  margin-top: 15px;
  animation: fadeIn 0.4s ease;
}

/* Animation for smooth entry */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}
/* ============ Services Page ============ */
.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 25px;
  padding-bottom: 40px;
}

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service-card i {
  font-size: 35px;
  color: var(--primary);
  margin-bottom: 12px;
}

.service-card h3 {
  margin-bottom: 6px;
  color: var(--primary);
}

.service-card p {
  font-size: 14px;
  line-height: 1.5;
  color: #444;
}

.service-card .price {
  margin-top: 10px;
  font-weight: 600;
  color: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .hero-buttons {
    justify-content: center;
  }

  .card {
    margin-top: 25px;
    max-width: 100%;
  }

  .services-checkboxes {
    justify-content: center;
  }
}
