/* ============================================
   HERO GOLDEN FRAME ANIMATION
   ============================================ */
.hero-golden-frame {
  padding: 70px 50px 20px 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  z-index: 5;
}

.hero-frame-content {
  position: relative;
  z-index: 2;
}

.frame-side {
  position: absolute;
  background: #ffd600;
  z-index: 1;
  border-radius: 2px;
}

/* Top */
.frame-top {
  top: 0;
  left: 0;
  height: 20px;
  width: 0;
  animation: frame-top-grow 0.8s 0.1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
@keyframes frame-top-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Right */
.frame-right {
  top: 0;
  right: 0;
  width: 20px;
  height: 0;
  animation: frame-right-grow 0.8s 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
@keyframes frame-right-grow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* Bottom */
.frame-bottom {
  bottom: 0;
  left: 0;
  height: 20px;
  width: 0;
  animation: frame-bottom-grow 0.8s 0.7s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
@keyframes frame-bottom-grow {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

/* Left */
.frame-left {
  top: 0;
  left: 0;
  width: 20px;
  height: 0;
  animation: frame-left-grow 0.8s 0.1s cubic-bezier(0.77, 0, 0.18, 1) forwards;
}
@keyframes frame-left-grow {
  from {
    height: 0;
  }
  to {
    height: 100%;
  }
}

/* Responsive for frame */
@media (max-width: 600px) {
  .hero-golden-frame {
    padding: 30px;
    min-width: 0;
    min-height: 0;
  }
  .frame-side {
    height: 4px;
    width: 4px;
  }
}
/* Landing Page Styles */
body {
  background: #000;
  /* Background đen để tránh nháy trắng khi load */
  color: var(--text-color);
  line-height: var(--line-height-base);
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: visible;
  margin-top: 0;
  top: 0;
  background: #000;
  /* Màu nền đen để tránh nháy trắng */
  padding-bottom: 100px;
  /* Tạo khoảng trống cho form container */
}

.hero-slider {
  position: relative;
  width: 100%;
  height: 100%;
  background: #000;
  /* Màu nền đen để tránh nháy trắng */
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  opacity: 0;
  /* Bỏ transition để ảnh chuyển ngay lập tức */
  transition: none;
  visibility: hidden;
  z-index: 0;
}

.hero-slide.active {
  opacity: 1;
  z-index: 1;
  visibility: visible;
}

.hero-slide-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #000;
  /* Màu nền đen để tránh nháy trắng */
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-slide-image {
  transform: translateY(0);
}

.hero-slide-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #000;
  /* Ảnh sẽ hiển thị ngay với slide active */
}

/* Slide active luôn hiển thị ảnh */
.hero-slide.active .hero-slide-image img {
  opacity: 1;
}

/* Slide không active ẩn ảnh */
.hero-slide:not(.active) .hero-slide-image img {
  opacity: 0;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.3),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 2;
  transform: translateY(-100%);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.hero-slide.active .hero-slide-overlay {
  transform: translateY(0);
}

.hero-slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  z-index: 3;
  width: 90%;
  max-width: 800px;
  padding: 2rem;
  opacity: 0;
  /* Ẩn content mặc định */
  transition: opacity 1.5s ease-in-out, transform 1.5s ease-in-out;
  transform: translate(-50%, -50%) translateY(30px);
  /* Bắt đầu từ dưới một chút */
}

/* Content hiện lên từ từ khi slide active */
.hero-slide.active .hero-slide-content {
  opacity: 1;
  transform: translate(-50%, -50%) translateY(0);
  /* Fade in và di chuyển lên */
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 7rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.hero-btn-icon {
  margin-left: 0.5rem;
  font-size: 1.2em;
  vertical-align: middle;
}

/* Slider Navigation Buttons */
/* Slider Controls Container */
.slider-controls {
  position: absolute;
  top: 83%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  z-index: 10;
}

.slider-nav {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.5);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
  flex-shrink: 0;
}

.slider-nav:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.8);
  transform: scale(1.1);
}

.slider-nav i {
  font-size: 1.7rem;
}

