* {
  box-sizing: border-box;
}
html,
body {
  overflow-x: hidden;
}
body {
  font-family: "Poppins", sans-serif;
  background-color: #0e0e0e;
  color: #e0e0e0;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4 {
  font-weight: bold;
}
a {
  text-decoration: none;
}
.custom-navbar {
  background: rgba(18, 18, 18, 0.9);
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease-in-out;
  padding: 15px 0;
}
.custom-navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #ffdd57;
  display: flex;
  align-items: center;
}
.custom-navbar .logo {
  height: 40px;
  margin-right: 10px;
}
.custom-navbar .nav-link {
  font-size: 1rem;
  font-weight: 500;
  color: #e0e0e0;
  transition: color 0.3s ease, transform 0.2s ease-in-out;
  padding: 10px 15px;
}
.custom-navbar .nav-link:hover {
  color: #ffdd57;
  transform: scale(1.1);
}
.custom-navbar .btn-primary {
  background: linear-gradient(45deg, #ff7f50, #ff4500);
  border-radius: 20px;
  padding: 8px 15px;
  font-weight: 600;
  border: none;
}
.custom-navbar .btn-primary:hover {
  background: linear-gradient(45deg, #ff4500, #ff7f50);
  transform: scale(1.1);
}

.custom-navbar.scrolled {
  background: rgba(18, 18, 18, 1);
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.5);
}

.custom-toggler {
  border: none;
  color: #ffdd57;
  font-size: 1.5rem;
}
.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-title {
  font-size: 3.5rem;
  font-weight: bold;
  color: #ffdd57;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.hero-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: #fff;
}
.hero-section .btn-primary {
  font-size: 1.3rem;
  padding: 15px 30px;
  border-radius: 30px;
}
.retreat-card {
  background: #1b1b1b;
  border: none;
  color: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.retreat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}
.retreat-card img {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
#magic-retreats {
  background: #181818;
  padding: 80px 0;
}
#magic-retreats h2 {
  color: #ffdd57;
  font-weight: bold;
}
#magic-retreats ul {
  list-style: none;
  padding-left: 0;
}
#magic-retreats ul li {
  font-size: 1.2rem;
  padding: 5px 0;
}
#magic-retreats ul li i {
  color: #ffdd57;
  margin-right: 10px;
}

#bespoke-luxury {
  background: linear-gradient(to right, #222, #111);
  padding: 80px 0;
}
#bespoke-luxury h2 {
  color: #ffdd57;
  font-weight: bold;
}
.luxury-icon {
  font-size: 3rem;
  color: #ffdd57;
  margin-bottom: 10px;
}
#seasonal-wonders {
  background: linear-gradient(rgba(18, 18, 18, 0.8), rgba(18, 18, 18, 0.8)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  padding: 80px 0;
  text-align: center;
}
#seasonal-wonders h2 {
  color: #ffdd57;
  font-weight: bold;
}
#seasonal-wonders .row div {
  padding: 20px;
  color: #fff;
}
#seasonal-wonders .row div i {
  font-size: 3rem;
  margin-bottom: 10px;
}
.winter-icon {
  color: #00c3ff;
}
.spring-icon {
  color: #32cd32;
}
.summer-icon {
  color: #ffdd57;
}
.autumn-icon {
  color: #ff4500;
}

#testimonials {
  background: #181818;
  padding: 80px 0;
}
.carousel-item p {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  color: #ffdd57;
}
.carousel-item small {
  display: block;
  text-align: center;
  font-size: 1rem;
  color: #bbb;
}

