:root {
  --primary-color: #2c5f5d;
  --secondary-color: #d4a574;
  --accent-color: #e8b4a0;
  --dark-color: #1a1a1a;
  --light-color: #f8f5f0;
  --white: #ffffff;
  --gradient-primary: linear-gradient(135deg, #2c5f5d 0%, #1b3f3e 100%);
  --gradient-secondary: linear-gradient(135deg, #d4a574 0%, #b88c5d 100%);
  --gradient-overlay: linear-gradient(
    135deg,
    rgba(44, 95, 93, 0.9) 0%,
    rgba(27, 63, 62, 0.8) 100%
  );
  --font-heading: "Cormorant Garamond", serif;
  --font-body: "Montserrat", sans-serif;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.15);
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: var(--font-body);
  color: var(--dark-color);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.fade-out {
  opacity: 0;
  visibility: hidden;
}
.loader-content {
  text-align: center;
}
.plane-loader {
  width: 80px;
  height: 80px;
  position: relative;
  animation: fly 2s ease-in-out infinite;
}
.plane-loader i {
  font-size: 80px;
  color: var(--secondary-color);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}
@keyframes fly {
  0%,
  100% {
    transform: translateY(0) rotate(-15deg);
  }
  50% {
    transform: translateY(-30px) rotate(-10deg);
  }
}
.loader-text {
  margin-top: 20px;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--white);
  font-weight: 600;
  letter-spacing: 3px;
}
.navbar {
  padding: 1.2rem 0;
  transition: var(--transition);
  background: 0 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 0.8rem 0;
}
.navbar-brand {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 2px;
  transition: var(--transition);
}
.navbar.scrolled .navbar-brand {
  color: var(--primary-color);
}
.navbar-nav .nav-link {
  color: var(--white);
  font-weight: 500;
  margin: 0 0.4rem;
  position: relative;
  transition: var(--transition);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}
.navbar.scrolled .navbar-nav .nav-link {
  color: var(--dark-color);
}
.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary-color);
  transition: var(--transition);
  transform: translateX(-50%);
}
.nav-link.active::after,
.nav-link:hover::after {
  width: 80%;
}
.nav-link:hover {
  color: var(--secondary-color) !important;
}
.btn-book-now {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.7rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-book-now::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-book-now:hover::before {
  width: 300px;
  height: 300px;
}
.btn-book-now:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.4);
}
.navbar-toggler {
  border: none;
  padding: 0.5rem;
}
.navbar-toggler:focus {
  box-shadow: none;
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(255, 255, 255, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.navbar.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(26, 26, 26, 1)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.hero-section {
  height: 100vh;
  background: linear-gradient(
      135deg,
      rgba(44, 95, 93, 0.7) 0,
      rgba(27, 63, 62, 0.6) 100%
    ),
    url(https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80)
      center/cover no-repeat;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 30% 50%,
    rgba(212, 165, 116, 0.1) 0,
    transparent 50%
  );
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-size: 1.3rem;
  font-weight: 300;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  opacity: 0.95;
}
.search-form {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 2.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}
.form-control,
.form-select {
  border: 2px solid rgba(44, 95, 93, 0.1);
  border-radius: 12px;
  padding: 0.9rem 1.2rem;
  font-size: 0.95rem;
  transition: var(--transition);
  background: var(--white);
}
.form-control:focus,
.form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(44, 95, 93, 0.15);
}
.btn-search {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.9rem 3rem;
  border-radius: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  transition: var(--transition);
  width: 100%;
}
.btn-search:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 95, 93, 0.3);
}
.section {
  padding: 100px 0;
  position: relative;
}
.section-title {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 80px;
  height: 4px;
  background: var(--gradient-secondary);
  border-radius: 2px;
}
.section-subtitle {
  font-size: 1.1rem;
  color: #666;
  margin-bottom: 3rem;
  font-weight: 300;
}
.destination-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}
.destination-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}
.destination-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.destination-card:hover .destination-image {
  transform: scale(1.15);
}
.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    transparent 0,
    rgba(0, 0, 0, 0.8) 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: var(--transition);
}
.destination-card:hover .destination-overlay {
  background: linear-gradient(
    to bottom,
    rgba(44, 95, 93, 0.3) 0,
    rgba(0, 0, 0, 0.9) 100%
  );
}
.destination-name {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.5rem;
}
.destination-price {
  font-size: 1.3rem;
  color: var(--secondary-color);
  font-weight: 600;
}
.destination-price span {
  font-size: 0.9rem;
  opacity: 0.8;
}
.packages-section {
  background: var(--light-color);
}
.package-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  height: 100%;
}
.package-card:hover {
  transform: translateY(-15px);
  box-shadow: var(--shadow-lg);
}
.package-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}
.package-image {
  position: relative;
  height: 280px;
  overflow: hidden;
}
.package-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.package-card:hover .package-image img {
  transform: scale(1.1);
}
.package-content {
  padding: 2rem;
}
.package-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.package-description {
  color: #666;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}
.package-features {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}
.package-features li {
  padding: 0.6rem 0;
  color: var(--dark-color);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.package-features li:last-child {
  border-bottom: none;
}
.package-features i {
  color: var(--secondary-color);
  margin-right: 0.8rem;
  width: 20px;
}
.package-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 1.5rem;
  border-top: 2px solid rgba(0, 0, 0, 0.05);
}
.package-price {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-color);
}
.package-price span {
  font-size: 1rem;
  color: #666;
  font-family: var(--font-body);
}
.btn-package {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-package::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-package:hover::before {
  width: 300px;
  height: 300px;
}
.btn-package:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(44, 95, 93, 0.3);
}
.feature-box {
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  border: 2px solid transparent;
}
.feature-box:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
  border-color: var(--secondary-color);
}
.feature-icon {
  width: 90px;
  height: 90px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: var(--transition);
}
.feature-box:hover .feature-icon {
  transform: rotateY(360deg);
}
.feature-icon i {
  font-size: 2.5rem;
  color: var(--white);
}
.feature-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 1rem;
}
.feature-description {
  color: #666;
  font-size: 0.95rem;
  line-height: 1.7;
}
.testimonials-section {
  background: var(--gradient-primary);
  color: var(--white);
}
.testimonials-section .section-title {
  color: var(--white);
}
.testimonials-section .section-title::after {
  background: var(--secondary-color);
}
.testimonials-section .section-subtitle {
  color: rgba(255, 255, 255, 0.8);
}
.testimonial-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 3rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition);
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-5px);
}
.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  font-style: italic;
  position: relative;
}
.testimonial-text::before {
  content: "\f10d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: -20px;
  left: -10px;
  font-size: 3rem;
  color: var(--secondary-color);
  opacity: 0.3;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.testimonial-avatar {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  border: 3px solid var(--secondary-color);
  object-fit: cover;
}
.author-info h5 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  margin-bottom: 0.3rem;
}
.author-info p {
  margin: 0;
  opacity: 0.8;
  font-size: 0.9rem;
}
.testimonial-rating {
  margin-top: 1rem;
}
.testimonial-rating i {
  color: var(--secondary-color);
  font-size: 1.1rem;
}
.carousel-control-next,
.carousel-control-prev {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  transition: var(--transition);
}
.carousel-control-next:hover,
.carousel-control-prev:hover {
  background: var(--secondary-color);
}
.carousel-control-prev {
  left: -60px;
}
.carousel-control-next {
  right: -60px;
}
.gallery-section {
  background: var(--light-color);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  cursor: pointer;
  height: 300px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}
