* { margin:0; padding:0; box-sizing:border-box; }
body { font-family: Arial, sans-serif; color: #222; line-height:1.5; }
a { text-decoration:none; color: inherit; }

/* Top nav */
.top-nav {
  position: fixed; top:0; left:0; right:0; height:50px;
  background:#222; color:#fff; display:flex; align-items:center;
  justify-content:space-between; padding:0 15px; z-index: 1000;
}
#nav-toggle,#search-btn {
  font-size:24px; background:none; border:none; color:#fff; cursor:pointer;
}
nav { position: fixed; top:50px; left:0; background:#333; width:250px; height:100%; padding-top:20px; overflow-y:auto; transition: transform .3s ease; }
.nav-hidden { transform: translateX(-260px); }
nav ul { list-style:none; }
nav li { margin:15px 0; }
nav a { color:#fff; padding:10px 20px; display:block; }

/* Banner */
.brand-banner {
  height:80px; display:flex; align-items:center; justify-content:space-between;
  background:#000000; padding:0 20px; margin-top:50px;
}
.logo { height:50px; }
.whatsapp-btn {
  background:#e53935; color:#fff; padding:10px 15px; border-radius:4px;
  font-weight:bold;
}

/* Hero */
.hero {
  display:flex; align-items:center; justify-content:space-between;
  padding:80px 20px; background:#f9f9f9;
}
.hero img { max-width:45%; border-radius:8px; }
.hero-content { max-width:45%; }
.cta-book {
  background:#e53935; color:#fff; padding:15px 30px;
  border:none; border-radius:4px; font-size:18px; cursor:pointer;
  margin-top:20px;
}

/* Testimonials */
.testimonials { text-align:center; padding:60px 20px; background:#fff; }
.testimonials h2 { margin-bottom:40px; font-size:32px; }
.carousel { position:relative; max-width:800px; margin:0 auto; }
.testimonial {
  display:none; flex-direction:column; align-items:center;
}
.testimonial.active { display:flex; }
.testimonial img { width:80px; height:80px; border-radius:50%; margin-bottom:20px; }
.testimonial blockquote { font-style:italic; margin-bottom:15px; }
.name { font-weight:bold; font-size:18px; }
.prev, .next {
  position:absolute; top:50%; transform:translateY(-50%);
  background:#e53935; color:#fff; border:none; padding:10px; font-size:24px;
  cursor:pointer;
}
.prev { left:0; }
.next { right:0; }

/* Services */
.services { padding:60px 20px; background:#f4f4f4; text-align:center; }
.services h2 { margin-bottom:40px; font-size:32px; }
.service-list { display:flex; flex-wrap:wrap; justify-content:center; gap:40px; }
.service {
  display:flex; align-items:center; max-width:800px; background:#fff;
  border-radius:8px; overflow:hidden;
}
.service.reverse { flex-direction: row-reverse; }
.service img { width:50%; object-fit:cover; }
.svc-info { padding:20px; width:50%; }
.svc-info h3 { margin-bottom:10px; }
.price { font-size:20px; font-weight:bold; margin-top:10px; }

/* Bottom Book */
.book-bottom { background:#222; color:#fff; text-align:center; padding:40px 20px; }
.book-bottom h2 { margin-bottom:20px; font-size:24px; padding-bottom:10px; }

/* About */
.about {
  display:flex; flex-wrap:wrap; gap:20px;
  padding:60px 20px; background:#fff;
}
.about-content, .mission-content {
  flex:1; min-width:260px; background:#f9f9f9;
  padding:20px; border-radius:8px;
}
.about-content h2, .mission-content h2 { margin-bottom:15px; }

/* Footer */
footer {
  background:#222222; color:#fff; text-align:center;
  padding:15px 20px;
}
footer a { color:#fff; font-weight: bold; }
