.dream-trip {
  padding: 90px 20px;
  text-align: center;
  background: #f5f5f5;
}

.dream-trip h1 {
  font-size: 54px;
  font-weight: 800;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.dream-trip p {
  font-size: 20px;
  color: #555;
  margin-bottom: 50px;
}


.map-container {
  display: flex;
  max-width: 1400px;
  margin: auto;
  gap: 25px;
  align-items: stretch;
}

.map-sidebar {
  width: 300px;
  background: rgba(20, 24, 35, 0.9);
  backdrop-filter: blur(14px);
  color: #fff;
  padding: 22px;
  border-radius: 18px;
  text-align: left;
  box-shadow: 0 15px 40px rgba(0,0,0,0.25);
}


.tabs {
  display: flex;
  background: #1f232b;
  border-radius: 12px;
  margin-bottom: 15px;
  overflow: hidden;
}

.tab {
  flex: 1;
  padding: 12px;
  border: none;
  background: transparent;
  color: #aaa;
  cursor: pointer;
  transition: 0.3s;
  font-size: 14px;
}

.tab:hover {
  color: #fff;
}

.tab.active {
  background: linear-gradient(135deg, #ffffff, #f2f2f2);
  color: #000;
  font-weight: 600;
  border-radius: 10px;
}


#list {
  max-height: 450px;
  overflow-y: auto;
  padding: 0;
}


#list::-webkit-scrollbar {
  width: 5px;
}

#list::-webkit-scrollbar-thumb {
  background: #c27a4a;
  border-radius: 10px;
}

#list li {
  padding: 12px;
  cursor: pointer;
  border-bottom: 1px solid #444;
  transition: 0.3s;
  font-size: 14px;
}

#list li:hover {
  background: rgba(194, 122, 74, 0.15);
  color: #c27a4a;
}


#map {
  flex: 1;
  height: 580px;
  min-height: 400px; 
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}


@media (max-width: 992px) {
  .map-container {
    flex-direction: column;
  }

  .map-sidebar {
    width: 100%;
  }

  #map {
    height: 450px;
  }
}


@media (max-width: 768px) {

  .dream-trip {
    padding: 60px 15px;
  }

  .dream-trip h1 {
    font-size: 28px; 
    line-height: 1.3;
  }

  .dream-trip p {
    font-size: 14px;
    margin-bottom: 30px;
  }

  .map-container {
    flex-direction: column;
    gap: 15px;
  }

  .map-sidebar {
    width: 100%;
    padding: 15px;
  }

  #map {
    height: 350px; 
  }
}

/* =========================
   STATE PACKAGES GRID
========================= */

.state-packages-section{
  margin-top:50px;
}

.state-packages-header{
  text-align:center;
  margin-bottom:35px;
}

.state-packages-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:25px;

  max-width:1400px;
  margin:0 auto;
}

/* CARD */

.state-package-card{
  width:290px;
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 12px 35px rgba(0,0,0,.08);
  transition:.3s;
}

.state-package-card:hover{
  transform:translateY(-8px);
}

.state-package-card img{
  width:100%;
  height:220px;
  object-fit:cover;
  display:block;
}

.state-package-content{
  padding:18px;
  display:flex;
  flex-direction:column;
}

.state-package-content h3{
  font-size:18px;
  line-height:1.5;
  min-height:82px;
  margin-bottom:18px;
  color:#111;
}

.state-package-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:12px 24px;

  background:#c27a4a;
  color:#fff;
  text-decoration:none;

  border-radius:30px;

  width:max-content;

  transition:.3s;
}

.state-package-btn:hover{
  background:#a86234;
}

.state-placeholder{
  width:100%;
  text-align:center;
  color:#777;
  padding:40px 20px;
}

/* TABLET */

@media(max-width:992px){

  .state-package-card{
    width:320px;
  }

}

/* MOBILE */

@media(max-width:768px){

  .state-packages-grid{
    justify-content:center;
  }

  .state-package-card{
    width:100%;
    max-width:450px;
  }

  .state-package-content h3{
    min-height:auto;
  }

}

/* SMALL MOBILE */

@media(max-width:480px){

  .state-package-card{
    width:100%;
  }

  .state-package-card img{
    height:200px;
  }

  .state-package-btn{
    width:100%;
  }

}