.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.15);
}
.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-overlay);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}
.gallery-overlay i {
  font-size: 3rem;
  color: var(--white);
  transform: scale(0);
  transition: transform 0.3s ease 0.1s;
}
.gallery-item:hover .gallery-overlay i {
  transform: scale(1);
}
.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 10000;
  align-items: center;
  justify-content: center;
}
.lightbox.active {
  display: flex;
}
.lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.lightbox-close {
  position: absolute;
  top: 30px;
  right: 50px;
  font-size: 3rem;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover {
  color: var(--secondary-color);
  transform: rotate(90deg);
}
.cta-section {
  background: linear-gradient(
      135deg,
      rgba(44, 95, 93, 0.95) 0,
      rgba(27, 63, 62, 0.9) 100%
    ),
    url(https://images.unsplash.com/photo-1488646953014-85cb44e25828?w=1920&q=80)
      center/cover fixed;
  padding: 120px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at 50% 50%,
    rgba(212, 165, 116, 0.1) 0,
    transparent 70%
  );
}
.cta-content {
  position: relative;
  z-index: 2;
}
.cta-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}
.cta-subtitle {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
  font-weight: 300;
}
.btn-cta {
  background: var(--gradient-secondary);
  color: var(--white);
  padding: 1.2rem 4rem;
  border-radius: 50px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 1rem;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: inline-block;
  text-decoration: none;
}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
  color: rgb(199 154 105);
  font-weight: 700;
}
.btn-cta::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}
.btn-cta:hover::before {
  width: 400px;
  height: 400px;
}
.btn-cta:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(212, 165, 116, 0.4);
}
.contact-section {
  background: var(--light-color);
}
.contact-form {
  background: var(--white);
  padding: 3rem;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}
