.hero-section {
  padding: 120px 0 10px;
  background: linear-gradient(120deg, #fff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}

.hero-title {
  font-family: var(--font-primary);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-text {
  font-size: var(--font-size-h4);
  color: var(--muted-color);  
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.btn-primary {
  background-color: var(--primary-color);
  color: var(--light-color);
  padding: 0.875rem 2rem;
  height: 3.25rem;
  border-radius: 50px;
  font-weight: 500;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  transition: var(--transition);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  background-color: var(--secondary-color);
  box-shadow: var(--shadow-sm);
}

.btn-primary i {
  font-size: 1rem;
  margin-left: 0.3125rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.contact-btn {
  background-color: transparent;
  color: var(--primary-color);
  padding: 0.875rem 2rem;
  height: 3.25rem;
  width: 12rem;
  font-weight: 500;
  border-radius: 50px;
  border: 2px solid #1a374d1a;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  border: 2px solid var(--primary-color);
}

.btn-primary:focus {
  background-color: var(--primary-color) !important;
}

.hero-images {
  position: relative;
  height: 600px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-images img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  object-fit: cover;
  z-index: 2;
  transform-origin: center;
}

.hero-images .img-1 {
  width: 320px;
  height: 400px;
  right: 0;
  top: 50px;
  z-index: 3;
  transform: rotate(5deg);
}

.hero-images .img-2 {
  width: 280px;
  height: 350px;
  right: 160px;
  top: 130px;
  z-index: 2;
  transform: rotate(-3deg);
}

.hero-images .img-3 {
  width: 240px;
  height: 300px;
  right: 60px;
  top: 220px;
  z-index: 1;
  transform: rotate(8deg);
}

@keyframes float {
  0% {
    transform: translateY(0) rotate(5deg);
  }
  50% {
    transform: translateY(-15px) rotate(8deg);
  }
  100% {
    transform: translateY(0) rotate(5deg);
  }
}

@keyframes floatReverse {
  0% {
    transform: translateY(0) rotate(-3deg);
  }
  50% {
    transform: translateY(-20px) rotate(-5deg);
  }
  100% {
    transform: translateY(0) rotate(-3deg);
  }
}

.hero-images .img-1 {
  animation: float 8s ease-in-out infinite;
}

.hero-images .img-2 {
  animation: floatReverse 9s ease-in-out infinite;
}

.hero-images .img-3 {
  animation: float 10s ease-in-out infinite;
}

.hero-images img:hover {
  transform: scale(1.08) translateY(-15px) rotate(0deg) !important;
  box-shadow: 0 25px 45px #00000033;
  z-index: 5;
  cursor: pointer;
  filter: brightness(1.1) contrast(1.1);
}

.hero-images .img-1:hover {
  transform: scale(1.08) translateY(-15px) rotate(2deg) !important;
}

.hero-images .img-2:hover {
  transform: scale(1.08) translateY(-15px) rotate(-2deg) !important;
}

.hero-images .img-3:hover {
  transform: scale(1.08) translateY(-15px) rotate(4deg) !important;
}

.hero-images img::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    #19364d00,
    #1a374d1a
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: var(--radius-lg);
}

.hero-images img:hover::after {
  opacity: 1;
}

.shape-circle {
  position: absolute;
  width: 250px;
  height: 250px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  right: -50px;
  top: 20%;
  z-index: 1;
  animation: rotate 20s linear infinite;
}

.shape-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, var(--primary-color) 2px, transparent 2px) 0 0/20px 20px;
  opacity: 0.1;
  left: -20px;
  bottom: 20%;
  animation: float 6s ease-in-out infinite;
}

.decorative-arrows {
  position: absolute;
  z-index: 2;
  left: 20%;
  top: 5%;
  width: 80px;
  pointer-events: none;
}

.arrow-img {
  width: 100%;
  height: auto;
  opacity: 0.7;
  filter: brightness(0) saturate(100%) invert(18%) sepia(24%) saturate(1903%) hue-rotate(173deg) brightness(92%) contrast(88%);
}

.decorative-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.symbol-1 {
  top: 15%;
  left: 0;
  font-size: 24px;
  animation: floatSymbol 6s ease-in-out infinite;
}

.symbol-2 {
  bottom: 0;
  right: 20%;
  font-size: 28px;
  animation: rotateSymbol 12s linear infinite;
}

@keyframes floatSymbol {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}

@keyframes rotateSymbol {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.service-section {
  padding: var(--spacing-xl) 0;
  position: relative;
  overflow: hidden;
}

.service-card {
  text-align: center;
  box-shadow: 0 10px 30px #00000014;
  padding: 35px 25px;
  background: #1a374d0d;
  border-radius: var(--radius-lg);
  min-height: 100%;
  top: 0;
  margin-bottom: 30px !important;
  transition: all 0.3s ease;
  border: 1px solid var(--light-color);
  position: relative;
  overflow: hidden;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px -1px #00000040;
  border-color: var(--light-color);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.icon-service {
  width: 60px;
  height: 60px;
  margin-bottom: 1rem;
  transition: transform 0.3s ease;
  color: var(--primary-color) !important;
}

.service-card:hover .icon-service {
  transform: scale(1.1);
}

.service-card h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--muted-color);
  line-height: 1.6;
  margin: 0;
}

.service-shape-dots {
  position: absolute;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle at center, var(--primary-color) 2px, transparent 2px) 0 0/20px 20px;
  opacity: 0.1;
  right: 5%;
  top: 10%;
  animation: float 6s ease-in-out infinite;
}

.service-floating-circles::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.service-floating-circles::before {
  width: 200px;
  height: 200px;
  border: 2px dashed var(--primary-color);
  top: -100px;
  left: -50px;
  animation: rotateSymbol 30s linear infinite;
}

.about-stats {
  background: #F8F9FA;
  padding: var(--spacing-md) 0;
  margin-top: 1.5rem;
}

.stat-card {
  text-align: center;
  padding: 18px 10px;
}

.stat-number {
  font-size: 2rem;
  font-weight: 400;
  color: var(--primary-color);
}

.stat-label {
  font-size: 0.9rem;
  color: var(--secondary-color);
  font-weight: 700;
}

.about-stats .stat-number {
  font-size: 3rem;
  letter-spacing: 1px;
}

.destination-section {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}

.owl-carousel .item {
  position: relative;
  height: 580px;
  overflow: hidden;
}

.media-thumb {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: var(--radius-lg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.media-thumb img {
  -webkit-transform: scale(1.03);
  -ms-transform: scale(1.03);
  transform: scale(1.03);
  -webkit-transition: .3s transform ease;
  -o-transition: .3s transform ease;
  transition: .3s transform ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.media-thumb .media-text {
  position: absolute;
  top: 20px;
  left: 40px;
  z-index: 2;
  opacity: 1;
  visibility: visible;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
  margin-top: 20px;
}

.media-thumb .media-text h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--light-color);
  text-shadow: var(--shadow-md);
  margin: 0;
  padding: 0;
}

.media-thumb .media-text .location {
  font-size: .8rem;
  color: var(--light-color);
  text-shadow: var(--shadow-lg);
}

.media-thumb .media-text h3,
.media-thumb .media-text .location {
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.media-thumb:hover {
  z-index: 3;
}

.media-thumb:hover img {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.media-thumb:hover:after {
  opacity: 1;
  visibility: visible;
}

.media-thumb:hover .media-text {
  -webkit-transition-delay: .2s;
  -o-transition-delay: .2s;
  transition-delay: .2s;
  opacity: 1;
  visibility: visible;
}

.owl-3-slider .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 100%;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-3-slider .owl-nav .owl-prev,
.owl-3-slider .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 30px;
  -webkit-transition: .3s all ease;
  -o-transition: .3s all ease;
  transition: .3s all ease;
}

.owl-3-slider .owl-nav .owl-prev span,
.owl-3-slider .owl-nav .owl-next span {
  font-size: 1.325rem;
}

.owl-3-slider .owl-nav .owl-prev {
  left: -40px;
}

.owl-3-slider .owl-nav .owl-prev:hover {
  color: var(--primary-color);
}

.owl-3-slider .owl-nav .owl-next {
  right: -40px;
}

.owl-3-slider .owl-nav .owl-next:hover {
  color: var(--primary-color);
}

.owl-3-slider .owl-nav .owl-next span {
  display: inline-block;
  -webkit-transform: rotate(-180deg);
  -ms-transform: rotate(-180deg);
  transform: rotate(-180deg);
}

.owl-3-slider:hover .owl-nav {
  opacity: 1;
  visibility: visible;
}

.owl-single .owl-dots, .owl-carousel .owl-dots {
  text-align: center;
  position: absolute;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.owl-dots {
  position: relative;
  margin-top: 1rem;
}

.owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  margin: 5px;
}

.owl-3-slider .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}

.owl-single .owl-dots .owl-dot.active span, .owl-carousel .owl-dots .owl-dot.active span {
  background: var(--primary-color);
}

.owl-single .owl-dots .owl-dot span, .owl-carousel .owl-dots .owl-dot span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #00000033;
}

.popular-section-elements {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 1;
}

.symbol-5 {
  top: 15%;
  right: 20%;
  font-size: 32px;
  animation: rotateSymbol 15s linear infinite;
}

.symbol-6 {
  top: 20%;
  left: 20%;
  font-size: 28px;
  animation: floatSymbol 8s ease-in-out infinite;
}

.floating-circles::before {
  content: '';
  position: absolute;
  border-radius: 50%;
  opacity: 0.1;
}

.floating-circles::before {
  width: 200px;
  height: 200px;
  border: 2px dashed var(--primary-color);
  top: -100px;
  right: -50px;
  animation: rotateSymbol 30s linear infinite;
}

@keyframes rotateSymbol {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.testimonial-section {
  background: var(--gray-color);
  position: relative;
  min-height: 450px;
  padding: 50px 0 0;
  overflow: hidden;
  margin-top: 1rem;
}

.testimonial {
  max-width: 800px;
  text-align: center;
  margin-bottom: 30px;
  word-break: break-word;
}

.testimonial .img-wrap img {
  width: 80px !important;
  margin: 0px auto;
  border-radius: 50%;
  min-height: 80px; 
}

.testimonial .name {
  font-size: 1.250rem;
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial .quote {
  font-size: 1rem;
  font-style: italic;
  color: var(--secondary-color);
}

.testimonial .quote p {
  margin: 0 !important;
  line-height: 1.6;
}

.testimonial figure {
  transform: scale(0.8);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.owl-item.active .testimonial figure {
  transform: scale(1);
}

.testimonial-decoration {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 0;
}

.symbol-quote-1,
.symbol-quote-2 {
  position: absolute;
  font-family: Georgia, serif;
  font-size: 120px;
  line-height: 1;
  opacity: 0.1;
  color: var(--primary-color);
}

.symbol-quote-1 {
  bottom: 50px;
  right: 10%;
  transform: rotate(180deg);
}

.symbol-quote-2 {
  top: 50px;
  left: 10%;
}

.floating-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  border: 2px dashed var(--primary-color);
  border-radius: 50%;
  opacity: 0.1;
  bottom: -60px;
  left: -5%;
  animation: rotate 30s linear infinite;
}

.dots-pattern {
  position: absolute;
  width: 100px;
  height: 100px;
  background-image: radial-gradient(var(--primary-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.1;
  top: 100px;
  right: 50px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.booking-steps-section {
  padding: 60px 0 20px;
  position: relative;
  overflow: hidden;
}

.booking-step-card {
  background: var(--light-color);
  padding: 40px 30px;
  border-radius: 20px;
  border: 1px solid #1a374d0d;
  height: 100%;
  text-align: center;
  position: relative;
  z-index: 1;
  box-shadow: 0 15px 35px #0000000f;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.booking-step-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px #0000001a;
  border-color: transparent;
}

.booking-step-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  opacity: 0;
  transition: opacity 0.4s ease;
  border-radius: 20px;
  z-index: -1;
}

.booking-step-card:hover::before {
  opacity: 0.03;
}

.step-icon {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border-radius: 50%;
  box-shadow: 0 10px 25px #1a374d26;
  transition: transform 0.4s ease;
}

.step-icon i {
  font-size: 35px;
  color: var(--light-color);
  transition: transform 0.4s ease;
}

.booking-step-card:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
}

.booking-step-card:hover .step-icon i {
  transform: scale(1.1);
}

.step-number {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 35px;
  height: 35px;
  background: var(--light-color);
  border-radius: 50%;
  border: 2px solid #1a374d0d;
  box-shadow: 0 5px 15px #0000001a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  color: var(--primary-color);
  transition: all 0.3s ease;
}

.booking-step-card:hover .step-number {
  background: var(--primary-color);
  color: var(--light-color);
  border-color: var(--light-color);
}

.booking-step-card h3 {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--primary-color);
  transition: color 0.3s ease;
}

.booking-step-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0;
  color: var(--muted-color);
}

.faq-section {
  padding: 30px 0 40px;
  position: relative;
  overflow: hidden;
}

#faqNavigation:focus {
  outline: none;
}

.faq-section .faq-icon {
  margin-right: 10px;
  color: var(--primary-color); 
  font-size: 1rem;
  flex-shrink: 0;
}

.faq-section .accordion-item {
  border-radius: var(--radius-lg);
  margin-bottom: 18px;
  border: 1px solid #e3e3e3;
  box-shadow: 0 2px 10px #1a374d0a;
  overflow: hidden;
}

.faq-section .accordion-button {
  display: flex;
  align-items: center;
  font-size: 1.1rem;
  gap: 8px;
  transition: background 0.3s, color 0.3s;
  font-family: var(--font-primary) !important;
  color: var(--primary-color);
  font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed) .faq-icon {
  color: var(--light-color);
  transform: rotate(360deg);
  transition: color 0.3s ease, transform 0.5s ease;
}

.faq-section .accordion-button:not(.collapsed) {
  background: var(--primary-color);
  color: var(--light-color);
  font-weight: 500;
}

.faq-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23fff'%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");
  transform: rotate(-180deg);
}

.faq-section .accordion-button:focus {
  box-shadow: 0 0 0 0.1rem #1a374d33;
}

.faq-section .accordion-button::after {
  transition: transform 0.3s ease, background-image 0.3s ease;
}

.faq-section .accordion-body {
  background: var(--light-color);
  color: var(--dark-color);
  font-size: 0.98rem;
  padding: 1.2rem 1.5rem;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), background 0.3s;
}

.faq-section .accordion-item:last-child {
  margin-bottom: 0;
}