*{
  padding: 0;
  margin: 0;

  box-sizing: border-box;
  scroll-behavior: smooth;
  list-style: none; 
}

 .modal {
    display: none; /* Hidden by default */
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.5s;
  }

  /* Modal Content */
  .modal-content.luxurious {
    background: linear-gradient(135deg, #fdf6f0, #ffe8e0);
    border-radius: 20px;
    margin: 10% auto;
    padding: 2rem;
    width: 90%;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    animation: slideDown 0.5s ease-out;
    font-family: "Playfair Display", serif;
    color: #3e2c2a;
  }

  /* Close Button */
  .modal-content .close {
    color: #a76f5e;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    cursor: pointer;
  }

  .modal-content .close:hover {
    color: #d18c6a;
  }

  /* Modal Typography */
  .modal-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
  }

  .modal-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .modal-content .btn {
    background: #a76f5e;
    color: #fff;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
  }

  .modal-content .btn:hover {
    background: #d18c6a;
    transform: scale(1.05);
  }

  /* Animations */
  @keyframes fadeIn {
    from {opacity: 0;}
    to {opacity: 1;}
  }

  @keyframes slideDown {
    from {transform: translateY(-50px); opacity: 0;}
    to {transform: translateY(0); opacity: 1;}
  }

  @media (max-width: 768px) {
    .modal-content.luxurious {
      margin-top: 20%;
      padding: 1.5rem;
    }

    .modal-content h2 {
      font-size: 1.5rem;
    }

    .modal-content p {
      font-size: 1rem;
    }
  }

/* ========= REASONS SECTION (Luxury Spa Theme) ========= */
.reasons {
  background: linear-gradient(135deg, #faf8f5, #f2eee8);
  padding: 90px 20px;
  text-align: center;
  color: #2c2c2c;
  font-family: 'Playfair Display', serif;
}

.reasons h2 {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 60px;
  background: linear-gradient(90deg, #b8860b, #daa520, #f5deb3);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
}

.reasons h2::after {
  content: "";
  display: block;
  width: 90px;
  height: 3px;
  margin: 15px auto 0;
  background: linear-gradient(90deg, #b8860b, #daa520, #f5deb3);
  border-radius: 3px;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 35px;
}

.reason-card {
  background: #fff;
  border-radius: 18px;
  padding: 35px 25px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  border: 1px solid rgba(218,165,32,0.2);
  position: relative;
  overflow: hidden;
}

.reason-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(218,165,32,0.15) 0%, transparent 70%);
  transform: rotate(25deg);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.reason-card:hover::before {
  opacity: 1;
}

.reason-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 15px 35px rgba(184,134,11,0.25);
  border-color: #daa520;
}

.reason-card h3 {
  font-size: 1.4rem;
  margin-bottom: 15px;
  color: #b8860b;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.reason-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  font-family: 'Montserrat', sans-serif;
}





/* ===== Luxurious Modal Styling ===== */
.modal {
  display: none; /* Hidden by default */
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 15, 15, 0.85); /* Soft dark overlay */
  backdrop-filter: blur(6px); /* Premium glass effect */
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.5s ease forwards;
}

.modal-content.luxurious {
  background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
  color: #f0e6d2; /* Champagne-gold text */
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.7);
  border: 1px solid rgba(255, 215, 0, 0.2); /* Soft gold border */
  text-align: center;
  transform: scale(0.9);
  opacity: 0;
  animation: modalPop 0.6s ease forwards;
}

.modal-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  color: #f9d976; /* Luxurious gold */
  margin-bottom: 20px;
  letter-spacing: 1px;
  text-transform: capitalize;
}

.modal-content p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 25px;
  color: #ddd;
}

