/* General Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Montserrat', sans-serif;
  background: #f9f9f9;
  color: #222;
  line-height: 1.6;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

h1, h2 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.5px;
  margin-bottom: 1rem;
}

/* NAVBAR */
.logo a { color: #FFD700; text-decoration: none; }
.logo a:hover { opacity: 0.9; }
.navbar {
  background: #111;
  color: white;
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.navbar .logo {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  color: #FFD700;
}

.navbar nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

.navbar nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s;
}

.navbar nav a:hover {
  color: #FFD700;
}

/* HERO */
.hero {
  background: url('../img/hero.jpg') no-repeat center center/cover;
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  position: relative;
}

.hero .overlay {
  background: rgba(0,0,0,0.6);
  padding: 2rem;
  border-radius: 10px;
}

.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tagline {
  font-size: 1.2rem;
  color: #FFD700;
  margin-bottom: 0.5rem;
  font-weight: bold;
  text-transform: uppercase;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: 4px;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  text-decoration: none;
}

.btn-yellow {
  background: #FFD700;
  color: #000;
}

.btn-blue {
  background: #0077ff;
  color: #fff;
}

/* ABOUT */
.about {
  padding: 4rem 0;
  background: #fff;
}

.about .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3rem;
}

.about-text {
  flex: 1;
}

.about-image {
  flex: 1;
  text-align: center;
}

.about-image img {
  max-width: 280px;
  width: 100%;
}

.about-features {
  list-style: none;
  margin-top: 1rem;
}

.about-features li {
  margin: 0.5rem 0;
  font-size: 1rem;
}

.about-features i {
  color: #0077ff;
  margin-right: 0.5rem;
}

/* SERVICES */
.services {
  background: #eef6fb;
  padding: 4rem 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.service-box {
  background: white;
  padding: 1.5rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.service-box i {
  font-size: 2rem;
  color: #0077ff;
  margin-bottom: 0.5rem;
}

/* PRICING */
.pricing {
  background: #fff4d6;
  padding: 4rem 0;
  text-align: center;
}

.price-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 2rem 0;
}

.price-box {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  width: 200px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

.price {
  font-size: 2rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 0.5rem;
}

.price-perks {
  list-style: none;
  max-width: 600px;
  margin: auto;
  text-align: left;
}

/* FAQ */
.faq {
  background: #f3f3f3;
  padding: 4rem 0;
}

.faq-item {
  background: white;
  margin-bottom: 1rem;
  border-radius: 6px;
  overflow: hidden;
}

.faq-item input {
  display: none;
}

.faq-item label {
  display: block;
  padding: 1rem;
  background: #0077ff;
  color: white;
  font-weight: bold;
  cursor: pointer;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  padding: 0 1rem;
  background: white;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item input:checked ~ .faq-content {
  max-height: 200px;
  padding: 1rem;
}

/* MAP */
.find-us {
  padding: 4rem 0;
  text-align: center;
  background: #fff;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
}

/* BOOKING */
.booking {
  padding: 4rem 0;
  background: #eef6fb;
  text-align: center;
}

.booking form {
  max-width: 500px;
  margin: auto;
  display: grid;
  gap: 1rem;
}

.booking input, .booking button {
  padding: 0.75rem;
  border-radius: 4px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

/* FOOTER */
footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 1rem;
  font-size: 0.9rem;
}
/* --- FAQ Accordion Styles --- */
.faq-item {
  margin-bottom: 1rem;
  border-bottom: 1px solid #ddd;
  padding-bottom: 1rem;
}

.faq-item input[type="checkbox"] {
  display: none;
}

.faq-item label {
  display: block;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  padding-left: 25px;
  transition: color 0.3s ease;
}

.faq-item label::before {
  content: "+";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 20px;
  color: #f9c600;
  line-height: 1;
  transition: transform 0.3s ease;
}

.faq-item input[type="checkbox"]:checked + label::before {
  content: "-";
  transform: rotate(180deg);
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.5s ease;
}

.faq-item input[type="checkbox"]:checked + label + .faq-content {
  max-height: 300px;
  opacity: 1;
  margin-top: 0.5rem;
}

/* GALLERY SECTION */
.gallery {
  padding: 60px 0;
  background-color: #f8f8f8;
}

.gallery h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 10px;
}

.gallery p {
  text-align: center;
  color: #555;
  margin-bottom: 40px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.reviews {
  background-color: #eef6ff;
  padding: 60px 20px;
  text-align: center;
}

.review-grid {
  display: grid;
  gap: 30px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 40px;
}

.review-card {
  background: white;
  border-radius: 10px;
  padding: 25px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  text-align: left;
}

.review-card .stars {
  color: #f5c518;
  font-size: 20px;
  margin-bottom: 10px;
}

.review-card h4 {
  margin-top: 15px;
  color: #333;
  font-weight: 600;
}

.review-button { margin-top: 40px; }

.price-perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}

.perk-box {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  display: flex;
  align-items: center;
  padding: 12px 20px;
  font-weight: 500;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.perk-box i {
  color: #2ecc71;
  font-size: 20px;
  margin-right: 12px;
}
/* Show the extra services tile only on mobile */
.mobile-only { display: none; }

@media (max-width: 768px) {
  .mobile-only { display: block; }
}
/* Center the Services section heading */
.services h2 {
  text-align: center;
}
/* Center the FAQ section heading */
.faq h2 {
  text-align: center;
}