.home-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .home-hero {
    min-height: 90vh;
  }
}
@media (max-width: 480px) {
  .home-hero {
    min-height: 85vh;
  }
}
.home-hero .hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: auto;
}
.home-hero .hero-slider .gallery {
  width: 100%;
  height: 100%;
}
.home-hero .hero-slider .gallery .gallery-cell {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.home-hero .hero-slider .gallery .gallery-cell video,
.home-hero .hero-slider .gallery .gallery-cell img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  transition: transform 10s ease;
}
.home-hero .hero-slider .gallery .gallery-cell video {
  z-index: 1;
}
.home-hero .hero-slider .gallery .gallery-cell img {
  z-index: 0;
}
.home-hero .hero-slider .gallery .gallery-cell:hover video, .home-hero .hero-slider .gallery .gallery-cell:hover img {
  transform: scale(1.05);
}
.home-hero .hero-slider .gallery .gallery-cell .slider-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.3) 50%, rgba(0, 0, 0, 0.4) 100%);
  pointer-events: none;
  z-index: 2;
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 80px 100px;
  z-index: 3;
  pointer-events: none;
}
@media (max-width: 992px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay {
    width: 100%;
    align-items: center;
    text-align: center;
    justify-content: center;
  }
}
@media (max-width: 992px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay {
    padding: 60px 50px;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay {
    padding: 30px 20px;
  }
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-caption {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin: 0 0 30px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.3s forwards;
  line-height: 1.2;
}
@media (max-width: 768px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-caption {
    font-size: 12px;
    letter-spacing: 2px;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-caption {
    font-size: 10px;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
  }
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-title {
  font-size: 80px;
  font-weight: 800;
  line-height: 0.9;
  margin: 0 0 50px 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.6s forwards;
  letter-spacing: 3px;
}
@media (max-width: 992px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-title {
    font-size: 60px;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-title {
    font-size: 45px;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-title {
    font-size: 32px;
    letter-spacing: 1px;
    margin-bottom: 20px;
  }
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter {
  position: absolute;
  bottom: 80px;
  left: 100px;
  font-size: 19px;
  font-weight: 600;
  letter-spacing: 3px;
  display: flex;
  align-items: center;
  gap: 5px;
  opacity: 0;
  animation: fadeInUp 0.8s ease-out 0.9s forwards;
}
@media (max-width: 992px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter {
    bottom: 60px;
    left: 50px;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter {
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 16px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 14px;
  }
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter .current-slide {
  color: var(--color-primary, #EDB059);
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter .separator {
  color: rgba(255, 255, 255, 0.5);
}
.home-hero .hero-slider .gallery .gallery-cell .slider-text-overlay .slider-counter .total-slides {
  color: rgba(255, 255, 255, 0.5);
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="1"] .slider-text-overlay .slider-caption {
  color: #ffffff;
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="1"] .slider-text-overlay .slider-title {
  color: #ffcc00;
  text-shadow: 0 2px 20px rgba(255, 204, 0, 0.3);
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="2"] .slider-text-overlay .slider-caption {
  color: #ffffff;
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="2"] .slider-text-overlay .slider-title {
  color: #00d4ff;
  text-shadow: 0 2px 20px rgba(0, 212, 255, 0.3);
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="2"] .slider-text-overlay .slider-counter .current-slide {
  color: #00d4ff;
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="3"] .slider-text-overlay .slider-caption {
  color: #ffffff;
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="3"] .slider-text-overlay .slider-title {
  color: #32cd32;
  text-shadow: 0 2px 20px rgba(50, 205, 50, 0.3);
}
.home-hero .hero-slider .gallery .gallery-cell[data-slide="3"] .slider-text-overlay .slider-counter .current-slide {
  color: #32cd32;
}
.home-hero .hero-slider .flickity-page-dots {
  bottom: 50px;
  z-index: 10;
  pointer-events: auto;
  position: absolute;
  left: 50%;
  transform: translateX(-44%);
  display: flex;
  gap: 12px;
}
@media (max-width: 768px) {
  .home-hero .hero-slider .flickity-page-dots {
    bottom: 30px;
    gap: 10px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .flickity-page-dots {
    bottom: 20px;
    gap: 8px;
  }
}
.home-hero .hero-slider .flickity-page-dots .dot {
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  cursor: pointer;
  pointer-events: auto;
  width: 14px;
  height: 14px;
  margin: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 50%;
  border: 2px solid transparent;
}
@media (max-width: 768px) {
  .home-hero .hero-slider .flickity-page-dots .dot {
    width: 12px;
    height: 12px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-slider .flickity-page-dots .dot {
    width: 10px;
    height: 10px;
  }
}
.home-hero .hero-slider .flickity-page-dots .dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.3);
  border-color: rgba(255, 255, 255, 0.75);
}
.home-hero .hero-slider .flickity-page-dots .dot.is-selected {
  background: var(--color-primary, #EDB059);
  transform: scale(1.4);
  border-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0 0 15px rgba(237, 176, 89, 0.6);
}
.home-hero .hero-slider .flickity-prev-next-button {
  display: none;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.home-hero .hero-content-overlay {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 120px 20px;
  color: white;
  pointer-events: none;
  display: flex;
  align-items: center;
  min-height: 100vh;
}
@media (max-width: 768px) {
  .home-hero .hero-content-overlay {
    padding: 80px 15px;
    min-height: 90vh;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-content-overlay {
    padding: 60px 10px;
    min-height: 85vh;
  }
}
.home-hero .hero-content-overlay .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  pointer-events: auto;
  animation: fadeInUp 1s ease-out;
}
.home-hero .hero-content-overlay .hero-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}
@media (max-width: 992px) {
  .home-hero .hero-content-overlay .hero-content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-content-overlay .hero-content-wrapper {
    gap: 30px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-content-overlay .hero-content-wrapper {
    gap: 25px;
  }
}
.home-hero .hero-content-overlay .hero-content-left {
  pointer-events: auto;
  text-align: left;
}
@media (max-width: 992px) {
  .home-hero .hero-content-overlay .hero-content-left {
    text-align: center;
  }
}
.home-hero .hero-content-overlay .hero-content-right {
  pointer-events: auto;
  animation: fadeInRight 1s ease-out 0.2s both;
}
@media (max-width: 992px) {
  .home-hero .hero-content-overlay .hero-content-right {
    animation: fadeInUp 1s ease-out 0.3s both;
  }
}
.home-hero .hero-title {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 25px;
  text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.5), 0 0 20px rgba(0, 0, 0, 0.3);
  line-height: 1.1;
  color: #ffffff !important;
  letter-spacing: -1px;
}
@media (max-width: 992px) {
  .home-hero .hero-title {
    font-size: 3rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-title {
    font-size: 2rem;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-title {
    font-size: 1.75rem;
    margin-bottom: 12px;
  }
}
.home-hero .hero-subtitle {
  font-size: 1.4rem;
  margin-bottom: 0;
  opacity: 0.95;
  line-height: 1.7;
  color: #ffffff !important;
  font-weight: 300;
  text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 992px) {
  .home-hero .hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
  }
}
@media (max-width: 768px) {
  .home-hero .hero-subtitle {
    font-size: 1rem;
    line-height: 1.5;
    padding: 0 10px;
  }
}
@media (max-width: 480px) {
  .home-hero .hero-subtitle {
    font-size: 0.9rem;
    line-height: 1.4;
  }
}
.home-hero .booking-widget {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(140px);
  -webkit-backdrop-filter: blur(140px);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.3);
  max-width: 520px;
  margin-left: auto;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.home-hero .booking-widget:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(50px);
  -webkit-backdrop-filter: blur(50px);
}
.home-hero .booking-widget input,
.home-hero .booking-widget select,
.home-hero .booking-widget textarea {
  color: var(--color-text-primary, #333) !important;
  background-color: #fff !important;
}
.home-hero .booking-widget input::-moz-placeholder, .home-hero .booking-widget select::-moz-placeholder, .home-hero .booking-widget textarea::-moz-placeholder {
  color: #999 !important;
  opacity: 1;
}
.home-hero .booking-widget input::placeholder,
.home-hero .booking-widget select::placeholder,
.home-hero .booking-widget textarea::placeholder {
  color: #999 !important;
  opacity: 1;
}
.home-hero .booking-widget .form-control {
  color: var(--color-text-primary, #333) !important;
  background-color: #fff !important;
  border-color: #ddd !important;
}
.home-hero .booking-widget .form-control::-moz-placeholder {
  color: #999 !important;
}
.home-hero .booking-widget .form-control::placeholder {
  color: #999 !important;
}
.home-hero .booking-widget .form-control:focus {
  color: var(--color-text-primary, #333) !important;
  background-color: #fff !important;
  border-color: var(--color-primary, #EDB059) !important;
}
.home-hero .booking-widget .address-inp,
.home-hero .booking-widget .full_address {
  color: var(--color-text-primary, #333) !important;
  background-color: #fff !important;
}
.home-hero .booking-widget .address-inp::-moz-placeholder, .home-hero .booking-widget .full_address::-moz-placeholder {
  color: #999 !important;
}
.home-hero .booking-widget .address-inp::placeholder,
.home-hero .booking-widget .full_address::placeholder {
  color: #999 !important;
}
.home-hero .booking-widget .address-locations {
  background-color: #fff !important;
  border-color: #ddd !important;
}
.home-hero .booking-widget .address-locations .one-address p {
  color: var(--color-text-primary, #333) !important;
}
.home-hero .booking-widget .address-locations .one-address:hover {
  background-color: var(--color-primary, #EDB059) !important;
}
.home-hero .booking-widget .address-locations .one-address:hover p {
  color: var(--color-button-text, #fff) !important;
}
.home-hero .booking-widget .address-locations small {
  color: var(--color-text-secondary, #666) !important;
}
.home-hero .booking-widget .address-locations strong {
  color: var(--color-text-primary, #333) !important;
}
.home-hero .booking-widget label {
  color: var(--color-text-primary, #333) !important;
}
.home-hero .booking-widget .text-secondary {
  color: var(--color-text-secondary, #666) !important;
}
.home-hero .booking-widget p.h5,
.home-hero .booking-widget .h5,
.home-hero .booking-widget h5 {
  color: var(--color-text-primary, #333) !important;
}
@media (max-width: 992px) {
  .home-hero .booking-widget {
    margin: 0 auto;
    max-width: 100%;
  }
}
@media (max-width: 768px) {
  .home-hero .booking-widget {
    padding: 25px 18px;
    border-radius: 16px;
    max-width: 100%;
  }
}
@media (max-width: 480px) {
  .home-hero .booking-widget {
    padding: 20px 15px;
    border-radius: 12px;
  }
}

.why-book-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .why-book-section {
    padding: 60px 15px;
  }
}
@media (max-width: 480px) {
  .why-book-section {
    padding: 40px 10px;
  }
}
.why-book-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}
.why-book-section .container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.why-book-section .section-title {
  font-size: 3rem;
  font-weight: 800;
  text-align: center;
  margin-bottom: 80px;
  color: var(--color-text-primary, #333);
  letter-spacing: -1px;
  position: relative;
  padding-bottom: 20px;
}
.why-book-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--color-primary, #EDB059), transparent);
  border-radius: 2px;
}
@media (max-width: 768px) {
  .why-book-section .section-title {
    font-size: 2rem;
    margin-bottom: 50px;
    padding-bottom: 15px;
  }
}
@media (max-width: 480px) {
  .why-book-section .section-title {
    font-size: 1.75rem;
    margin-bottom: 40px;
    padding-bottom: 12px;
  }
}
.why-book-section .intro-block {
  text-align: center;
  margin-bottom: 100px;
  padding: 60px 40px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.why-book-section .intro-block:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .why-book-section .intro-block {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .why-book-section .intro-block {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}
.why-book-section .intro-block .intro-title {
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 30px;
  color: var(--color-text-primary, #333);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
.why-book-section .intro-block .intro-title strong {
  display: block;
  background: linear-gradient(135deg, var(--color-primary, #EDB059) 0%, #d09d50 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}
@media (max-width: 768px) {
  .why-book-section .intro-block .intro-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .why-book-section .intro-block .intro-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.why-book-section .intro-block .intro-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-secondary, #666);
  max-width: 900px;
  margin: 0 auto;
  font-weight: 300;
}
@media (max-width: 768px) {
  .why-book-section .intro-block .intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .why-book-section .intro-block .intro-text {
    font-size: 1rem;
    line-height: 1.6;
  }
}
.why-book-section .feature-section {
  margin-bottom: 100px;
  padding: 60px 50px;
  background: white;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
.why-book-section .feature-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--color-primary, #EDB059), transparent);
}
.why-book-section .feature-section:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}
@media (max-width: 768px) {
  .why-book-section .feature-section {
    padding: 30px 20px;
    margin-bottom: 60px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section {
    padding: 25px 15px;
    margin-bottom: 40px;
  }
}
.why-book-section .feature-section .feature-title {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 30px;
  color: var(--color-primary, #EDB059);
  text-align: center;
  letter-spacing: -0.5px;
  position: relative;
}
.why-book-section .feature-section .feature-title strong {
  color: var(--color-text-primary, #333);
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-title {
    font-size: 1.75rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-title {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }
}
.why-book-section .feature-section .feature-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-secondary, #666);
  margin-bottom: 50px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
  }
}
.why-book-section .feature-section .feature-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 50px;
  margin: 60px 0;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-items {
    grid-template-columns: 1fr;
    gap: 35px;
    margin: 40px 0;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-items {
    gap: 30px;
    margin: 30px 0;
  }
}
.why-book-section .feature-section .feature-item {
  text-align: center;
  padding: 30px 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  position: relative;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-item {
    padding: 25px 15px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-item {
    padding: 20px 12px;
  }
}
.why-book-section .feature-section .feature-item:hover {
  background: rgba(237, 176, 89, 0.05);
  transform: translateY(-5px);
}
.why-book-section .feature-section .feature-item .feature-icon {
  font-size: 4rem;
  color: var(--color-primary, #EDB059);
  margin-bottom: 25px;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-item .feature-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-item .feature-icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }
}
.why-book-section .feature-section .feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}
.why-book-section .feature-section .feature-item .feature-item-title {
  font-size: 1.2rem;
  line-height: 1.6;
  color: var(--color-text-primary, #333);
  font-weight: 600;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-item .feature-item-title {
    font-size: 1.1rem;
    line-height: 1.5;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-item .feature-item-title {
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 10px;
  }
}
.why-book-section .feature-section .feature-item .feature-description {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--color-text-secondary, #666);
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-item .feature-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-item .feature-description {
    font-size: 0.9rem;
    line-height: 1.5;
  }
}
.why-book-section .feature-section .feature-note {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-secondary, #666);
  text-align: center;
  padding-top: 50px;
  margin-top: 50px;
  border-top: 2px solid var(--color-border, #e0e0e0);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-style: italic;
  font-weight: 300;
}
@media (max-width: 768px) {
  .why-book-section .feature-section .feature-note {
    font-size: 1.1rem;
    line-height: 1.7;
    padding-top: 40px;
    margin-top: 40px;
  }
}
@media (max-width: 480px) {
  .why-book-section .feature-section .feature-note {
    font-size: 1rem;
    line-height: 1.6;
    padding-top: 30px;
    margin-top: 30px;
  }
}
.why-book-section .benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  margin: 100px 0;
}
@media (max-width: 768px) {
  .why-book-section .benefits-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 60px 0;
  }
}
@media (max-width: 480px) {
  .why-book-section .benefits-grid {
    gap: 25px;
    margin: 40px 0;
  }
}
.why-book-section .benefit-card {
  background: white;
  padding: 60px 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid rgba(0, 0, 0, 0.05);
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .why-book-section .benefit-card {
    padding: 40px 30px;
  }
}
@media (max-width: 480px) {
  .why-book-section .benefit-card {
    padding: 30px 20px;
    border-radius: 16px;
  }
}
.why-book-section .benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary, #EDB059), #d09d50);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}
.why-book-section .benefit-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}
.why-book-section .benefit-card:hover::before {
  transform: scaleX(1);
}
.why-book-section .benefit-card:hover .benefit-icon {
  transform: scale(1.1) rotate(5deg);
}
.why-book-section .benefit-card .benefit-icon {
  font-size: 5rem;
  color: var(--color-primary, #EDB059);
  margin-bottom: 30px;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 768px) {
  .why-book-section .benefit-card .benefit-icon {
    font-size: 4rem;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .why-book-section .benefit-card .benefit-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
  }
}
.why-book-section .benefit-card .benefit-title {
  font-size: 1.8rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: var(--color-text-primary, #333);
  line-height: 1.3;
  letter-spacing: -0.5px;
}
@media (max-width: 768px) {
  .why-book-section .benefit-card .benefit-title {
    font-size: 1.5rem;
    margin-bottom: 20px;
  }
}
@media (max-width: 480px) {
  .why-book-section .benefit-card .benefit-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
  }
}
.why-book-section .benefit-card .benefit-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-secondary, #666);
  font-weight: 300;
}
@media (max-width: 768px) {
  .why-book-section .benefit-card .benefit-description {
    font-size: 1rem;
    line-height: 1.7;
  }
}
@media (max-width: 480px) {
  .why-book-section .benefit-card .benefit-description {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}
.why-book-section .info-section {
  background: transparent;
  padding: 0;
  margin-top: 100px;
}
@media (max-width: 768px) {
  .why-book-section .info-section {
    margin-top: 60px;
  }
}
@media (max-width: 480px) {
  .why-book-section .info-section {
    margin-top: 40px;
  }
}
.why-book-section .info-section .info-text {
  font-size: 1.25rem;
  line-height: 1.9;
  color: var(--color-text-secondary, #666);
  margin-bottom: 30px;
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 300;
}
@media (max-width: 768px) {
  .why-book-section .info-section .info-text {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .why-book-section .info-section .info-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 20px;
  }
}
.why-book-section .info-section .info-text:last-child {
  margin-bottom: 0;
}
.why-book-section .info-section .info-text strong {
  color: var(--color-text-primary, #333);
  font-weight: 600;
}

.reviews-section {
  padding: 120px 20px;
  background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
  position: relative;
  overflow: hidden;
}
.reviews-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 20% 30%, rgba(237, 176, 89, 0.05) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(237, 176, 89, 0.03) 0%, transparent 50%);
  pointer-events: none;
}
@media (max-width: 768px) {
  .reviews-section {
    padding: 80px 15px;
  }
}
@media (max-width: 480px) {
  .reviews-section {
    padding: 60px 10px;
  }
}
.reviews-section .container {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.reviews-section .section-title {
  font-size: 3.5rem;
  font-weight: 900;
  margin-bottom: 50px;
  color: var(--color-text-primary, #333);
  letter-spacing: -2px;
  position: relative;
  padding-bottom: 30px;
  background: linear-gradient(135deg, var(--color-text-primary, #333) 0%, var(--color-primary, #EDB059) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 0.8s ease-out;
}
.reviews-section .section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 5px;
  background: linear-gradient(90deg, transparent, var(--color-primary, #EDB059), transparent);
  border-radius: 3px;
  box-shadow: 0 2px 10px rgba(237, 176, 89, 0.4);
}
@media (max-width: 768px) {
  .reviews-section .section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    padding-bottom: 25px;
  }
}
@media (max-width: 480px) {
  .reviews-section .section-title {
    font-size: 2rem;
    margin-bottom: 30px;
    padding-bottom: 20px;
  }
}
.reviews-section .badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin-bottom: 70px;
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}
@media (max-width: 768px) {
  .reviews-section .badges {
    gap: 30px;
    margin-bottom: 50px;
  }
}
@media (max-width: 480px) {
  .reviews-section .badges {
    gap: 20px;
    margin-bottom: 40px;
  }
}
.reviews-section .badges img {
  max-height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.15));
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.8);
  padding: 15px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
  .reviews-section .badges img {
    max-height: 130px;
    padding: 12px;
  }
}
@media (max-width: 480px) {
  .reviews-section .badges img {
    max-height: 110px;
    padding: 10px;
  }
}
.reviews-section .badges img:hover {
  transform: translateY(-10px) scale(1.08) rotate(2deg);
  filter: drop-shadow(0 12px 24px rgba(237, 176, 89, 0.3));
  box-shadow: 0 12px 40px rgba(237, 176, 89, 0.2);
  border-color: rgba(237, 176, 89, 0.5);
}
.reviews-section .reviews-container {
  margin-top: 60px;
  position: relative;
  padding: 20px 0;
}
.reviews-section .reviews-container .romw-swiper-container {
  position: relative;
  padding: 40px 60px 80px;
}
@media (max-width: 768px) {
  .reviews-section .reviews-container .romw-swiper-container {
    padding: 30px 50px 60px;
  }
}
@media (max-width: 480px) {
  .reviews-section .reviews-container .romw-swiper-container {
    padding: 20px 40px 50px;
  }
}
.reviews-section .reviews-container .swiper-container {
  padding: 0;
  overflow: visible;
}
.reviews-section .reviews-container .romw.swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
  padding: 0;
  background-color: transparent;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container {
  background: #ffffff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.05);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--color-primary, #EDB059), var(--color-secondary, #d09d50));
  opacity: 0;
  transition: opacity 0.3s ease;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
  border-color: rgba(237, 176, 89, 0.3);
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container:hover::before {
  opacity: 1;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-author-photo img {
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-author-stars .romw-author {
  color: var(--color-primary, #EDB059);
  font-weight: 600;
  font-size: 18px;
  display: block;
  margin-bottom: 8px;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-author-stars .romw-stars .romw-fa-star {
  color: #ff5d48;
  filter: drop-shadow(0 2px 4px rgba(255, 93, 72, 0.3));
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-date {
  color: #666;
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-text {
  color: #444;
  line-height: 1.7;
  font-size: 15px;
  margin-top: 20px;
  flex: 1;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-text .scroll,
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-text .scrollDiv,
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-text .scrollContent {
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
  width: 100% !important;
}
.reviews-section .reviews-container .romw.swiper-slide .romw-container .romw-text .scrollbar {
  display: none !important;
}
.reviews-section .reviews-container .romw-swiper-container .swiper-button-next,
.reviews-section .reviews-container .romw-swiper-container .swiper-button-prev {
  display: none !important;
}
.reviews-section .reviews-container .swiper-pagination {
  bottom: 20px !important;
  position: relative !important;
  margin-top: 30px;
  text-align: center;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
}
.reviews-section .reviews-container .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(0, 0, 0, 0.2);
  opacity: 1;
  transition: all 0.3s ease;
  margin: 0 6px;
}
.reviews-section .reviews-container .swiper-pagination .swiper-pagination-bullet:hover {
  transform: scale(1.3);
  background: rgba(237, 176, 89, 0.6);
}
.reviews-section .reviews-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active, .reviews-section .reviews-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active-main {
  background: var(--color-primary, #EDB059) !important;
  width: 32px;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(237, 176, 89, 0.4);
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
html {
  scroll-behavior: smooth;
}

::-moz-selection {
  background: var(--color-primary, #EDB059);
  color: white;
}

::selection {
  background: var(--color-primary, #EDB059);
  color: white;
}

::-moz-selection {
  background: var(--color-primary, #EDB059);
  color: white;
}
