/* Responsive Adjustments */
@media (max-width: 992px) {


  .section-header h2 {
    font-size: 2.2rem;
  }
}

@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.4rem;
  }

  .car .card-img-top {
    height: 400px;
  }

  /* Hero Section */
  .hero-section {
    position: relative;

    max-height: 650px;
    overflow: hidden;
  }

  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  /* Carousel Images */
  .carousel-inner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .carousel-item {
    min-height: 400px;
    max-height: 650px;
  }

  /* Hero Content */
  .hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 0 10px;
    width: 95%;
  }

  .hero-title {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
  }

  .hero-subtitle {
    font-size: 0.8rem;
    margin-bottom: 1.2rem;
  }

  .hero-content .d-flex {
    flex-direction: column;
    gap: 12px;
  }

  .hero-content .btn-hero {
    width: 100%;
    max-width: 250px;
    margin: 0 auto;
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Carousel Indicators */
  .carousel-indicators {
    bottom: 15px;
  }

  .carousel-indicators button {
    width: 6px !important;
    height: 6px !important;
    margin: 0 4px !important;
  }

  .carousel-indicators button.active {
    width: 10px;
    height: 10px;
  }

  .floating-contact {
    bottom: 20px;
    right: 20px;
  }

  .floating-contact a,
  .floating-contact button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .day-badge {
    top: 10px;
    left: 10px;
    padding: 8px 12px;
    min-width: 70px;
  }

  .itinerary-timeline {
    padding-left: 20px;
  }

  .itinerary-timeline::before {
    left: 5px;
  }

  .timeline-item::before {
    left: -24px;
  }
}