/* Slider Dots */
.slider-dots {
  display: flex;
  gap: 1rem;
  flex-shrink: 0;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid rgba(255, 255, 255, 0.8);
}

.dot.active,
.dot:hover {
  background: #fff;
  transform: scale(1.2);
}

/* Search Tour Form Wrapper - Floating at bottom of hero section */
.search-tour-form-wrapper {
  position: absolute;
  bottom: -12%;
  left: 0;
  right: 0;
  z-index: 10;
  width: 100%;
}

.search-tour-title {
  position: absolute;
  top: -2rem;
  left: 0;
  background: #fff;
  color: #757575;
  font-weight: 700;
  font-size: var(--font-size-base);
  padding: 0.4rem 1rem;
  width: auto;
  display: inline-block;
  z-index: 20;
  letter-spacing: 0.5px;
}

.search-tour-form-container {
  position: relative;
  background: #fff;
  /* border-radius: var(--border-radius-lg); */
  padding: 1.5rem 1rem;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15), 0 5px 15px rgba(0, 0, 0, 0.1);
  margin: 0 auto;
  max-width: 1200px;
}

.search-tour-form {
  width: 100%;
}

.search-form-row {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr auto;
  gap: 1rem;
  align-items: end;
}

.search-form-field {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.search-field-label {
  font-size: var(--font-size-sm);
  font-weight: 600;
  color: #f15d30;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  min-height: 1.2rem;
  line-height: 1.2;
  display: flex;
  align-items: flex-end;
}

.search-field-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.search-field-icon {
  position: absolute;
  left: 1rem;
  color: #999;
  font-size: var(--font-size-base);
  z-index: 1;
  pointer-events: none;
}

.search-input {
  width: 100%;
  padding: 0.875rem 1rem 0.875rem 0.7rem;
  border: 1px solid #ddd;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-family: var(--font-family);
  color: var(--text-color);
  background: #fff;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  height: 48px;
  box-sizing: border-box;
  line-height: 1.5;
}

.search-input:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(2, 75, 210, 0.1);
}

.search-input::placeholder {
  color: #999;
}

.search-select {
  appearance: none;
  cursor: pointer;
  padding-left: 1rem;
  padding-right: 2.5rem;
  height: 48px;
}

.search-select-icon {
  left: auto !important;
  right: 1rem !important;
  pointer-events: none;
}

.search-select option {
  padding: 0.5rem;
}

