/* ========================================
   HERO SECTION
   ======================================== */

.hero {
  position: relative;
  width: 100%;
  aspect-ratio: 4/7;
  top: 50px;
  max-height:650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}

/* VIDEO BACKGROUND HERO */
.hero.with-video-bg {
    position: relative;
    width: 90%;
    aspect-ratio: 4/7;
    top: 50px;
    border-radius:50px;
    margin:0 auto;
    max-height: 650px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 80px 20px 60px;
    background: #03834a; /* Fallback while video loads */
}

/* Video Element */
.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

/* Optional: Green overlay for text readability */
.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(3, 131, 74, 0.6) 0%, 
        rgba(3, 131, 74, 0.4) 100%
    );
    z-index: 2;
}

/* Content stays on top */
.hero-content {
    position: relative;
    z-index: 3;
}


/* Tablet & Desktop */
@media (min-width: 768px) {
    .hero.with-video-bg {
        padding: 100px 40px 80px;
    }
}

@media (min-width: 992px) {
    .hero.with-video-bg {
        padding: 120px 60px 80px;
    }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  width: 100%;
  text-align: center;
}

.hero-text {
  animation: fadeInUp 1s ease-out;
}

/* Hero Title */
.hero-title {
  font-size: 36px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 20px;
  width: 100%;
  letter-spacing: -0.5px;
}

.hero-title .highlight {
  color: #fec93b;
  display: inline-block;
  position: relative;
}

/* Optional: Animated underline for highlight */
.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 4px;
  background: #fec93b;
  border-radius: 2px;
  animation: slideIn 0.8s ease-out 0.5s both;
}

/* Hero Subtitle */
.hero-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Hero CTA Button */
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #03834A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 12px 20px;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 10px 30px rgba(249, 115, 22, 0.3);
  border: none;
  cursor: pointer;
  letter-spacing: 0.3px;
}

.hero-cta:hover {
  background-color: #EA580C;
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(249, 115, 22, 0.4);
  color: #ffffff;
}

.hero-cta:active {
  transform: translateY(-1px);
}

.hero-cta svg {
  transition: transform 0.3s ease;
}