.modal-content .btn {
  background: linear-gradient(135deg, #d4af37, #f9d976);
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(249, 217, 118, 0.4);
}

.modal-content .btn:hover {
  background: linear-gradient(135deg, #f9d976, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(249, 217, 118, 0.6);
}

.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 2rem;
  font-weight: bold;
  color: #f9d976;
  cursor: pointer;
  transition: all 0.3s ease;
}

.close:hover {
  color: #fff;
  transform: rotate(90deg);
}

/* ===== Animations ===== */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes modalPop {
  from {
    transform: scale(0.8) translateY(30px);
    opacity: 0;
  }
  to {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}



/* ===== Header & Navbar ===== */
/* ===== Header + Navbar (Hero Style Colors) ===== */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* Same as hero */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* Logo */
.logo {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  font-weight: bold;
  color: #f9d976; /* Luxurious gold */
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.logo:hover {
  color: #fff;
}

/* Nav Links */
.nav-links {
  display: flex;
  list-style: none;
  gap: 25px;
}

.nav-links li a {
  text-decoration: none;
  font-family: "Montserrat", sans-serif;
  font-size: 1rem;
  color: #ddd;
  transition: all 0.3s ease;
  position: relative;
}

/* Hover underline effect */
.nav-links li a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(90deg, #d4af37, #f9d976); /* Golden gradient */
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links li a:hover {
  color: #f9d976;
}

.nav-links li a:hover::after {
  width: 100%;
}

/* Language Button */
.btn {
  background: linear-gradient(135deg, #d4af37, #f9d976);
  border: none;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(249, 217, 118, 0.3);
}

.btn:hover {
  background: linear-gradient(135deg, #f9d976, #d4af37);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(249, 217, 118, 0.5);
}

/* Hamburger Menu (Mobile) */
.hamburger {
  display: none;
  font-size: 1.8rem;
  color: #f9d976;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===== Responsive Navbar ===== */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 70px;
    right: 0;
    width: 220px;
    background: linear-gradient(135deg, #1a1a1a, #262626); /* Match hero gradient */
    flex-direction: column;
    padding: 20px;
    gap: 15px;
    border-radius: 10px 0 0 10px;
    box-shadow: -6px 0 20px rgba(0, 0, 0, 0.6);
    transform: translateX(110%);
    transition: transform 0.3s ease;
  }

  .nav-links.active {
    transform: translateX(0);
  }

  .hamburger {
    display: block;
  }
}




/* ===== Hero Section ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #1a1a1a, #262626);
  padding: 80px 10%;
  color: #fff;
}

.hero-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  max-width: 1200px;
  margin: auto;
  flex-wrap: wrap;
}

/* Text Side */
.hero-text {
  flex: 1;
  animation: fadeInLeft 1s ease forwards;
}

.hero-text h1 {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  color: #f9d976; /* Luxurious gold */
  margin-bottom: 20px;
  letter-spacing: 1px;
  line-height: 1.2;
}

.hero-text p {
  font-family: "Montserrat", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
  color: #ddd;
}

.hero-text .btn {
  background: linear-gradient(135deg, #d4af37, #f9d976);
  border: none;
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 600;
  color: #1a1a1a;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 6px 18px rgba(249, 217, 118, 0.4);
  text-decoration: none;
}

.hero-text .btn:hover {
  background: linear-gradient(135deg, #f9d976, #d4af37);
  transform: translateY(-3px);
  box-shadow: 0 8px 22px rgba(249, 217, 118, 0.6);
}

/* Image Side */
.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  animation: fadeInRight 1.2s ease forwards;
}

.hero-image img {
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6);
  transition: transform 0.4s ease;
}

.hero-image img:hover {
  transform: scale(1.03);
}

/* ===== Animations ===== */
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ===== Responsive Hero ===== */
@media (max-width: 992px) {
  .hero {
    padding: 60px 5%;
    text-align: center;
  }

  .hero-content {
    flex-direction: column;
    gap: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .hero-text p {
    font-size: 1rem;
  }

  .hero-text .btn {
    padding: 10px 22px;
    font-size: 0.95rem;
  }

  .hero-image img {
    width: 100%;
    max-width: 500px;
  }
}



/* ===== Services Section ===== */
.services {
  background: linear-gradient(135deg, #1a1a1a, #262626); /* Same as hero/header */
  padding: 80px 10%;
  text-align: center;
  color: #fff;
}

.services h2 {
  font-family: "Playfair Display", serif;
  font-size: 2.5rem;
  color: #f9d976; /* Gold accent */
  margin-bottom: 50px;
  position: relative;
  display: inline-block;
}

.services h2::after {
  content: "";
  display: block;
  width: 60%;
  height: 3px;
  margin: 12px auto 0;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  border-radius: 3px;
}

/* Service Cards Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Each Card */
.card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  cursor: pointer;
}

.card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(249, 217, 118, 0.4);
}

/* Card Image */
.card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-bottom: 2px solid #f9d976;
  transition: transform 0.4s ease;
}

.card:hover img {
  transform: scale(1.05);
}

/* Card Title */
.card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  margin: 20px 15px 10px;
  color: #f9d976;
}

/* Card Text */
.card p {
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  color: #ddd;
  padding: 0 15px 25px;
  line-height: 1.5;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .services {
    padding: 60px 6%;
  }

  .services h2 {
    font-size: 2rem;
  }

  .card h3 {
    font-size: 1.1rem;
  }

  .card p {
    font-size: 0.9rem;
  }
}

/* About Section */
.about {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* same as hero */
  color: #ddd;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr; /* image + text side by side */
  gap: 50px;
  align-items: center;
}

/* Image */
.about-img {
  width: 100%;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.6);
  border: 4px solid #f9d976; /* golden accent */
  object-fit: cover;
}

/* Text */
.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 20px;
  position: relative;
}

.about-text h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin-top: 10px;
  border-radius: 2px;
}

.about-text p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  margin-top: 15px;
  color: #ddd;
}

