* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;
}

body {
  background: #f9fafb;
  color: #333;
}

/* Navbar */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.logo {
  font-size: 22px;
  font-weight: 700;
  color: #f97316;
}

.navbar a {
  color: #333;
  margin-left: 20px;
  text-decoration: none;
  font-weight: 500;
}

.navbar a:hover {
  color: #fb923c;
}

/* Hero */
.hero {
  height: 90vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  transition: background-image 1.5s ease-in-out;
}

.hero-content {
  background: rgba(0,0,0,0.55);
  padding: 40px;
  border-radius: 15px;
}

.hero-content h1 {
  font-size: 48px;
}

.hero-content p {
  margin: 15px 0;
  font-size: 18px;
}

.btn {
  background: #f97316;
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  color: white;
  font-weight: 600;
  display: inline-block;
}

.btn:hover {
  background: #ea580c;
}

/* Sections */
.section {
  padding: 80px 40px;
  text-align: center;
}

.section h2 {
  font-size: 32px;
  margin-bottom: 20px;
  color: #f97316;
}

/* Cards */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.card {
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s ease;
}

.card.show {
  transform: translateY(0);
  opacity: 1;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.card-content {
  padding: 20px;
}

.card-content h3 {
  color: #ea580c;
  margin-bottom: 8px;
}

.card:hover {
  transform: scale(1.05);
}

/* Gallery */
#gallery {
  background: linear-gradient(135deg, #fff7ed, #ffedd5);
}

.gallery {
  display: flex;
  justify-content: center;
  gap: 25px;
  margin-top: 30px;
}

.gallery img {
  width: 320px;
  height: 230px;
  object-fit: cover;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

/* WhatsApp Button */
.whatsapp-btn {
  margin-top: 25px;
}

/* Footer */
footer {
  background: #f97316;
  color: white;
  text-align: center;
  padding: 15px;
}

/* Mobile */
@media (max-width: 768px) {
  .hero-content h1 {
    font-size: 32px;
  }

  .gallery {
    flex-direction: column;
  }

  .gallery img {
    width: 100%;
  }
}