/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

/* ===== BODY ===== */
body {
  background: #0a0a0a;
  color: white;
}

/* ===== HEADER ===== */
header {
  background: black;
  display: flex;
  justify-content: space-between;
  padding: 15px 50px;
  align-items: center;
}

.logo {
  font-size: 24px;
  font-weight: bold;
  color: white;
}

.logo span {
  color: orange;
}

nav a {
  color: white;
  margin-left: 20px;
  text-decoration: none;
}

nav a:hover {
  color: orange;
}

/* ===== HERO ===== */
.hero {
  height: 90vh;
  background: url("https://images.unsplash.com/photo-1492724441997-5dc865305da7") no-repeat center/cover;
  display: flex;
  justify-content: center;
  align-items: center;
}

.overlay {
  background: rgba(0,0,0,0.7);
  padding: 40px;
  border-radius: 15px;
  text-align: center;
}

button {
  padding: 10px 20px;
  background: orange;
  border: none;
  color: white;
  margin-top: 15px;
  cursor: pointer;
}

button:hover {
  background: #ff9900;
}

/* ===== ABOUT ===== */
.about-section {
  background: url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d") no-repeat center/cover;
  padding: 80px 20px;
  position: relative;
}

.about-section::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.7);
  top: 0;
  left: 0;
}

.about-overlay {
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: auto;
  padding: 40px;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  border-radius: 20px;
}

.about-container {
  display: flex;
  gap: 30px;
  align-items: center;
}

.about-image img {
  width: 300px;
  border-radius: 15px;
}

.about-text h2 {
  color: orange;
}

.highlight {
  color: orange;
}

/* ===== SERVICES ===== */
.services-section {
  padding: 60px;
  text-align: center;
}

.services-container {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.service-card {
  background: #111;
  padding: 20px;
  border-radius: 15px;
  width: 250px;
}

.service-card img {
  width: 100%;
  border-radius: 10px;
}

/* ===== CONTACT ===== */
.contact-section {
  padding: 60px;
  text-align: center;
}

.contact-container {
  max-width: 500px;
  margin: auto;
}

input, textarea {
  width: 100%;
  padding: 10px;
  margin: 10px 0;
  border-radius: 10px;
  border: none;
}

.whatsapp-btn {
  display: inline-block;
  background: green;
  padding: 10px 20px;
  color: white;
  margin-top: 10px;
  border-radius: 10px;
}

/* ===== FOOTER ===== */
footer {
  background: black;
  text-align: center;
  padding: 15px;
}

/* ===== ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.6s;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE FIX ===== */
@media (max-width: 768px) {

  header {
    flex-direction: column;
  }

  nav {
    margin-top: 10px;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    width: 100%;
    max-width: 300px;
  }

  .hero {
    height: 70vh;
  }

}