/* Responsive */
@media (max-width: 900px) {
  .about-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-img {
    max-width: 90%;
    margin: 0 auto 30px;
  }

  .about-text h2 {
    font-size: 2.2rem;
  }
}

/* ===== Special Offers Section ===== */
.offers {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero colors */
  text-align: center;
  color: #ddd;
}

.offers h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 50px;
  position: relative;
}

.offers h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Offer Cards Grid */
.offer-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Offer Card */
.offer {
  background: rgba(255, 255, 255, 0.05); /* glassy dark feel */
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
}

.offer:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(249, 217, 118, 0.4); /* gold glow on hover */
}

/* Offer Title */
.offer h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #f9d976;
  margin-bottom: 10px;
}

/* Offer Text */
.offer p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
}

/* Price Tag */
.offer .price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #f9d976;
  background: rgba(249, 217, 118, 0.1);
  padding: 5px 15px;
  border-radius: 25px;
  display: inline-block;
  transition: all 0.3s ease;
}

.offer:hover .price {
  background: rgba(249, 217, 118, 0.2);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .offers {
    padding: 70px 5%;
  }
  .offers h2 {
    font-size: 2.2rem;
  }
  .offer h3 {
    font-size: 1.3rem;
  }
  .offer p {
    font-size: 0.95rem;
  }
}


/* ===== Why Choose Us Section ===== */
.why-us {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* same as hero */
  text-align: center;
  color: #ddd;
}

.why-us h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 60px;
  position: relative;
}

.why-us h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Why Cards Grid */
.why-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Card */
.why-card {
  background: rgba(255, 255, 255, 0.05); /* glassy feel */
  border-radius: 18px;
  padding: 25px 15px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(249, 217, 118, 0.3); /* gold glow on hover */
}

/* Card Icon */
.why-card img {
  width: 80px;
  height: 80px;
  margin-bottom: 20px;
  transition: transform 0.3s ease;
}

.why-card:hover img {
  transform: scale(1.1);
}