.search-submit-btn {
  background: #f15d30;
  color: #fff;
  border: none;
  padding: 0.875rem 2.5rem;
  border-radius: var(--border-radius-md);
  font-size: var(--font-size-sm);
  font-weight: 600;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  height: 48px;
  align-self: end;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.search-submit-btn:hover {
  background: #d63d0f;
  transform: translateY(-2px);
}

.search-submit-btn:active {
  transform: translateY(0);
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about-section {
  background: var(--bg-color);
  padding: 220px 0 50px 0;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-title {
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  font-weight: 600;
  text-align: left;
  color: var(--text-color);
  margin-bottom: 2rem;
  position: relative;
  display: inline-block;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 120px;
  height: 3px;
  background: #024bd2;
}

.about-text p {
  color: var(--text-color);
  margin-bottom: 1rem;
  line-height: var(--line-height-md);
}

.about-features {
  list-style: none;
  padding: 0;
  margin-top: 1.5rem;
}

.about-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  color: var(--text-color);
}

.about-features i {
  color: var(--primary-color);
  font-size: 1.2rem;
}

.about-image img {
  width: 100%;
  height: 400px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.testimonials-section {
  background: #e9e9e9;
  padding: 2rem 0 4rem 0;
  /* Tạo khoảng trống cho form container floating */
}

.testimonials-slider-wrapper {
  position: relative;
  margin-top: 2rem;
}

.testimonials-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.testimonials-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  width: max-content;
}

.testimonial-card {
  flex-shrink: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.testimonials-nav-btn {
  position: absolute;
  /* Căn giữa theo speech-bubble: min-height 280px / 2 = 140px */
  top: calc(280px / 2);
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.testimonials-nav-btn:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 75, 210, 0.3);
}

.testimonials-prev-btn {
  left: -25px;
}

.testimonials-next-btn {
  right: -25px;
}

.testimonial-speech-bubble {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 2rem;
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  width: 100%;
  margin-bottom: 1.5rem;
  min-height: 280px;
  transition: min-height 0.3s ease;
}

.testimonial-speech-bubble::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 15%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 15px solid transparent;
  border-right: 15px solid transparent;
  border-top: 15px solid #fff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.quote-icon {
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  font-size: 6rem;
  color: rgba(0, 0, 0, 0.08);
  line-height: 1;
  z-index: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.quote-icon i {
  font-size: 3rem;
  color: #bdbdbd;
}

.testimonial-text {
  font-size: var(--font-size-base);
  color: var(--text-color);
  line-height: var(--line-height-md);
  font-style: italic;
  position: relative;
  z-index: 1;
  margin: 2rem 0 0;
}

.testimonial-text .text-short {
  display: inline;
}

.testimonial-text .text-full {
  display: none;
}

@media (max-width: 480px) {
  .testimonial-text .text-full {
    display: none !important;
  }
  .testimonial-text .text-short {
    display: inline !important;
  }
}

.testimonial-text .read-more,
.testimonial-text .read-less {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-style: normal;
  cursor: pointer;
  transition: color 0.2s ease;
}

.testimonial-text .read-more:hover,
.testimonial-text .read-less:hover {
  text-decoration: underline;
  color: #0239a8;
}

.testimonial-user {
  margin-left: 30px;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-user .user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.testimonial-user .user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.testimonial-user .user-info {
  display: flex;
  flex-direction: column;
}

.testimonial-user .user-name {
  font-weight: 700;
  color: var(--text-color);
  font-size: var(--font-size-sm);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.testimonial-user .review-date {
  font-size: var(--font-size-xs);
  color: var(--text-color);
  text-transform: uppercase;
}

/* Google Reviews Section */
.google-reviews-wrapper {
  margin-top: 3rem;
  display: flex;
  gap: 3rem;
  align-items: flex-start;
}

.google-reviews-summary {
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 120px;
  flex-shrink: 0;
  width: 250px;
}

.google-rating-label {
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: var(--text-color);
  text-transform: uppercase;
}

.google-stars-large {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-stars-large i {
  font-size: 1.8rem;
  color: #fbbc04;
}

.google-reviews-count {
  font-size: var(--font-size-sm);
  color: var(--text-color);
  margin-bottom: 1rem;
}

.google-logo-large {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-logo-large img {
  width: 150px;
  height: auto;
  object-fit: contain;
}

.google-reviews-slider-wrapper {
  position: relative;
  flex: 1;
  min-width: 0;
}

.google-reviews-slider-container {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.google-reviews-grid {
  display: flex;
  gap: 2rem;
  transition: transform 0.5s ease;
  width: max-content;
}

.google-review-card {
  flex-shrink: 0;
  min-width: 0;
  background: #fff;
  border-radius: var(--border-radius-lg);
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.google-review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.google-review-user {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.google-user-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-user-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.google-user-info {
  display: flex;
  flex-direction: column;
}

.google-user-name {
  font-weight: 600;
  color: var(--text-color);
  font-size: var(--font-size-sm);
  margin-bottom: 0.25rem;
}

.google-review-date {
  font-size: var(--font-size-xs);
  color: var(--text-color);
}

.google-logo-small {
  display: flex;
  align-items: center;
  justify-content: center;
}

.google-logo-small img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.google-review-rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.google-stars-small {
  display: flex;
  gap: 0.2rem;
}

.google-stars-small i {
  font-size: 0.9rem;
  color: #fbbc04;
}

.google-verified {
  color: #4285f4;
  font-size: 1rem;
}

.google-review-text {
  font-size: var(--font-size-sm);
  color: var(--text-color);
  line-height: var(--line-height-md);
  margin: 0;
}

.google-review-text .text-short {
  display: inline;
}

.google-review-text .text-full {
  display: none;
}

.google-review-text .read-more,
.google-review-text .read-less {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s ease;
}

.google-review-text .read-more:hover,
.google-review-text .read-less:hover {
  text-decoration: underline;
  color: #0239a8;
}

.google-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #fff;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  font-size: 1.3rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.google-nav-btn:hover {
  background: var(--primary-color);
  color: #fff;
  box-shadow: 0 4px 15px rgba(2, 75, 210, 0.3);
}

.google-prev-btn {
  left: -22px;
}

.google-next-btn {
  right: -22px;
}

/* ============================================
   WHY US SECTION
   ============================================ */
.why-us-section {
  background: #fff;
  padding: 3rem 0;
}

.why-us-title {
  font-size: var(--font-size-2xl);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  color: var(--text-color);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
  width: 100%;
}

.why-us-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #024bd2;
}

.why-us-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin-top: 2rem;
}

.why-us-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1rem;
  padding: 0.7rem;
  transition: transform 0.3s ease;
}

.why-us-card:hover {
  transform: translateY(-5px);
}

.why-us-icon {
  font-size: 2rem;
  color: var(--text-color);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border: 2px solid var(--text-color);
  border-radius: 50%;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.why-us-card:hover .why-us-icon {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: #fff;
  transform: scale(1.1);
}

.why-us-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.why-us-card-title {
  font-size: var(--font-size-lg);
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 0.5rem;
  text-align: left;
}

.why-us-card-subtitle {
  font-size: var(--font-size-sm);
  color: var(--text-color);
  text-align: left;
  line-height: var(--line-height-sm);
}

/* ============================================
   TOURS SECTION
   ============================================ */
.tours-section {
  background: #e9e9e9;
  padding: 2rem 0 5rem 0;
}

.tours-destinations-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.destination-card {
  position: relative;
  display: block;
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.destination-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.1);
}

.destination-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.1),
    rgba(0, 0, 0, 0.5)
  );
  z-index: 1;
  transition: background 0.3s ease;
}

.destination-card:hover .destination-overlay {
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2),
    rgba(0, 0, 0, 0.6)
  );
}

