/* RESET */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

/* NAVBAR */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  justify-content: space-between;
  padding: 20px 10%;
  background: rgba(190, 13, 13, 0.9);
  backdrop-filter: blur(10px);
  color: white;
}

header nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
  transition: 0.3s;
}

header nav a:hover {
  color: #F97316;
}

/* HERO */
.hero {
  position: relative;
  height: 90vh;
  background: url('../images/banner.jpeg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7), rgba(0,0,0,0.2));
}

.hero-content {
  position: relative;
  color: white;
  text-align: center;
}

.hero h1 {
  font-size: 50px;
}

.hero p {
  margin: 20px 0;
}

.hero button {
  padding: 15px 30px;
  background: #F97316;
  border: none;
  color: white;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}

.hero button:hover {
  transform: scale(1.05);
}

/* SERVICES */
.services {
  padding: 60px 10%;
  display: flex;
  gap: 20px;
}

.card {
  flex: 1;
  padding: 40px;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  text-align: center;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-10px);
}

/* WHY */
.why {
  background: #ff0000;
  color: white;
  padding: 60px 10%;
  text-align: center;
}

/* FORM */
.contact {
  padding: 60px 10%;
  text-align: center;
}

form {
  max-width: 400px;
  margin: auto;
}

form input, form button {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border-radius: 8px;
}

form button {
  background: #F97316;
  border: none;
  color: white;
}

/* FLOAT BUTTONS */
.fab {
  position: fixed;
  width: 60px;
  height: 60px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: white;
  text-decoration: none;
  z-index: 999;
  box-shadow: 0 5px 20px rgba(0,0,0,0.3);
}

.phone {
  right: 20px;
  bottom: 20px;
  background: #ff0000;
}

.whatsapp {
  left: 20px;
  bottom: 20px;
  background: #25D366;
}

/* ANIMATION */
.fade-in {
  opacity: 1;
  transform: translateY(30px);
  transition: 1s;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  padding: 30px;
  text-align: center;
}

/* MOBILE */
@media(max-width: 768px) {
  .services {
    flex-direction: column;
  }
}