/* ---------------------------
   Global Reset & Typography
---------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  background: #fff;
  color: #333;
  line-height: 1.6;
  padding-top: 70px;
}

/* ---------------------------
   Navbar
---------------------------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  z-index: 1000;
  backdrop-filter: blur(8px);
}

.nav-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.logo {
  font-weight: bold;
  color: #ff9800;
  text-decoration: none;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 20px;
}

.nav-links a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #ff9800;
}

/* ---------------------------
   Hero Section
---------------------------- */
header.hero {
  background: url('https://images.unsplash.com/photo-1589900216439-595aeac3af8a?q=80')
              center center/cover no-repeat;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

header.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.55);
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  font-size: 3rem;
  margin-bottom: 0.5em;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 1em;
}

.cta-btn {
  background: #ff9800;
  color: white;
  padding: 0.75em 1.5em;
  border-radius: 4px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.cta-btn:hover {
  background: #e67e22;
}

/* ---------------------------
   Sections
---------------------------- */
.section {
  padding: 60px 20px;
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

h2 {
  color: #ff9800;
  margin-bottom: 30px;
}

/* ---------------------------
   Services
---------------------------- */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.service-card {
  background: #fff8f0;
  border-radius: 8px;
  padding: 15px;
  width: 300px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-5px);
}

.service-card img {
  width: 100%;
  border-radius: 8px;
}

.price {
  display: inline-block;
  margin-top: 10px;
  font-weight: bold;
  color: #e67e22;
}

/* ---------------------------
   Booking Form
---------------------------- */
.form-section form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  max-width: 500px;
  margin: auto;
}

form input, form textarea {
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
  font-size: 1rem;
}

form button {
  background: #ff9800;
  color: white;
  border: none;
  padding: 10px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.3s ease;
}

form button:hover {
  background: #e67e22;
}

/* ---------------------------
   Contact
---------------------------- */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  align-items: center;
}

.contact-grid iframe {
  width: 400px;
  height: 300px;
  border: 0;
  border-radius: 8px;
}

.whatsapp-btn {
  display: inline-block;
  background: #25d366;
  color: white;
  padding: 10px 15px;
  border-radius: 5px;
  margin-top: 10px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.whatsapp-btn:hover {
  background: #20b659;
}

/* ---------------------------
   FAQ
---------------------------- */
.faq-item {
  background: #fff8f0;
  padding: 15px;
  border-radius: 8px;
  margin-bottom: 10px;
  text-align: left;
}

/* ---------------------------
   Footer
---------------------------- */
footer {
  background: #ff9800;
  color: white;
  text-align: center;
  padding: 20px 0;
  font-size: 0.9rem;
}

/* ---------------------------
   Floating WhatsApp
---------------------------- */
.floating-whatsapp {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.floating-whatsapp img {
  width: 35px;
  height: 35px;
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
}

/* ---------------------------
   Responsive Hamburger Menu
---------------------------- */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  z-index: 1100;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #333;
  border-radius: 3px;
  transition: all 0.3s ease;
}

.hamburger.active span {
  background: #ff9800;
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 220px;
    height: calc(100% - 70px);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 20px;
    gap: 20px;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
    transition: left 0.4s ease;
    z-index: 1000;
  }

  .nav-links.open {
    left: 0;
  }

  .nav-links a {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    font-size: 1rem;
    width: 100%;
    padding: 8px 0;
    transition: color 0.3s ease, transform 0.2s ease;
  }

  .nav-links a:hover {
    color: #ff9800;
    transform: translateX(4px);
  }

  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .services-grid {
    flex-direction: column;
    align-items: center;
  }

  .contact-grid iframe {
    width: 100%;
    height: 250px;
  }
}