/* Card Title */
.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #f9d976; /* gold accent */
  text-align: center;
  margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
  .why-us {
    padding: 70px 5%;
  }
  .why-us h2 {
    font-size: 2.2rem;
  }
  .why-card h3 {
    font-size: 1.1rem;
  }
  .why-card img {
    width: 70px;
    height: 70px;
  }
}


/* ===== Membership Section ===== */
.membership {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero gradient */
  text-align: center;
  color: #ddd;
}

.membership h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 50px;
  position: relative;
}

.membership h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Membership Cards Grid */
.membership-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Plan Card */
.plan {
  background: rgba(255, 255, 255, 0.05); /* glassy dark feel */
  border-radius: 18px;
  padding: 30px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: pointer;
}

.plan:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(249, 217, 118, 0.4); /* gold glow */
}

/* Plan Title */
.plan h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: #f9d976;
  margin-bottom: 10px;
}

/* Plan Details */
.plan p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ddd;
  margin-bottom: 20px;
  text-align: center;
}

/* Plan Price */
.plan span {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: bold;
  color: #f9d976;
  background: rgba(249, 217, 118, 0.1);
  padding: 8px 20px;
  border-radius: 25px;
  transition: all 0.3s ease;
}

.plan:hover span {
  background: rgba(249, 217, 118, 0.2);
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 768px) {
  .membership {
    padding: 70px 5%;
  }

  .membership h2 {
    font-size: 2.2rem;
  }

  .plan h3 {
    font-size: 1.3rem;
  }

  .plan p {
    font-size: 0.95rem;
  }

  .plan span {
    font-size: 1.2rem;
  }
}

/* ===== Booking Section ===== */
.booking {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero colors */
  text-align: center;
  color: #ddd;
}

.booking-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 20px;
  position: relative;
}

.booking-content h2::after {
  content: '';
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.booking-content p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.7;
  margin: 20px 0 40px;
}

/* Booking Button */
.booking-content .btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #f9d976, #d4af37);
  color: #1a1a1a;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: inline-block;
}

.booking-content .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(249, 217, 118, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .booking {
    padding: 70px 5%;
  }

  .booking-content h2 {
    font-size: 2.2rem;
  }

  .booking-content p {
    font-size: 1rem;
  }

  .booking-content .btn {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* ===== FAQ Section ===== */
.faq {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero gradient */
  color: #ddd;
  text-align: center;
}

.faq h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 60px;
  position: relative;
}

.faq h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* FAQ Items Grid */
.faq-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1000px;
  margin: auto;
}

/* Individual FAQ Card */
.faq-item {
  background: rgba(255, 255, 255, 0.05); /* glassy dark feel */
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.faq-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(249, 217, 118, 0.3); /* subtle gold glow */
}

/* Question */
.faq-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #f9d976;
  margin-bottom: 12px;
  text-align: left;
}

/* Answer */
.faq-item p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  text-align: left;
}

/* Responsive */
@media (max-width: 768px) {
  .faq {
    padding: 70px 5%;
  }

  .faq h2 {
    font-size: 2.2rem;
  }

  .faq-item h3 {
    font-size: 1.2rem;
  }

  .faq-item p {
    font-size: 0.95rem;
  }
}

/* ===== Reasons Section ===== */
.reasons {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero gradient */
  text-align: center;
  color: #ddd;
}

.reasons h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 60px;
  position: relative;
}

.reasons h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

/* Reasons Grid */
.reasons-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Reason Card */
.reason-card {
  background: rgba(255, 255, 255, 0.05); /* glassy dark feel */
  border-radius: 18px;
  padding: 25px 20px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.reason-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(249, 217, 118, 0.3); /* subtle gold glow */
}

/* Card Title */
.reason-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 12px;
  text-align: center;
}

/* Card Text */
.reason-card p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1rem;
  color: #ddd;
  line-height: 1.6;
  text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
  .reasons {
    padding: 70px 5%;
  }

  .reasons h2 {
    font-size: 2.2rem;
  }

  .reason-card h3 {
    font-size: 1.2rem;
  }

  .reason-card p {
    font-size: 0.95rem;
  }
}


