/* Tempat Wisata Cards */
.tour .section-title {
 text-align: center;
 font-weight: 700;
 font-size: 2rem;
 margin-bottom: 30px;
 position: relative;
}

.tour .section-title h2 {
 font-weight: 600;
 font-size: 24px;
 line-height: 1.2;
 margin-bottom: 20px;
 padding-bottom: 20px;
 position: relative;
}

.tour .section-title h2::before {
 content: "";
 position: absolute;
 width: 120px;
 height: 2px;
 background: #DEE2E6;
 left: 50%;
 bottom: 6px;
 transform: translateX(-50%);
}

.tour .section-title h2::after {
 content: "";
 position: absolute;
 width: 60px;
 height: 3px;
 background: #ADB5BD;
 left: 50%;
 bottom: 0;
 transform: translateX(-50%);
}

.tour .section-title p {
 margin-bottom: 0;
}

.tour .highlight {
 color: #f4aa3f;
}

/* Container untuk grid card */
.tour .card-container {
 display: grid;
 grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
 gap: 20px;
}

/* Card Wisata */
.tour .card-tour {
 border-radius: 16px;
 box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
 transition: transform 0.3s ease, box-shadow 0.3s ease;
 overflow: hidden;
 background-color: #fff;
 height: 100%;
 display: flex;
 flex-direction: column;
}

.tour .card-tour:hover {
 transform: translateY(-5px);
 box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.tour .card-tour img {
 width: 100%;
 height: 200px;
 object-fit: cover;
 border-top-left-radius: 16px;
 border-top-right-radius: 16px;
 flex-shrink: 0;
}

.tour .card-body-tour {
 padding: 16px;
 flex-grow: 1;
 display: flex;
 flex-direction: column;
 justify-content: flex-start;
}

.tour .card-body-tour .location {
 font-size: 14px;
 color: #6c757d;
 margin: 0;
 font-weight: 400;
}

.tour .card-body-tour .title {
 font-weight: 600;
 color: #1a1a3d;
 line-height: 1.6;
 font-size: 1rem;
}

.tour .card-body-tour .desc {
 font-size: 0.9rem;
 color: #777;
 flex-grow: 1;
 margin: 0;
}

.tour .content-tour p {
  line-height: 1.6;
}

/* Responsive media queries */
@media (max-width: 768px) {
 .tour .section-title {
   font-size: 1.5rem;
 }

 .tour .section-title h2 {
   font-size: 20px;
 }

 .tour .card-tour img {
   height: 180px;
 }
}

@media (max-width: 480px) {
 .tour .section-title {
   font-size: 1.25rem;
 }

 .tour .section-title h2 {
   font-size: 18px;
 }

 .tour .card-tour img {
   height: 160px;
 }

 .tour .card-body-tour .title {
   font-size: 0.95rem;
 }

 .tour .card-body-tour .desc {
   font-size: 0.85rem;
 }
}