.destination-name {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: var(--font-size-xl);
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  z-index: 2;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  transition: transform 0.3s ease;
}

.destination-card:hover .destination-name {
  transform: translateY(-5px);
}

/* ============================================
   BE INSPIRED SECTION
   ============================================ */
.be-inspired-section {
  position: relative;
  padding: 6rem 0;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.be-inspired-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.be-inspired-image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.be-inspired-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.be-inspired-content {
  position: relative;
  z-index: 2;
  width: 1200px;
  color: #fff;
}

.be-inspired-label {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.be-inspired-title {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.be-inspired-description {
  font-size: var(--font-size-lg);
  line-height: var(--line-height-md);
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.be-inspired-btn {
  background: #024bd2 !important;
  border-color: #024bd2 !important;
  color: #fff !important;
  font-size: var(--font-size-sm);
  padding: 1rem 2.5rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ============================================
   TOUR SEARCH BOX
   ============================================ */
.tour-search-box {
  width: 100%;
  max-width: 500px;
  margin: 2rem auto 1rem auto;
  position: relative;
}
.tour-search-input {
  width: 100%;
  padding: 0.85rem 3rem 0.85rem 1.2rem;
  border: 1.5px solid #ddd;
  border-radius: 2rem;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
  color: #222;
  transition: border-color 0.3s;
  box-sizing: border-box;
  outline: none;
}
.tour-search-input:focus {
  border-color: #024bd2;
  box-shadow: 0 0 0 2px rgba(2, 75, 210, 0.08);
}
.tour-search-btn {
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #757575;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: color 0.2s;
}
.tour-search-btn:hover {
  color: #024bd2;
}

/* ============================================
   TESTIMONIALS SUMMARY SECTION
   ============================================ */
.testimonials-summary-section {
  background: #fff;
  padding: 4rem 0;
}

.testimonials-summary-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonials-summary-left {
  position: relative;
}

.testimonials-summary-label {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--primary-color);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 1rem;
}

.testimonials-summary-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-color);
  margin-bottom: 2rem;
  line-height: 1.2;
}

.testimonials-summary-logo {
  position: absolute;
  top: 3rem;
  left: -1rem;
  width: 120px;
  height: 120px;
  opacity: 0.2;
  z-index: 0;
  pointer-events: none;
}

.testimonials-summary-logo svg {
  width: 100%;
  height: 100%;
}

.testimonials-summary-text {
  font-size: var(--font-size-base);
  line-height: var(--line-height-md);
  color: var(--text-color);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.testimonials-summary-link {
  color: var(--primary-color);
  text-decoration: none;
  font-size: var(--font-size-sm);
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

.testimonials-summary-link:hover {
  color: var(--primary-color-dark);
  text-decoration: underline;
}

.testimonials-summary-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.testimonials-rating-number {
  font-size: 5rem;
  font-weight: 700;
  color: #888;
  line-height: 1;
  margin-bottom: 1rem;
}

.testimonials-rating-stars {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
  font-size: 1.5rem;
  color: #ffb800;
}

.testimonials-rating-stars i {
  display: block;
}

.testimonials-reviews-count {
  font-size: var(--font-size-base);
  color: var(--text-color);
  font-weight: 500;
  margin: 0;
}

/* ============================================
   OUR BRANDS SECTION
   ============================================ */
.our-brands-section {
  background: #e9e9e9;
  padding: 2rem 0 4rem 0;
}

.brands-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  align-items: center;
  justify-items: center;
  margin-top: 3rem;
}

.brand-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem;
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  width: 100%;
  max-width: 280px;
}

.brand-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.brand-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 120px;
}

.brand-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-name {
  font-size: var(--font-size-base);
  font-weight: 500;
  color: var(--text-color);
  text-align: center;
}

/* ============================================
   THANH LIÊN HỆ NHANH (dưới Tour Search Box)
   Lưu ý: theo yêu cầu, CSS đặt tại block OUR BRANDS SECTION
   ============================================ */
.contact-info-bar {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 240px;
  flex: 1;
}

.contact-info-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5c5c5c;
}