/* ===== Newsletter Section ===== */
.newsletter {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero gradient */
  text-align: center;
  color: #ddd;
}

.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 20px;
  position: relative;
}

.newsletter h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.newsletter p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.2rem;
  color: #ddd;
  line-height: 1.6;
  margin-bottom: 40px;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  max-width: 600px;
  margin: auto;
}

.newsletter-form input[type="email"] {
  flex: 1 1 300px;
  padding: 15px 20px;
  border-radius: 50px;
  border: none;
  font-size: 1rem;
  outline: none;
  background: rgba(255, 255, 255, 0.05);
  color: #ddd;
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form input[type="email"]:focus {
  background: rgba(249, 217, 118, 0.1);
  box-shadow: 0 0 15px rgba(249, 217, 118, 0.4);
}

/* Subscribe Button */
.newsletter-form .btn {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  padding: 15px 40px;
  border-radius: 50px;
  background: linear-gradient(90deg, #f9d976, #d4af37);
  color: #1a1a1a;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.newsletter-form .btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(249, 217, 118, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
  .newsletter {
    padding: 70px 5%;
  }

  .newsletter h2 {
    font-size: 2.2rem;
  }

  .newsletter p {
    font-size: 1rem;
  }

  .newsletter-form input[type="email"] {
    flex: 1 1 100%;
  }

  .newsletter-form .btn {
    flex: 1 1 100%;
  }
}


/* ===== Footer ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero colors */
  color: #ddd;
  padding: 80px 10% 40px;
  font-family: 'Montserrat', sans-serif;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-col h3,
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  color: #f9d976; /* gold accent */
  margin-bottom: 20px;
}

.footer-col p,
.footer-col li,
.footer-col a {
  font-size: 0.95rem;
  color: #ddd;
  line-height: 1.6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col li {
  margin-bottom: 10px;
}

.footer-col a:hover {
  color: #f9d976; /* gold hover */
}

/* Social Links */
.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  color: #ddd;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: #f9d976;
  color: #1a1a1a;
  transform: scale(1.1);
}

/* Footer Bottom */
.footer-bottom {
  text-align: center;
  margin-top: 50px;
  border-top: 1px solid rgba(249, 217, 118, 0.2);
  padding-top: 20px;
  font-size: 0.9rem;
  color: #aaa;
}

/* Responsive */
@media (max-width: 768px) {
  footer {
    padding: 60px 5% 30px;
  }

  .footer-container {
    gap: 25px;
  }

  .footer-col h3,
  .footer-col h4 {
    font-size: 1.3rem;
  }

  .footer-col p,
  .footer-col li,
  .footer-col a {
    font-size: 0.9rem;
  }

  .social-links a {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
}


/* ===== Gallery Section ===== */
.gallery {
  padding: 100px 10%;
  background: linear-gradient(135deg, #1a1a1a, #262626); /* hero gradient */
  text-align: center;
  color: #ddd;
}

.gallery h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: #f9d976; /* gold accent */
  margin-bottom: 15px;
  position: relative;
}

.gallery h2::after {
  content: '';
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, #f9d976);
  display: block;
  margin: 12px auto 0;
  border-radius: 2px;
}

.gallery p {
  font-family: 'Montserrat', sans-serif;
  font-size: 1.1rem;
  color: #ddd;
  margin-bottom: 50px;
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

/* Individual Gallery Item */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,0.6);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(249,217,118,0.3);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Optional overlay effect */
.gallery-item::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(249,217,118,0.1);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

/* Responsive */
@media (max-width: 768px) {
  .gallery {
    padding: 70px 5%;
  }

  .gallery h2 {
    font-size: 2.2rem;
  }

  .gallery p {
    font-size: 1rem;
    margin-bottom: 35px;
  }
}
