:root {
  --primary: #0f4c81;
  --accent: #25d366;
  --bg: #f5f7fb;
  --dark: #1f2933;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", system-ui, sans-serif;
}

body {
  background: var(--bg);
  color: var(--dark);
}

.hero {
  background: linear-gradient(135deg, #0f4c81, #062c4f);
  color: white;
  padding: 5rem 1rem;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: auto;
}

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.15);
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.tagline {
  font-size: 1.4rem;
  margin: 1rem 0;
  line-height: 1.4;
}

.location {
  opacity: 0.9;
  margin-bottom: 2rem;
}

/* CTA buttons */
.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

button.primary {
  background: #25d366;
}

button.outline {
  background: transparent;
  border: 2px solid white;
}

/* Secondary link */
.hero-secondary {
  margin-top: 1.2rem;
}

.hero-secondary a {
  color: rgba(255,255,255,0.9);
  font-size: 0.9rem;
  text-decoration: underline;
  cursor: pointer;
}

/* Mobile optimization */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2.5rem;
  }

  .tagline {
    font-size: 1.2rem;
  }
}

/* HERO */
.hero {
  background: linear-gradient(135deg, #0f4c81, #08345a);
  color: white;
  padding: 4rem 1rem;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 700;
}

.tagline {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.location {
  margin: 0.8rem 0 1.5rem;
  opacity: 0.9;
}

.hero-actions button {
  margin: 0.4rem;
}

/* BUTTONS */
button {
  background: var(--accent);
  color: white;
  border: none;
  padding: 0.8rem 1.6rem;
  font-size: 1rem;
  border-radius: 8px;
  cursor: pointer;
}

button.outline {
  background: transparent;
  border: 2px solid white;
}

button:hover {
  opacity: 0.9;
}

/* SECTIONS */
section {
  max-width: 1100px;
  margin: auto;
  padding: 3rem 1rem;
}

h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 1rem;
}

.subtitle {
  text-align: center;
  margin-bottom: 2rem;
  color: #555;
}

/* SERVICES */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: white;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.06);
}

.card h3 {
  margin-bottom: 0.6rem;
}

/* BOOKING FORM */
.booking form {
  max-width: 500px;
  margin: auto;
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.form-group {
  margin-bottom: 1rem;
}

input, select, textarea {
  width: 100%;
  padding: 0.7rem;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #eaeaea;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}

/* FLOATING WHATSAPP */
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: var(--accent);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  text-align: center;
  line-height: 55px;
  font-size: 28px;
  color: white;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.services .card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.services .card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 35px rgba(0,0,0,0.12);
}

.services h3 {
  font-size: 1.2rem;
}