.cta-section {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  padding: 100px 0;
  text-align: center;
  color: #fff;
}
.cta-title {
  font-size: 3rem;
  font-weight: bold;
  text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.5);
}
.cta-section .btn-primary {
  background: linear-gradient(45deg, #ff7f50, #ff4500);
  padding: 15px 30px;
  font-size: 1.3rem;
  border-radius: 30px;
}
.cta-section .btn-primary:hover {
  background: linear-gradient(45deg, #ff4500, #ff7f50);
  transform: scale(1.1);
}
.about-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.about-title {
  font-size: 3rem;
  font-weight: bold;
}
.about-subtitle {
  font-size: 1.3rem;
}
#why-choose-us {
  background: #252525;
  padding: 60px 0;
}
.about-icon {
  font-size: 3rem;
  color: #ffdd57;
  margin-bottom: 10px;
}

#team {
  padding: 60px 0;
}
.team-img {
  width: 120px;
  height: 120px;
  object-fit: cover;
  border: 4px solid #ffdd57;
  transition: transform 0.3s ease;
}
.team-img:hover {
  transform: scale(1.1);
}
.pricing-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.pricing-title {
  font-size: 3rem;
  font-weight: bold;
}
.pricing-subtitle {
  font-size: 1.3rem;
}
#pricing-plans {
  padding: 60px 0;
}
.pricing-card {
  border: none;
  background: #232323;
  color: #e0e0e0;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pricing-card:hover {
  transform: scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}
.popular-plan {
  background: #2c5577;
  border-top: 4px solid #ff9800;
}
.price {
  font-size: 2rem;
  font-weight: bold;
  color: #ffdd57;
}
.contact-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.contact-title {
  font-size: 3rem;
  font-weight: bold;
}
.contact-subtitle {
  font-size: 1.3rem;
}
#contact-info {
  padding: 60px 0;
}
.contact-icon {
  font-size: 3rem;
  color: #ffdd57;
  margin-bottom: 10px;
}
#contact-info h4 {
  font-size: 1.5rem;
  font-weight: bold;
}
#contact-info p {
  font-size: 1.1rem;
  color: #bbb;
}
#contact-form {
  padding: 60px 0;
}
form {
  max-width: 600px;
  margin: 0 auto;
}
form .btn {
  background: #ffdd57;
  border: none;
  padding: 10px 20px;
  font-size: 1.1rem;
  font-weight: 600;
  border-radius: 5px;
}
form .btn:hover {
  background: #e6c200;
}
.business-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.business-title {
  font-size: 3rem;
  font-weight: bold;
}
.business-subtitle {
  font-size: 1.3rem;
}

#business-overview,
#business-details,
#why-choose-us {
  padding: 60px 0;
}
.business-icon {
  font-size: 3rem;
  color: #ffdd57;
  margin-bottom: 15px;
}
#why-choose-us {
  background: #181818;
}
#why-choose-us h4 {
  font-size: 1.5rem;
  font-weight: bold;
}
#why-choose-us p {
  font-size: 1rem;
  color: #bbb;
}
.privacy-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.privacy-title {
  font-size: 3rem;
  font-weight: bold;
}
.privacy-subtitle {
  font-size: 1.3rem;
}

#privacy-content {
  padding: 60px 0;
}
#privacy-content h2 {
  color: #ffdd57;
  font-weight: bold;
  margin-top: 20px;
}
#privacy-content ul {
  list-style: none;
  padding-left: 0;
}
#privacy-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
#privacy-content ul li i {
  position: absolute;
  left: 0;
  color: #ffdd57;
  font-weight: bold;
  font-size: 1.2rem;
}
.terms-hero {
  background: linear-gradient(rgba(18, 18, 18, 0.9), rgba(18, 18, 18, 0.9)),
    url("assets/img/hero.jpg") no-repeat center center/cover;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
}
.terms-title {
  font-size: 3rem;
  font-weight: bold;
}
.terms-subtitle {
  font-size: 1.3rem;
}

#terms-content {
  padding: 60px 0;
}
#terms-content h2 {
  color: #ffdd57;
  font-weight: bold;
  margin-top: 20px;
}
#terms-content ul {
  list-style: none;
  padding-left: 0;
}
#terms-content ul li {
  padding-left: 20px;
  position: relative;
  margin-bottom: 10px;
  font-size: 1.1rem;
}
#terms-content ul li i {
  position: absolute;
  left: 0;
  color: #ffdd57;
  font-weight: bold;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1.2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
}
