html {
  scroll-behavior: smooth;
}
*, *::before, *::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
  background: #f8f9fa;
  color: #333;
}

/* Header & Background */
header {
  background: #1a1a1a;
  color: #fff;
  text-align: center;
  padding: 2rem 1rem;
  position: relative;
  overflow: hidden;
}
.bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: 0.25;
}
header h1, header p {
  position: relative;
  z-index: 1;
  animation: fadeIn 1.5s ease-in-out;
}
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Layout Container */
.container {
  padding: 1rem;
  max-width: 500px;
  margin: auto;
  text-align: center;
}

/* WhatsApp Buttons (used by all service cards too) */
.whatsapp {
  display: block;
  background: #25D366;
  color: #fff;
  text-align: center;
  margin: 1rem auto;
  padding: 1.2rem 1rem;
  font-size: 1.05rem;
  border-radius: 30px;
  text-decoration: none;
  max-width: 500px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s ease-in-out, background 0.3s;
}
.whatsapp:hover {
  transform: translateY(-2px);
  background: #128C7E;
}
.whatsapp h3 {
  margin: 0;
  font-size: 1.2rem;
  color: #fff;
}
.whatsapp p {
  margin: 0.3rem 0 0;
  font-size: 0.95rem;
  color: #e9f9f1;
}

/* Form */
form {
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  margin-top: 1rem;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  text-align: left;
}
input, select, textarea, button {
  width: 100%;
  padding: 0.5rem;
  margin-top: 0.5rem;
  font-size: 1rem;
}
button {
  background: #1a1a1a;
  color: white;
  border: none;
  margin-top: 1rem;
  cursor: pointer;
  border-radius: 6px;
}

/* Footer & Links */
.links a {
  display: inline-block;
  margin: 0.5rem;
  text-decoration: none;
  font-size: 0.9rem;
  color: #555;
}
footer {
  background: #1a1a1a;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
}
footer a {
  color: #25D366;
  text-decoration: none;
  margin: 0 5px;
}

/* Cookie Consent */
.cookie-consent {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #222;
  color: #fff;
  text-align: center;
  padding: 1rem;
  font-size: 0.85rem;
}
.cookie-consent button {
  margin-left: 1rem;
  padding: 0.4rem 1rem;
  border: none;
  border-radius: 5px;
  background: #25D366;
  color: white;
  cursor: pointer;
}