.contact-info {
  background: var(--gradient-primary);
  padding: 3rem;
  border-radius: 20px;
  color: var(--white);
  height: 100%;
}
.contact-info-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1.5rem;
}
.contact-info-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-icon i {
  font-size: 1.3rem;
}
.contact-info-content h5 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
.contact-info-content p {
  margin: 0;
  opacity: 0.9;
}
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}
.social-link {
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.social-link:hover {
  background: var(--secondary-color);
  transform: translateY(-5px);
  color: var(--white);
}
.map-container {
  border-radius: 20px;
  overflow: hidden;
  height: 400px;
  box-shadow: var(--shadow-md);
  margin-top: 3rem;
}
.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.btn-submit {
  background: var(--gradient-primary);
  color: var(--white);
  padding: 1rem 3rem;
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  border: none;
  transition: var(--transition);
  width: 100%;
}
.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(44, 95, 93, 0.3);
}
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 80px 0 0;
}
.footer-widget h4 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}
.footer-widget p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 0.8rem;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}
.footer-links a:hover {
  color: var(--secondary-color);
  transform: translateX(5px);
}
.newsletter-form {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.newsletter-form input {
  flex: 1;
  padding: 0.8rem 1.2rem;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  transition: var(--transition);
}
.newsletter-form input:focus {
  outline: 0;
  border-color: var(--secondary-color);
  background: rgba(255, 255, 255, 0.1);
}
.newsletter-form input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.newsletter-form button {
  background: var(--gradient-secondary);
  border: none;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  color: var(--white);
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.newsletter-form button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(212, 165, 116, 0.3);
}
.footer-bottom {
  margin-top: 60px;
  padding: 30px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}
.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
}
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient-secondary);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--white);
  cursor: pointer;
  transition: var(--transition);
  z-index: 999;
  box-shadow: var(--shadow-md);
}
.scroll-top.active {
  display: flex;
}
.scroll-top:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
@media (max-width: 991px) {
  .hero-title {
    font-size: 3.5rem;
  }
  .section-title {
    font-size: 2.5rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .carousel-control-prev {
    left: 10px;
  }
  .carousel-control-next {
    right: 10px;
  }
  .navbar-collapse {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 15px;
    margin-top: 1rem;
  }
  .navbar-nav .nav-link {
    color: var(--dark-color);
  }
}
@media (max-width: 767px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .search-form {
    padding: 1.5rem;
  }
  .section {
    padding: 60px 0;
  }
  .section-title {
    font-size: 2rem;
  }
  .cta-title {
    font-size: 2rem;
  }
  .cta-subtitle {
    font-size: 1rem;
  }
  .destination-card {
    height: 300px;
  }
  .gallery-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }
  .lightbox-close {
    right: 20px;
    top: 20px;
  }
}
@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .btn-cta {
    padding: 1rem 2.5rem;
    font-size: 0.9rem;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
}
.booking-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1469474968028-56623f02e42e?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.booking-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.booking-hero .hero-subtitle {
  font-size: 1.3rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.booking-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.progress-step {
  flex: 1;
  text-align: center;
  padding: 1rem 0.5rem;
  background: #fff;
  border-radius: 40px;
  font-weight: 600;
  color: #2c5f5d;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.3s;
  font-size: 0.95rem;
}
.progress-step.active {
  background: #2c5f5d;
  color: #fff;
  border-color: #2c5f5d;
}
.progress-step i {
  margin-right: 8px;
  font-size: 1rem;
}
.booking-wrapper {
  background-color: var(--light-sand);
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-bottom: 3rem;
}
.booking-step-card {
  background: #fff;
  border-radius: 20px;
  padding: 2rem;
  margin-bottom: 2rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.02);
}
.step-title {
  font-family: "Cormorant Garamond", serif;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  border-left: 5px solid #d4a574;
  padding-left: 1.2rem;
}
.step-title i {
  color: #d4a574;
  margin-right: 10px;
}
.booking-summary-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  position: sticky;
  top: 120px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  border: 1px solid #f0e4d3;
}
.summary-destination {
  font-weight: 700;
  color: #1e3b3a;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.summary-price {
  font-size: 2.2rem;
  font-weight: 800;
  color: #d4a574;
  line-height: 1.2;
}
.summary-price span {
  font-size: 1rem;
  font-weight: 400;
  color: #6c757d;
}
.divider {
  height: 1px;
  background: linear-gradient(to right, transparent, #d4a574, transparent);
  margin: 1.5rem 0;
}
.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.8rem;
  font-size: 1rem;
}
.summary-item.total {
  font-weight: 700;
  font-size: 1.3rem;
  border-top: 1px dashed #ddd;
  padding-top: 1rem;
  margin-top: 0.5rem;
}
.btn-proceed {
  background: #d4a574;
  color: #fff;
  border: none;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
  margin-top: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.btn-proceed:hover {
  background: #b5875c;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(212, 165, 116, 0.3);
}
.payment-options {
  display: flex;
  gap: 15px;
  font-size: 2rem;
  color: #2c5f5d;
  margin-top: 1rem;
  flex-wrap: wrap;
}
.payment-options i {
  background: #f8f0e6;
  padding: 12px;
  border-radius: 12px;
  transition: 0.2s;
}
.payment-options i:hover {
  background: #d4a574;
  color: #fff;
}
.form-control,
.form-select {
  border-radius: 12px;
  padding: 12px 18px;
  border: 1px solid #e9dfd1;
  background: #fefcf9;
}
.form-control:focus,
.form-select:focus {
  border-color: #d4a574;
  box-shadow: 0 0 0 0.2rem rgba(212, 165, 116, 0.25);
}
.extra-feature {
  background: #faf7f2;
  border-radius: 16px;
  padding: 1rem 1.2rem;
  margin-bottom: 0.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #f0e4d3;
}
.extra-feature input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #d4a574;
}
@media (max-width: 768px) {
  .booking-hero .hero-title {
    font-size: 2.5rem;
  }
  .booking-wrapper {
    padding: 1.5rem;
  }
  .progress-step {
    font-size: 0.8rem;
  }
  .progress-step i {
    display: block;
    margin: 0 0 5px 0;
  }
}
.faq-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.35)),
    url(https://images.unsplash.com/photo-1436491865332-7a61a109cc05?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.faq-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.faq-hero .hero-subtitle {
  font-size: 1.3rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.faq-search {
  max-width: 600px;
  margin: 0 auto 3rem;
}
.faq-search .input-group {
  border-radius: 60px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.faq-search .form-control {
  border: none;
  padding: 1rem 1.8rem;
  font-size: 1.1rem;
  background: #fff;
}
.faq-search .btn-faq-search {
  background: #d4a574;
  color: #fff;
  border: none;
  padding: 0 2rem;
  font-weight: 600;
  transition: 0.3s;
}
.faq-search .btn-faq-search:hover {
  background: #b5875c;
}
.faq-category {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin: 2.5rem 0 1.5rem;
  border-bottom: 2px solid #d4a574;
  padding-bottom: 0.5rem;
}
.faq-accordion .accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(0, 0, 0, 0.05);
  background: #fff;
}
.faq-accordion .accordion-button {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #2c5f5d;
  background: #fff;
  padding: 1.5rem 2rem;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
  background: #faf7f2;
  color: #1e3b3a;
}
.faq-accordion .accordion-button:focus {
  box-shadow: none;
  border-color: rgba(212, 165, 116, 0.3);
}
.faq-accordion .accordion-button::after {
  background-size: 1.2rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%232C5F5D' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
}
.faq-accordion .accordion-body {
  padding: 0 2rem 2rem 2rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.8;
  background: #fefcf9;
}
.faq-accordion .accordion-body p:last-child {
  margin-bottom: 0;
}
.faq-no-result {
  text-align: center;
  padding: 4rem 2rem;
  background: #faf7f2;
  border-radius: 30px;
  margin-top: 2rem;
  display: none;
}
.faq-no-result i {
  font-size: 3rem;
  color: #d4a574;
  margin-bottom: 1rem;
}
.faq-no-result h4 {
  font-family: "Cormorant Garamond", serif;
  color: #1e3b3a;
}
.contact-prompt {
  background: #faf7f2;
  border-radius: 30px;
  padding: 2.5rem;
  margin-top: 4rem;
  text-align: center;
  border: 1px solid #f0e4d3;
}
.contact-prompt h3 {
  font-family: "Cormorant Garamond", serif;
  color: #1e3b3a;
  font-size: 2rem;
}
.btn-contact {
  background: #2c5f5d;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1.5rem;
  transition: 0.3s;
}
.btn-contact:hover {
  background: #1e3b3a;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(44, 95, 93, 0.2);
}
.privacy-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.privacy-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.privacy-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.privacy-section {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.privacy-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1.5rem;
}
.privacy-subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2c5f5d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.privacy-text {
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.privacy-list {
  list-style: none;
  padding-left: 0;
}
.privacy-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
}
.privacy-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4a574;
}
.privacy-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #f0e4d3;
  margin: 1.8rem 0;
}
.privacy-highlight p:last-child {
  margin-bottom: 0;
}
.last-updated {
  font-style: italic;
  color: #8a9b9a;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}
@media (max-width: 768px) {
  .privacy-hero .hero-title {
    font-size: 2.5rem;
  }
  .privacy-section {
    padding: 1.8rem;
  }
}
.terms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1451187580459-43490279c0fa?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.terms-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.terms-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.terms-section {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.terms-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1.5rem;
}
.terms-subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2c5f5d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.terms-text {
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.terms-list {
  list-style: none;
  padding-left: 0;
}
.terms-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
}
.terms-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4a574;
}
.terms-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #f0e4d3;
  margin: 1.8rem 0;
}
.terms-highlight p:last-child {
  margin-bottom: 0;
}
.last-updated {
  font-style: italic;
  color: #8a9b9a;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}
@media (max-width: 768px) {
  .terms-hero .hero-title {
    font-size: 2.5rem;
  }
  .terms-section {
    padding: 1.8rem;
  }
}
.bookingterms-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.bookingterms-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.bookingterms-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.bookingterms-section {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.bookingterms-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1.5rem;
}
.bookingterms-subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2c5f5d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.bookingterms-text {
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.bookingterms-list {
  list-style: none;
  padding-left: 0;
}
.bookingterms-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
}
.bookingterms-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4a574;
}
.bookingterms-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #f0e4d3;
  margin: 1.8rem 0;
}
.bookingterms-highlight p:last-child {
  margin-bottom: 0;
}
.last-updated {
  font-style: italic;
  color: #8a9b9a;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}
@media (max-width: 768px) {
  .bookingterms-hero .hero-title {
    font-size: 2.5rem;
  }
  .bookingterms-section {
    padding: 1.8rem;
  }
}
.cancellation-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1434030216411-0b793f4b4173?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.cancellation-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.cancellation-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.cancellation-section {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 3rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.cancellation-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1.5rem;
}
.cancellation-subtitle {
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  font-size: 1.4rem;
  color: #2c5f5d;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.cancellation-text {
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}
.cancellation-list {
  list-style: none;
  padding-left: 0;
}
.cancellation-list li {
  padding-left: 1.8rem;
  position: relative;
  margin-bottom: 0.8rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
}
.cancellation-list li:before {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  left: 0;
  color: #d4a574;
}
.cancellation-highlight {
  background: #fff;
  border-radius: 20px;
  padding: 1.8rem;
  border: 1px solid #f0e4d3;
  margin: 1.8rem 0;
}
.cancellation-highlight p:last-child {
  margin-bottom: 0;
}
.cancellation-table {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  margin: 1.5rem 0;
  border: 1px solid #f0e4d3;
}
.cancellation-table table {
  margin-bottom: 0;
}
.cancellation-table th {
  background: #2c5f5d;
  color: #fff;
  font-weight: 600;
  font-family: Montserrat, sans-serif;
  padding: 1rem;
}
.cancellation-table td {
  padding: 1rem;
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  border-bottom: 1px solid #f0e4d3;
}
.cancellation-table tr:last-child td {
  border-bottom: none;
}
.last-updated {
  font-style: italic;
  color: #8a9b9a;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px dashed #d4a574;
}
@media (max-width: 768px) {
  .cancellation-hero .hero-title {
    font-size: 2.5rem;
  }
  .cancellation-section {
    padding: 1.8rem;
  }
}
.login-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1488085061387-422e29b40080?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.login-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.login-hero .hero-subtitle {
  font-size: 1.1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.login-card {
  background: #fff;
  border-radius: 30px;
  padding: 2rem;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  margin-top: -4rem;
  margin-bottom: 3rem;
  z-index: 10;
  position: relative;
}
.nav-tabs {
  border-bottom: 2px solid #f0e4d3;
  margin-bottom: 2rem;
  gap: 1rem;
}
.nav-tabs .nav-link {
  border: none;
  font-family: Montserrat, sans-serif;
  font-weight: 600;
  color: #8a9b9a;
  padding: 0.8rem 2rem;
  border-radius: 40px;
  transition: all 0.3s;
  background: 0 0;
}
.nav-tabs .nav-link i {
  margin-right: 8px;
}
.nav-tabs .nav-link:hover {
  color: #2c5f5d;
  background: #faf7f2;
}
.nav-tabs .nav-link.active {
  color: #fff;
  background: #2c5f5d;
  border: none;
}
.tab-pane {
  animation: fadeIn 0.5s ease;
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.form-label {
  font-family: Montserrat, sans-serif;
  font-weight: 500;
  color: #1e3b3a;
  margin-bottom: 0.3rem;
}
.login-btn {
  background: #d4a574;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 50px;
  font-weight: 600;
  width: 100%;
  transition: all 0.3s;
  margin-top: 1rem;
}
.login-btn:hover {
  background: #b5875c;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 165, 116, 0.3);
}
.forgot-link,
.terms-link {
  color: #2c5f5d;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.2s;
}
.forgot-link:hover,
.terms-link:hover {
  color: #d4a574;
  text-decoration: underline;
}
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  color: #8a9b9a;
  margin: 1.5rem 0;
}
.divider::after,
.divider::before {
  content: "";
  flex: 1;
  border-bottom: 1px solid #f0e4d3;
}
.divider span {
  padding: 0 1rem;
  font-size: 0.9rem;
}
.social-login {
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.social-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #f8f0e6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #2c5f5d;
  font-size: 1.3rem;
  transition: 0.3s;
  text-decoration: none;
}
.social-icon:hover {
  background: #d4a574;
  color: #fff;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .login-hero .hero-title {
    font-size: 2.2rem;
  }
  .login-card {
    padding: 1.8rem;
    margin-top: -2rem;
  }
  .nav-tabs .nav-link {
    padding: 0.6rem 1rem;
  }
}
.bookings-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1502920514313-52581002a659?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.bookings-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.bookings-hero .hero-subtitle {
  font-size: 1.1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.bookings-container {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.booking-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.booking-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.booking-img {
  height: 100%;
  min-height: 200px;
  object-fit: cover;
  width: 100%;
}
.booking-content {
  padding: 1.8rem;
}
.booking-destination {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 0.3rem;
}
.booking-reference {
  color: #8a9b9a;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.booking-detail {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  color: #5a6b6a;
}
.booking-detail i {
  width: 24px;
  color: #d4a574;
  margin-right: 10px;
}
.booking-price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #2c5f5d;
}
.booking-price small {
  font-size: 0.9rem;
  font-weight: 400;
  color: #8a9b9a;
}
.booking-status {
  display: inline-block;
  padding: 0.4rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.status-confirmed {
  background: #d4edda;
  color: #155724;
}
.status-pending {
  background: #fff3cd;
  color: #856404;
}
.status-completed {
  background: #cce5ff;
  color: #004085;
}
.status-cancelled {
  background: #f8d7da;
  color: #721c24;
}
.btn-view {
  background: 0 0;
  border: 2px solid #2c5f5d;
  color: #2c5f5d;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  margin-right: 10px;
}
.btn-view:hover {
  background: #2c5f5d;
  color: #fff;
}
.btn-cancel {
  background: 0 0;
  border: 2px solid #d4a574;
  color: #d4a574;
  padding: 8px 25px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
}
.btn-cancel:hover {
  background: #d4a574;
  color: #fff;
}
.filter-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.filter-search {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 60px;
  padding: 0.3rem 0.3rem 0.3rem 1.5rem;
  border: 1px solid #f0e4d3;
  max-width: 515px;
  width: 100%;
}
.filter-search input {
  border: none;
  background: 0 0;
  padding: 0.7rem 0;
  width: 100%;
  outline: 0;
}
.filter-search button {
  background: #d4a574;
  border: none;
  border-radius: 50px;
  padding: 0.6rem 2rem;
  color: #fff;
  font-weight: 600;
  transition: 0.3s;
  width: 60%;
}
.filter-search button:hover {
  background: #b5875c;
}
@media (max-width: 768px) {
  .bookings-hero .hero-title {
    font-size: 2.2rem;
  }
  .bookings-container {
    padding: 1.5rem;
  }
  .booking-img {
    min-height: 180px;
  }
}
.blog-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.blog-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.blog-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.featured-post {
  background: #fff;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  transition: 0.3s;
}
.featured-post:hover {
  transform: translateY(-5px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}
.featured-img {
  height: 100%;
  min-height: 350px;
  object-fit: cover;
  width: 100%;
}
.featured-content {
  padding: 2.5rem;
}
.featured-category {
  display: inline-block;
  background: #d4a574;
  color: #fff;
  padding: 0.4rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}
.featured-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1rem;
}
.featured-meta {
  color: #8a9b9a;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}
.featured-meta i {
  color: #d4a574;
  margin-right: 5px;
}
.featured-excerpt {
  color: #5a6b6a;
  line-height: 1.8;
  margin-bottom: 2rem;
}
.btn-read {
  background: 0 0;
  border: 2px solid #2c5f5d;
  color: #2c5f5d;
  padding: 10px 30px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  text-decoration: none;
  display: inline-block;
}
.btn-read:hover {
  background: #2c5f5d;
  color: #fff;
}
.blog-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  margin-bottom: 2rem;
  height: 100%;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.blog-card-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.blog-card-content {
  padding: 1.8rem;
}
.blog-card-category {
  color: #d4a574;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.blog-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #1e3b3a;
  margin: 0.5rem 0;
}
.blog-card-meta {
  color: #8a9b9a;
  font-size: 0.85rem;
}
.blog-card-meta i {
  color: #d4a574;
  margin-right: 5px;
}
.blog-card-excerpt {
  color: #5a6b6a;
  line-height: 1.6;
  margin: 1rem 0;
}
.sidebar-widget {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1rem;
}
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  margin-bottom: 0.8rem;
}
.category-list a {
  color: #5a6b6a;
  text-decoration: none;
  transition: 0.2s;
  display: flex;
  justify-content: space-between;
}
.category-list a:hover {
  color: #d4a574;
  padding-left: 5px;
}
.popular-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.popular-img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}
.popular-title {
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 0.2rem;
}
.popular-title a {
  text-decoration: none;
  color: inherit;    font-size: 1rem;
}
.popular-title a:hover {
  color: #d4a574;
}
.popular-date {
  font-size: 0.8rem;
  color: #8a9b9a;
}
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag {
  background: #f8f0e6;
  color: #2c5f5d;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}
.tag:hover {
  background: #d4a574;
  color: #fff;
}
@media (max-width: 768px) {
  .blog-hero .hero-title {
    font-size: 2.5rem;
  }
  .featured-img {
    min-height: 250px;
  }
}
.sidebar-widget .btn-search {
  width: auto;
}
.post-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1506905925346-21bda4d32df4?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
  position: relative;
}
.post-hero .container {
  padding-bottom: 3rem;
}
.post-hero .hero-category {
  display: inline-block;
  background: #d4a574;
  color: #fff;
  padding: 0.4rem 1.8rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}
.post-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  max-width: 900px;
  margin: 0 auto 1rem;
}
.post-hero .hero-meta {
  font-size: 1rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.post-hero .hero-meta i {
  color: #d4a574;
  margin-right: 5px;
}
.post-content {
  background: #fff;
  border-radius: 30px;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}
.post-body {
  font-family: Montserrat, sans-serif;
  color: #5a6b6a;
  line-height: 1.9;
}
.post-body h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 600;
  color: #1e3b3a;
  margin: 2rem 0 1rem;
}
.post-body h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e3b3a;
  margin: 1.8rem 0 1rem;
}
.post-body p {
  margin-bottom: 1.5rem;
}
.post-body blockquote {
  background: #faf7f2;
  border-left: 5px solid #d4a574;
  padding: 1.8rem;
  font-style: italic;
  font-size: 1.1rem;
  border-radius: 0 20px 20px 0;
  margin: 2rem 0;
}
.post-body .post-img {
  border-radius: 20px;
  margin: 2rem 0;
  width: 100%;
}
.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 2rem 0;
}
.post-tag {
  background: #f8f0e6;
  color: #2c5f5d;
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  text-decoration: none;
  transition: 0.2s;
}
.post-tag:hover {
  background: #d4a574;
  color: #fff;
}
.post-share {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 2rem 0;
  padding: 1.5rem 0;
  border-top: 1px solid #f0e4d3;
  border-bottom: 1px solid #f0e4d3;
}
.post-share span {
  font-weight: 600;
  color: #1e3b3a;
}
.post-share a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f8f0e6;
  color: #2c5f5d;
  transition: 0.3s;text-decoration: none;
}
.post-share a:hover {
  background: #d4a574;
  color: #fff;
  transform: translateY(-3px);
}
.author-card {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  gap: 1.5rem;
  align-items: center;
  flex-wrap: wrap;
}
.author-img {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  object-fit: cover;
}
.author-info h4 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #1e3b3a;
}
.author-info p {
  color: #5a6b6a;
}
.sidebar-widget {
  background: #fff;
  border-radius: 24px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.sidebar-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 1.5rem;
  border-left: 5px solid #d4a574;
  padding-left: 1rem;
}
.recent-post {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.recent-img {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
}
.recent-title {
  font-weight: 600;
  color: #1e3b3a;
}
.recent-title a {
  text-decoration: none;
  color: inherit;
}
.recent-title a:hover {
  color: #d4a574;
}
.recent-date {
  font-size: 0.8rem;
  color: #8a9b9a;
}
.category-list {
  list-style: none;
  padding: 0;
}
.category-list li {
  margin-bottom: 0.8rem;
}
.category-list a {
  color: #5a6b6a;
  text-decoration: none;
  display: flex;
  justify-content: space-between;
}
.category-list a:hover {
  color: #d4a574;
  padding-left: 5px;
}
@media (max-width: 768px) {
  .post-hero .hero-title {
    font-size: 2.5rem;
  }
  .author-card {
    flex-direction: column;
    text-align: center;
  }
}
.destinations-hero {
  background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)),
    url(https://images.unsplash.com/photo-1502920514313-52581002a659?w=1400&q=80)
      no-repeat center center/cover;
  min-height: 55vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  margin-bottom: 1rem;
}
.destinations-hero .hero-title {
  font-size: 2.5rem;
  font-weight: 600;
  font-family: "Cormorant Garamond", serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}