.contact-info-icon i {
  font-size: 2.5rem;
  line-height: 1;
}

.contact-info-text {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.contact-info-title {
  font-size: var(--font-size-base);
  font-weight: 600;
  color: var(--text-color);
}

.contact-info-value {
  font-size: var(--font-size-sm);
  color: var(--text-color);
  opacity: 0.8;
}

/* ============================================
   COMMON STYLES
   ============================================ */
.section-title {
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 1rem;
  color: var(--text-color);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #024bd2;
}

/* Section Titles - Specific Classes */
.testimonials-title,
.tours-title,
.our-brands-title,
.contact-title {
  font-size: var(--font-size-2xl);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  margin: 1rem auto;
  color: var(--text-color);
  position: relative;
  display: block;
  width: 100%;
}

.testimonials-title::after,
.tours-title::after,
.our-brands-title::after,
.contact-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 3px;
  background: #024bd2;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.7rem 2rem;
  text-decoration: none;
  border-radius: var(--border-radius-md);
  font-weight: 500;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  cursor: pointer;
  font-size: var(--font-size-base);
}

.btn-primary {
  font-size: 1rem;
  /* background: var(--primary-color); */
  color: #fff;
}

.btn-primary:hover {
  /* background: #0239a8; */
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 75, 210, 0.3);
}

.btn-submit {
  background: var(--primary-color);
  color: #fff;
}

.btn-submit:hover {
  background: #0239a8;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(2, 75, 210, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border-color: var(--primary-color);
  padding: 0.5rem 1.5rem;
  font-size: var(--font-size-sm);
}

.btn-outline:hover {
  background: var(--primary-color);
  color: #fff;
}

/* Animations */
@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);
  }
}

/* ============================================
   BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(2, 75, 210, 0.3);
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: #0239a8;
  transform: translateY(-5px);
  box-shadow: 0 6px 20px rgba(2, 75, 210, 0.4);
}

.back-to-top i {
  font-size: 1.5rem;
}
