body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: radial-gradient(circle at 20% 30%, rgba(255,140,0,0.15), transparent 40%),
              radial-gradient(circle at 80% 70%, rgba(255,140,0,0.08), transparent 40%),
              #0b1220;
  color: white;
}

/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  padding: 15px 30px;
  background: rgba(2, 6, 23, 0.7);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 40px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: white; 
}

.btn-nav {
  background: orange;
  padding: 8px 12px;
  border-radius: 6px;
}

/* HERO */
.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /*min-height: 60vh; */
  padding: 30px 60px;
  gap: 40px;
  background: transparent;
}

.hero-content {
  max-width: 500px;
}

.hero-content h1 {
  margin-bottom: 10px;
}

.hero-content p {
  margin-bottom: 15px;
}

.hero-img {
  width: 280px;
  height: auto;
}

.btn-primary {
  background: orange;
  padding: 12px 18px;
  border-radius: 6px;
  text-decoration: none;
  color: black;
  transition: 0.3s;
}

.btn-primary:hover {
  background: #ffb347;
  transform: scale(1.05);
}

.btn-secondary {
  border: 1px solid white;
  padding: 12px;
  margin-left: 10px;
}

/* SECTIONS */
.section {
  padding: 30px 20px;
  text-align: center;
}

.section h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 28px;
}

.dark {
  background: #020617;
}

/* CARDS */
.cards {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: stretch;
  flex-wrap: wrap;
}

.card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  border-radius: 10px;
  width: 250px;
  transition: 0.3s;
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(255,140,0,0.2);
}

/* GALLERY */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 15px;
}

.gallery img {
  width: 100%;
  border-radius: 8px;
}

/* CONTACT */
.contact-box a {
  display: inline-block;
  margin: 10px;
  padding: 15px;
  background: orange;
  color: black;
  border-radius: 6px;
  text-decoration: none;
}

/* FORM */
form {
  max-width: 500px;
  margin: auto;
}

form input, form select, form textarea {
  width: 100%;
  margin: 10px 0;
  padding: 12px;
  border-radius: 6px;
  border: none;
}

/* WHATSAPP FLOAT */
.whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: linear-gradient(45deg, orange, #ffb347);
  padding: 14px 18px;
  border-radius: 30px;
  text-decoration: none;
  color: black;
  font-weight: bold;
  box-shadow: 0 8px 20px rgba(255,140,0,0.4);
}

.section ul {
  list-style: none;
  padding: 0;
  display: inline-block;
  text-align: left;
}

.section ul li {
  margin: 8px 0;
}

@media (max-width: 768px) {
  .hero {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .hero-img {
    margin-top: 20px;
    width: 200px;
  }

  .cards {
    flex-direction: column;
    align-items: center;
  }

  .trust-points {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  font-weight: bold;
  color: #ffb347;
}

.phone {
  margin-right: 15px;
  font-weight: bold;
  color: #ffb347;
}

}