@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
  font-family: 'Poppins', sans-serif;
  background: #f9f9f9;
  color: #333;
  line-height: 1.6;
}

/* Navbar */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  background: #111;
  color: white;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}

.logo {
  font-size: 28px;
  font-weight: 700;
  color: #ff3f81;
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff3f81;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Hero Slider */
#hero {
  position: relative;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  margin-top: 70px;
}

.slides-container {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
}

.slide {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.slide.active { opacity: 1; }

.slide1 { background-image: url('images/slides/slide1.jpg'); }
.slide2 { background-image: url('images/slides/slide2.jpg'); }
.slide3 { background-image: url('images/slides/slide3.jpg'); }
.slide4 { background-image: url('images/slides/slide4.jpg'); }

.hero-overlay {
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0,0,0,0.5);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 3.2rem;
  margin-bottom: 15px;
  text-shadow: 0 4px 15px rgba(0,0,0,0.7);
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
}

.hero-btn {
  display: inline-block;
  background: #ff3f81;
  color: white;
  padding: 16px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(255, 63, 129, 0.4);
}

/* Slide Dots */
.slide-dots {
  position: absolute;
  bottom: 50px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 12px;
}

.dot {
  width: 15px;
  height: 15px;
  background: rgba(255,255,255,0.6);
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s;
}

.dot.active {
  background: #ff3f81;
  transform: scale(1.4);
}

/* Other Sections */
#gallery, #services, #pricing, #results, #booking, #contact {
  padding: 80px 20px;
  text-align: center;
}
}

h2 {
  font-size: 2.8rem;
  margin-bottom: 50px;
  color: #111;
}

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.gallery-grid img {
  width: 100%;
  border-radius: 12px;
  transition: transform 0.4s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

/* Services */
.service-cards {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  font-size: 1.4rem;
}

.service-card:hover {
  transform: translateY(-8px);
}

/* Pricing */
.pricing-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 30px 25px;
  width: 320px;
  text-align: left;
  transition: all 0.3s ease;
}

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.price { font-size: 2rem; font-weight: 700; color: #ff3f81; margin-bottom: 10px; }

.tag {
  background: #ff3f81;
  color: white;
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  display: inline-block;
  margin-bottom: 15px;
}

/* Booking Form */
.booking-form {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.booking-form input, .booking-form textarea {
  padding: 14px 16px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 1rem;
}

.booking-form button {
  padding: 14px;
  background: #ff3f81;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1rem;
  transition: all 0.3s;
}

.booking-form button:hover {
  background: #e02d6e;
}

/* Contact & Footer */
.contact-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  max-width: 1200px;
  margin: 0 auto;
}

.contact-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.contact-card i {
  font-size: 2.2rem;
  color: #ff3f81;
  margin-bottom: 10px;
}

.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  color: white;
  font-size: 2.2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  text-decoration: none;
  z-index: 999;
  transition: transform 0.3s;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 25px;
}
/* Results Section */
#results {
  padding: 80px 20px;
  background: white;
  text-align: center;
}

#results h2 {
  color: #080808;
  margin-bottom: 50px;
}

.results-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 25px;
  max-width: 1200px;
  margin: 0 auto;
}

.result-card {
  background: #1a1a1a;
  padding: 35px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.1);
  transition: 0.3s;
}

.result-card:hover {
  transform: translateY(-10px);
}

.result-card h3 {
  font-size: 3rem;
  color: #ff3f81;
  margin-bottom: 10px;
}

.result-card p {
  color: #ddd;
  font-size: 1.1rem;
}

/* Responsive */
@media (max-width: 768px) {
  .navbar { padding: 15px 20px; }
  .nav-links {
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #111;
    flex-direction: column;
    padding: 20px;
    display: none;
    gap: 15px;
  }
  .nav-links.active { display: flex; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.4rem; }
  .hero-content p { font-size: 1.05rem; }
}