.destinations-hero .hero-subtitle {
  font-size: 1.2rem;
  font-family: Montserrat, sans-serif;
  font-weight: 300;
  opacity: 0.95;
}
.filter-section {
  background-color: #faf7f2;
  border-radius: 30px;
  padding: 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}
.filter-label {
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 0.3rem;
}
.filter-input,
.filter-select {
  border-radius: 50px !important;
  padding: 0.6rem 1.2rem;
  border: 1px solid #f0e4d3;
  background: #fff;
}
.btn-filter {
  background: #2c5f5d;
  color: #fff;
  border: none;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}
.btn-filter:hover {
  background: #1e3b3a;
}
.btn-reset {
  background: 0 0;
  border: 1px solid #d4a574;
  color: #d4a574;
  padding: 0.6rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  width: 100%;
}
.btn-reset:hover {
  background: #d4a574;
  color: #fff;
}
.destination-grid-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: 0.3s;
  margin-bottom: 1.5rem;
  height: 100%;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.destination-grid-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}
.destination-grid-img {
  height: 220px;
  object-fit: cover;
  width: 100%;
}
.destination-grid-content {
  padding: 1.5rem;
}
.destination-grid-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #1e3b3a;
  margin-bottom: 0.2rem;
}
.destination-grid-region {
  color: #d4a574;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.destination-grid-price {
  font-size: 1.3rem;
  font-weight: 700;
  color: #2c5f5d;
  margin: 0.5rem 0;
}
.destination-grid-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: #8a9b9a;
}
.btn-destination {
  background: 0 0;
  border: 2px solid #2c5f5d;
  color: #2c5f5d;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600;
  transition: 0.3s;
  display: inline-block;
  text-decoration: none;
  width: 100%;
  text-align: center;
}
.btn-destination:hover {
  background: #2c5f5d;
  color: #fff;
}
.no-results {
  text-align: center;
  padding: 3rem;
  display: none;
}
.no-results i {
  font-size: 3rem;
  color: #d4a574;
}
.no-results h4 {
  font-family: "Cormorant Garamond", serif;
  color: #1e3b3a;
  margin-top: 1rem;
}
@media (max-width: 768px) {
  .destinations-hero .hero-title {
    font-size: 2.5rem;
  }
}
.navbar-brand:focus,
.navbar-brand:hover {
  color: #fff !important;
}
.btn-book-now{text-decoration: none;}