.hero-cta:hover svg {
  transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: bounce 2s infinite;
  cursor: pointer;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideIn {
  from {
    width: 0;
  }
  to {
    width: 100%;
  }
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
  .hero {
    padding: 100px 40px 80px;
  }

  .hero-title {
    font-size: 50px;
    margin-bottom: 24px;
  }

  .hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
  }

  .hero-cta {
    font-size: 16px;
    padding: 16px 32px;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 992px) {
  .hero {
    padding: 120px 60px 80px;
  }

  .hero-title {
    font-size: 68px;
    margin-bottom: 28px;
  }

  .hero-subtitle {
    font-size: 22px;
    margin-bottom: 45px;
    max-width: 700px;
  }

  .hero-cta {
    font-size: 17px;
    padding: 18px 35px;
  }
}

/* ========================================
   LARGE DESKTOP
   ======================================== */

@media (min-width: 1440px) {
  .hero-title {
    font-size: 70px;
  }

  .hero-subtitle {
    font-size: 22px;
    max-width: 800px;
  }
}
.hero.with-bg-image {
  width: 90%;
  margin: 0 auto;
  border-radius: 20px;
  background: url('/assets/img/image1.png') center/cover no-repeat fixed;
}


/* ========================================
   ADVENTURE INTRO SECTION
   ======================================== */

.adventure-intro {

  margin: 80px 20px 40px;
  background-color: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-title {
  font-size: 32px;
  font-weight: 800;
  color: #03834A;
  margin-bottom: 12px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.section-subtitle {
  font-size: 16px;
  font-weight: 400;
  color: #6B7280;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
  .adventure-intro {
    padding: 80px 40px 50px;
  }

  .section-title {
    font-size: 40px;
    margin-bottom: 16px;
  }

  .section-subtitle {
    font-size: 18px;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 992px) {
  .adventure-intro {
    padding: 100px 60px 0px;
  }

  .section-title {
    font-size: 48px;
    margin-bottom: 18px;
  }

  .section-subtitle {
    font-size: 20px;
    max-width: 700px;
  }
}

/* ========================================
   TRIPS SECTION - FINAL VERSION
   No Carousel | 3 Trips | Grid Layout
   ======================================== */

.trips-section {
    padding: 80px 20px;
    background: #FFFFFF;
    margin-top: 50px;
    overflow: hidden;
}

.trips-section .container {
    max-width: 1280px;
    margin: 0 auto;
}

/* ========================================
   SECTION HEADER
   ======================================== */

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #fec93b;
    margin-bottom: 12px;
}

.section-subtitle {
    font-size: 18px;
    color: #6B7280;
    font-weight: 400;
}

/* ========================================
   HIDE ALL CAROUSEL WRAPPERS
   ======================================== */

.mobile-carousel-wrapper {
    display: none !important;
}

.desktop-grid-wrapper {
    display: block !important;
}

/* Hide all carousel controls */
.carousel-btn,
.carousel-dots,
.prev-btn,
.next-btn,
.indicator,
.dot {
    display: none !important;
}

/* ========================================
   TRIPS GRID - RESPONSIVE
   ======================================== */

.trips-grid-desktop {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* TABLET: 2 columns */
@media (min-width: 768px) {
    .trips-grid-desktop {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

/* DESKTOP: 3 columns */
@media (min-width: 992px) {
    .trips-grid-desktop {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
}

@media (min-width: 1200px) {
    .trips-grid-desktop {
        gap: 35px;
    }
}

/* ========================================
   TRIP CARD - MAIN STYLES
   ======================================== */

.trip-card {
    background: #FFFFFF;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.trip-card:hover {
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-4px);
}

/* ========================================
   TRIP IMAGE
   ======================================== */

.trip-image-wrapper,
.trip-image {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.trip-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.trip-card:hover .trip-image img {
    transform: scale(1.1);
}

/* ========================================
   FEATURED BADGE
   ======================================== */

.trip-badge,
.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #F59E0B 0%, #F97316 100%);
    color: #FFFFFF;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.4);
    z-index: 1;
}

/* ========================================
   TRIP CONTENT
   ======================================== */

.trip-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.trip-title {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ========================================
   TRIP META (DATE & DURATION)
   ======================================== */

.trip-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.trip-duration,
.meta-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #6B7280;
    font-weight: 500;
}

.trip-duration svg,
.meta-item svg,
.meta-item i {
    color: #16A34A;
    flex-shrink: 0;
}

/* Trip Description */
.trip-description {
    font-size: 14px;
    color: #6B7280;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* ========================================
   TRIP FOOTER (PRICE & BUTTON)
   ======================================== */

.trip-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid #E5E7EB;
    margin-top: auto;
    gap: 16px;
}

.trip-price {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.price-label {
    font-size: 12px;
    color: #9CA3AF;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.price-amount {
    font-size: 24px;
    font-weight: 800;
    color: #16A34A;
    line-height: 1;
}

.price-per {
    font-size: 12px;
    color: #9CA3AF;
}

/* ========================================
   TRIP BUTTONS
   ======================================== */

.trip-btn,
.btn-view-details {
    background: #16A34A;
    color: #FFFFFF;
    padding: 12px 24px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
    border: none;
    cursor: pointer;
}

.trip-btn:hover,
.btn-view-details:hover {
    background: #15803D;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3);
    color: #FFFFFF;
}

.trip-btn i,
.btn-view-details i {
    transition: transform 0.3s ease;
}

.trip-btn:hover i,
.btn-view-details:hover i {
    transform: translateX(3px);
}

/* ========================================
   SECTION FOOTER
   ======================================== */

.section-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #16A34A;
    border: 2px solid #16A34A;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.view-all-btn:hover {
    background: #16A34A;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(22, 163, 74, 0.3);
}

.view-all-btn svg {
    transition: transform 0.3s ease;
}

.view-all-btn:hover svg {
    transform: translateX(4px);
}

/* ========================================
   LOADING & ERROR STATES
   ======================================== */

.loading,
.no-trips,
.error-message {
    text-align: center;
    padding: 60px 20px;
    font-size: 16px;
    color: #6B7280;
}

.error-message {
    color: #DC2626;
}

/* ========================================
   ANIMATIONS
   ======================================== */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.trip-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.trip-card:nth-child(1) { animation-delay: 0.1s; }
.trip-card:nth-child(2) { animation-delay: 0.2s; }
.trip-card:nth-child(3) { animation-delay: 0.3s; }

/* ========================================
   RESPONSIVE ADJUSTMENTS - MOBILE
   ======================================== */

@media (max-width: 767px) {
    .trips-section {
        padding: 60px 20px;
        margin-top: 30px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .trips-grid-desktop {
        gap: 20px;
    }

    .trip-image,
    .trip-image-wrapper {
        height: 200px;
    }

    .trip-content {
        padding: 20px;
    }

    .trip-title {
        font-size: 18px;
    }

    .trip-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .trip-btn,
    .btn-view-details {
        width: 100%;
        justify-content: center;
    }

    .section-footer {
        margin-top: 40px;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS - TABLET
   ======================================== */

@media (min-width: 768px) {
    .trips-section {
        padding: 80px 40px;
    }

    .section-title {
        font-size: 48px;
    }

    .section-subtitle {
        font-size: 20px;
    }

    .trip-image,
    .trip-image-wrapper {
        height: 220px;
    }
}

/* ========================================
   RESPONSIVE ADJUSTMENTS - DESKTOP
   ======================================== */

@media (min-width: 992px) {
    .trips-section {
        padding: 100px 60px;
        margin-top: 60px;
    }

    .section-header {
        margin-bottom: 60px;
    }

    .trip-image,
    .trip-image-wrapper {
        height: 240px;
    }

    .trip-content {
        padding: 24px;
    }
}

/* ========================================
   LARGE DESKTOP
   ======================================== */

@media (min-width: 1200px) {
    .trips-section .container {
        max-width: 1400px;
    }
}

/* ========================================

}
/* ========================================
   DESTINATIONS SECTION
   ======================================== */

.destinations-section {
  padding: 80px 20px;
  background-color: #F9FAFB;
}

.destinations-section .section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 800;
  color: #1A1A3C;
  margin-bottom: 35px;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

/* ========================================
   DESTINATION FILTERS - Horizontal Scroll
   ======================================== */

.destination-filters {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  gap: 12px;
  margin: 0 auto 45px;
  padding: 0 20px 10px 20px;
  max-width: 600px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #03834A #F3F4F6;
}

.destination-filters::-webkit-scrollbar {
  height: 6px;
}

.destination-filters::-webkit-scrollbar-track {
  background: #F3F4F6;
  border-radius: 3px;
}

.destination-filters::-webkit-scrollbar-thumb {
  background: #D1D5DB;
  border-radius: 3px;
}

.destination-filters::-webkit-scrollbar-thumb:hover {
  background: #9CA3AF;
}

.filter-btn {
  flex-shrink: 0;
  background-color: #D1D5DB;
  color: #6B7280;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  outline: none;
}

.filter-btn:hover {
  background-color: #9CA3AF;
  color: #ffffff;
}

.filter-btn.active {
  background-color: #16A34A;
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3);
}

/* ========================================
   DESTINATIONS GRID - Mobile 2x3 Grid
   ======================================== */

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 100%;
}

/* Destination Card */
.destination-card {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  aspect-ratio: 1 / 1;
}

.destination-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

/* Destination Image */
.destination-image {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.destination-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover .destination-image img {
  transform: scale(1.15);
}

/* Destination Overlay */
.destination-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 18px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 60%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}

.destination-name {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
  letter-spacing: -0.3px;
}

/* Primary Button Style */
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #16A34A;
  color: #ffffff;
  font-size: 16px;
  font-weight: 600;
  padding: 16px 36px;
  border: none;
  border-radius: 50px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(22, 163, 74, 0.25);
}

.primary-btn:hover {
  background-color: #15803D;
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(22, 163, 74, 0.35);
  color: #ffffff;
}

.primary-btn:active {
  transform: translateY(0);
}

/* ========================================
   RESPONSIVE - TABLET (768px+)
   Show 4 cards (2x2)
   ======================================== */

@media (min-width: 768px) {
  .destinations-section {
    padding: 100px 40px;
  }

  .destinations-section .section-title {
    font-size: 40px;
    margin-bottom: 40px;
  }

  .destination-filters {
    gap: 14px;
    margin-bottom: 50px;
    max-width: 700px;
    padding: 0 40px 10px 40px;
  }

  .filter-btn {
    font-size: 15px;
    padding: 12px 24px;
  }

  .destinations-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .destination-card {
    aspect-ratio: 4 / 3;
  }

  .destination-overlay {
    padding: 24px;
  }

  .destination-name {
    font-size: 24px;
  }
}

/* ========================================
   RESPONSIVE - DESKTOP (992px+)
   Show 8 cards (4x2)
   ======================================== */

@media (min-width: 992px) {
  .destinations-section {
    padding: 120px 60px;
  }

  .destinations-section .section-title {
    font-size: 48px;
    margin-bottom: 45px;
  }

  .destination-filters {
    gap: 16px;
    margin-bottom: 55px;
    max-width: 1000px;
    padding: 0 60px 10px 60px;
  }

  .filter-btn {
    font-size: 16px;
    padding: 12px 28px;
  }

  /* Desktop Grid - 4 columns */
  .destinations-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 50px;
  }

  .destination-card {
    aspect-ratio: 1 / 1;
  }

  .destination-overlay {
    padding: 28px;
  }

  .destination-name {
    font-size: 28px;
  }

  .primary-btn {
    font-size: 17px;
    padding: 18px 40px;
  }
}

/* ========================================
   LARGE DESKTOP (1200px+)
   ======================================== */

@media (min-width: 1200px) {
  .destinations-grid {
    gap: 35px;
  }

  .destination-name {
    font-size: 30px;
  }
}

/* ========================================
   EXTRA LARGE DESKTOP (1440px+)
   ======================================== */

@media (min-width: 1440px) {
  .destinations-grid {
    gap: 40px;
  }
}

/* ========================================
   FILTER ANIMATION
   ======================================== */

.destination-card.hidden {
  display: none;
}

.destination-card.fade-in {
  animation: fadeInScale 0.4s ease-out;
}

@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ========== TESTIMONIALS SECTION ========== */
.testimonials {
    width: 90%;
    margin: 50px auto;
}

.test-top {
    margin-bottom: 20px;
}

.testimonials h1 {
    text-align: center;
    font-weight: 600;
    margin-bottom: 10px;
}

.test-bottom {
    text-align: center;
    color: #FF9D00;
    margin-bottom: 30px;
}

/* Testimonial Carousel */
.carousel-container {
    max-width: 480px;
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.carousel-wrapper {
    display: flex;
    transition: transform 0.3s ease-out;
}

.carousel-slide {
    min-width: 100%;
    aspect-ratio: 16/9;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 1px solid #FF9D00;
    background-color: white;
    transition: background 0.3s;
    cursor: pointer;
}

.indicator.active {
    background: #FF9D00;
}
/* add css for why choose section and testiominial one */
/* ========================================
   WHY CHOOSE THE HURTLER SECTION
   ======================================== */

.why-hurtler {
    padding: 100px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.why-hurtler::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(3, 131, 74, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.why-badge {
    display: inline-block;
    background: linear-gradient(135deg, #03834A 0%, #16A34A 100%);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(3, 131, 74, 0.3);
}

.why-title {
    font-size: 36px;
    font-weight: 800;
    color: #1A1A3C;
    line-height: 1.3;
    margin-bottom: 20px;
}

.brand-highlight {
    background: linear-gradient(135deg, #03834A 0%, #16A34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.brand-highlight::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #03834A, #16A34A);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineSlide 0.8s ease-out 0.5s forwards;
}

@keyframes underlineSlide {
    to { transform: scaleX(1); }
}

.why-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.8;
}

/* Feature Cards Grid */
.why-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 1200px;
    margin: 0 auto 80px;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #03834A, #16A34A);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(3, 131, 74, 0.15);
    border-color: rgba(3, 131, 74, 0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #03834A 0%, #16A34A 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    box-shadow: 0 8px 20px rgba(3, 131, 74, 0.25);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(3, 131, 74, 0.35);
}

.feature-icon svg {
    stroke: white;
}

.feature-title {
    font-size: 22px;
    font-weight: 700;
    color: #1A1A3C;
    margin-bottom: 12px;
    line-height: 1.3;
}

.feature-desc {
    font-size: 16px;
    color: #6B7280;
    line-height: 1.7;
    margin-bottom: 20px;
}

.feature-stats {
    padding-top: 16px;
    border-top: 1px solid #E5E7EB;
}

.stat-item {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    color: #4B5563;
}

.stat-item strong {
    color: #03834A;
    font-size: 18px;
    font-weight: 700;
    margin-right: 4px;
}

/* Trust Section */
.trust-section {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 50px 30px;
    background: white;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.trust-item {
    text-align: center;
}

.trust-number {
    font-size: 48px;
    font-weight: 800;
    background: linear-gradient(135deg, #03834A 0%, #16A34A 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
    margin-bottom: 10px;
}

.trust-label {
    font-size: 16px;
    color: #6B7280;
    font-weight: 500;
}

/* ========================================
   TESTIMONIALS SECTION
   ======================================== */

.testimonials-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(3, 131, 74, 0.1);
    color: #03834A;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* Mobile Carousel (Default) */
.testimonials-mobile {
    display: block;
}

.testimonials-desktop {
    display: none;
}

.testimonials-carousel-wrapper {
    overflow: hidden;
    border-radius: 20px;
    margin-bottom: 30px;
}

.testimonials-carousel {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.testimonial-slide {
    flex: 0 0 100%;
    width: 100%;
}

.video-wrapper {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16/9;
    overflow: hidden;
    cursor: pointer;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-thumbnail:hover img {
    transform: scale(1.05);
    opacity: 0.8;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(3, 131, 74, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 8px 30px rgba(3, 131, 74, 0.4);
}

.video-thumbnail:hover .play-button {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(3, 131, 74, 1);
    box-shadow: 0 12px 40px rgba(3, 131, 74, 0.6);
}

.testimonial-info {
    padding: 24px;
    text-align: center;
}

.traveler-name {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A3C;
    margin-bottom: 6px;
}

.trip-name {
    font-size: 14px;
    color: #6B7280;
    margin: 0;
}

/* Carousel Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.testimonial-nav-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #03834A;
    border: none;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(3, 131, 74, 0.3);
}

.testimonial-nav-btn:hover {
    transform: scale(1.1);
    background: #025f37;
    box-shadow: 0 6px 20px rgba(3, 131, 74, 0.4);
}

.testimonial-nav-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Indicators */
.testimonials-indicators {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #D1D5DB;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.indicator.active {
    background: #03834A;
    width: 36px;
    border-radius: 6px;
}

/* Desktop Grid (Hidden on mobile) */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.video-container {
    position: relative;
    overflow: hidden;
}

.play-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.play-button-large {
    width: 90px;
    height: 90px;
    background: rgba(3, 131, 74, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.video-thumbnail:hover .play-button-large {
    transform: scale(1);
    background: rgba(3, 131, 74, 1);
}

.testimonial-details {
    padding: 20px;
    text-align: center;
    background: white;
}

/* Load More Button */
.load-more-wrapper {
    text-align: center;
    margin-top: 50px;
}

.load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #03834A;
    color: #03834A;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.load-more-btn:hover {
    background: #03834A;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 131, 74, 0.3);
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.video-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    width: 100%;
    max-width: 900px;
    z-index: 10000;
    animation: zoomIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid white;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: white;
    transform: rotate(90deg);
}

.modal-close:hover svg {
    stroke: #03834A;
}

.modal-video-wrapper {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.modal-video-wrapper iframe {
    width: 100%;
    height: 100%;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* No Testimonials State */
.no-testimonials {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
    font-size: 16px;
}

/* ========================================
   RESPONSIVE - TABLET
   ======================================== */

@media (min-width: 768px) {
    .why-hurtler {
        padding: 120px 40px;
    }

    .why-title {
        font-size: 44px;
    }

    .why-subtitle {
        font-size: 19px;
    }

    .why-features {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .trust-section {
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   RESPONSIVE - DESKTOP
   ======================================== */

@media (min-width: 992px) {
    .why-hurtler {
        padding: 140px 60px;
    }

    .why-title {
        font-size: 52px;
    }

    .why-subtitle {
        font-size: 20px;
    }

    .why-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    /* Hide mobile carousel, show desktop grid */
    .testimonials-mobile {
        display: none;
    }

    .testimonials-desktop {
        display: block;
    }

    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 35px;
    }

    /* Show only first 6 testimonials initially */
    .testimonial-card:nth-child(n+7) {
        display: none;
    }

    .testimonial-card.visible {
        display: block;
    }
}

@media (min-width: 1200px) {
    .feature-card {
        padding: 36px;
    }

    .feature-title {
        font-size: 24px;
    }

    .feature-desc {
        font-size: 17px;
    }
}
/* ========================================
   CHAT WIDGET - TWO-SCREEN DESIGN
   ======================================== */

/* Chat Trigger Button */
.chat-widget-trigger {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    animation: pulse 2s infinite;
}

.chat-widget-trigger:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(37, 211, 102, 0.5);
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #FF3B30;
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    border: 2px solid white;
    animation: bounceIn 0.6s ease;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6), 0 0 0 12px rgba(37, 211, 102, 0.1);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Chat Widget Window */
.chat-widget-window {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 380px;
    max-height: 650px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.15);
    display: none;
    flex-direction: column;
    z-index: 1000;
    overflow: hidden;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.chat-widget-window.active {
    display: flex;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Header */
.chat-widget-header {
    background: linear-gradient(135deg, #03834A 0%, #16A34A 100%);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: white;
    flex-shrink: 0;
}

.chat-header-content {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-avatar {
    position: relative;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    overflow: hidden;
    background: white;
}

.chat-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.online-indicator {
    position: absolute;
    bottom: 2px;
    right: 2px;
    width: 12px;
    height: 12px;
    background: #4ADE80;
    border: 2px solid white;
    border-radius: 50%;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

.chat-header-text h4 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
}

.status-text {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    margin: 4px 0 0 0;
    opacity: 0.95;
}

.status-dot {
    width: 6px;
    height: 6px;
    background: #4ADE80;
    border-radius: 50%;
    display: inline-block;
}

.chat-close-btn {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* Chat Body (Messages Screen) */
.chat-widget-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.chat-widget-messages {
    padding: 20px;
    background: #F9FAFB;
    overflow-y: auto;
    flex: 1;
}

.chat-message {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
    animation: fadeInMessage 0.4s ease;
}

@keyframes fadeInMessage {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: white;
    border: 2px solid #E5E7EB;
}

.message-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.message-bubble {
    background: white;
    padding: 12px 16px;
    border-radius: 12px;
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
    max-width: 85%;
}

.message-bubble p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: #374151;
}

.message-bubble p + p {
    margin-top: 8px;
}

.message-bubble strong {
    color: #03834A;
    font-weight: 600;
}

/* Action Buttons */
.chat-action-buttons {
    padding: 16px 20px 20px;
    background: white;
    border-top: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.chat-action-btn {
    width: 100%;
    padding: 14px 20px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.chat-action-btn.primary {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.chat-action-btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-action-btn.secondary {
    background: white;
    color: #03834A;
    border: 2px solid #03834A;
}

.chat-action-btn.secondary:hover {
    background: #F0FDF4;
    transform: translateY(-2px);
}

/* Form Container (Second Screen) */
.chat-widget-form-container {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    animation: slideInRight 0.3s ease;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-header {
    padding: 16px 20px;
    background: white;
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    align-items: center;
    gap: 12px;
}

.back-btn {
    background: #F3F4F6;
    border: none;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    background: #E5E7EB;
    transform: translateX(-2px);
}

.form-header h4 {
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #1F2937;
}

/* Contact Form */
.chat-widget-form {
    padding: 20px;
    background: white;
    overflow-y: auto;
    flex: 1;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: #374151;
    margin-bottom: 8px;
}

.form-group label svg {
    stroke: #03834A;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #E5E7EB;
    border-radius: 8px;
    font-size: 14px;
    font-family: inherit;
    transition: all 0.3s ease;
    background: #F9FAFB;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #03834A;
    background: white;
    box-shadow: 0 0 0 3px rgba(3, 131, 74, 0.1);
}

.phone-input-group {
    display: flex;
    gap: 8px;
}

.phone-input-group select {
    width: 100px;
    flex-shrink: 0;
}

.phone-input-group input {
    flex: 1;
}

.form-group textarea {
    resize: vertical;
    min-height: 70px;
}

.chat-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: none;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.chat-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.chat-submit-btn:active {
    transform: translateY(0);
}

/* Footer */
.chat-widget-footer {
    padding: 12px 20px;
    background: #F9FAFB;
    border-top: 1px solid #E5E7EB;
    text-align: center;
}

.chat-widget-footer p {
    margin: 0;
    font-size: 12px;
    color: #6B7280;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* Loading State */
.chat-submit-btn.loading {
    pointer-events: none;
    opacity: 0.7;
}

.chat-submit-btn.loading::after {
    content: '';
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: white;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success/Error Messages */
.success-message,
.error-message {
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 16px;
    display: none;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    animation: slideDown 0.4s ease;
}

.success-message {
    background: #D1FAE5;
    color: #065F46;
}

.error-message {
    background: #FEE2E2;
    color: #991B1B;
}

.success-message.active,
.error-message.active {
    display: flex;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scrollbar Styling */
.chat-widget-messages::-webkit-scrollbar,
.chat-widget-form::-webkit-scrollbar {
    width: 6px;
}

.chat-widget-messages::-webkit-scrollbar-track,
.chat-widget-form::-webkit-scrollbar-track {
    background: #F3F4F6;
}

.chat-widget-messages::-webkit-scrollbar-thumb,
.chat-widget-form::-webkit-scrollbar-thumb {
    background: #D1D5DB;
    border-radius: 10px;
}

.chat-widget-messages::-webkit-scrollbar-thumb:hover,
.chat-widget-form::-webkit-scrollbar-thumb:hover {
    background: #9CA3AF;
}

@media (max-width: 991px) {
    .trips-carousel {
        display: flex !important;
        overflow: hidden !important;
        grid-template-columns: none !important;
    }
    
    .trip-card {
        min-width: 100% !important;
        flex-shrink: 0;
    }
}

@media (min-width: 992px) {
    .trips-carousel {
        display: grid !important;
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Responsive */
@media (max-width: 480px) {
    .chat-widget-window {
        bottom: 0;
        right: 0;
        left: 0;
        width: 100%;
        
        max-height: 100vh;
        border-radius: 16px 16px 0 0;
    }

    .chat-widget-trigger {
        bottom: 20px;
        right: 20px;
    }
}
/* ========================================
   TESTIMONIALS - INLINE VIDEO PLAYER
   Instagram/TikTok Style
   ======================================== */

.testimonials-section {
    padding: 100px 20px;
    background: #ffffff;
    position: relative;
}

.testimonials-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

/* Section Header */
.testimonials-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(3, 131, 74, 0.1);
    color: #03834A;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

.testimonials-header .section-title {
    font-size: 42px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
}

.testimonials-header .section-subtitle {
    font-size: 18px;
    color: #6B7280;
    line-height: 1.6;
}

/* ========================================
   INSTAGRAM REELS GRID
   ======================================== */

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}

/* MOBILE: 2 columns */
@media (max-width: 767px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

/* TABLET: 3 columns */
@media (min-width: 768px) and (max-width: 991px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
}

/* DESKTOP: 4 columns */
@media (min-width: 992px) {
    .testimonials-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* ========================================
   REEL CARD (INLINE VIDEO)
   ======================================== */

.testimonial-reel-card {
    position: relative;
    cursor: pointer;
    overflow: hidden;
    border-radius: 20px;
    aspect-ratio: 9 / 16;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.testimonial-reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.25);
}

/* Video Container */
.reel-video-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/* Thumbnail Wrapper */
.reel-thumbnail-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.reel-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-reel-card:hover .reel-thumbnail {
    transform: scale(1.05);
}

/* Video Player */
.reel-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
}

.reel-video-player.active {
    display: block !important;
}

.reel-youtube-iframe,
.reel-video-element {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Hide thumbnail when video is playing */
.reel-video-container.playing .reel-thumbnail-wrapper {
    display: none;
}

/* ========================================
   TOP BADGE
   ======================================== */

.reel-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.reel-badge span {
    font-size: 13px;
    font-weight: 700;
    color: #03834A;
    letter-spacing: 0.3px;
}

/* ========================================
   PLAY BUTTON
   ======================================== */

.reel-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    pointer-events: none;
}

.testimonial-reel-card:hover .reel-play-btn {
    transform: translate(-50%, -50%) scale(1.15);
    background: rgba(3, 131, 74, 0.95);
}

.reel-play-btn svg {
    margin-left: 4px;
}

/* Hide play button when playing */
.reel-video-container.playing .reel-play-btn {
    opacity: 0;
    pointer-events: none;
}

/* ========================================
   SOUND/MUTE BUTTON
   ======================================== */

.reel-sound-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reel-sound-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: scale(1.1);
}

.reel-sound-btn.active {
    display: flex !important;
}

/* ========================================
   BOTTOM OVERLAY
   ======================================== */

.reel-info-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px 16px 16px;
    background: linear-gradient(to top, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 50%, 
        transparent 100%);
    z-index: 10;
}

.reel-reactions {
    display: flex;
    gap: 6px;
    margin-bottom: 10px;
    align-items: center;
}

.reaction-emoji {
    font-size: 18px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.reel-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.reel-location svg {
    flex-shrink: 0;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.reel-location span {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    line-height: 1.4;
}

.reel-customer {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

/* ========================================
   VIEW MORE BUTTON
   ======================================== */

.testimonials-footer {
    text-align: center;
    margin-top: 50px;
}

.view-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #03834A;
    border: 2px solid #03834A;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    background: #03834A;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(3, 131, 74, 0.3);
}

/* ========================================
   RESPONSIVE
   ======================================== */

@media (max-width: 767px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-header .section-title {
        font-size: 32px;
    }

    .testimonials-header .section-subtitle {
        font-size: 16px;
    }

    .reel-badge {
        top: 12px;
        left: 12px;
        padding: 6px 12px;
    }

    .reel-badge span {
        font-size: 11px;
    }

    .reel-play-btn {
        width: 50px;
        height: 50px;
    }

    .reel-play-btn svg {
        width: 40px;
        height: 40px;
    }

    .reel-sound-btn {
        width: 36px;
        height: 36px;
        top: 12px;
        right: 12px;
    }

    .reel-sound-btn svg {
        width: 18px;
        height: 18px;
    }

    .reel-info-overlay {
        padding: 16px 12px 12px;
    }

    .reaction-emoji {
        font-size: 14px;
    }

    .reel-location span {
        font-size: 12px;
    }

    .reel-customer {
        font-size: 11px;
    }
}

.no-testimonials {
    text-align: center;
    padding: 60px 20px;
    color: #6B7280;
    font-size: 16px;
}