 .main-wrapper {
     max-width: 1400px;
     margin: 0 auto;
 }

 .destination-grid {
     display: grid;
     grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
     gap: 30px;
     padding: 20px 0;
 }

 .location-card {
     background: white;
     border-radius: 20px;
     overflow: hidden;
     box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
     transition: all 0.3s ease;
     cursor: pointer;
 }

 .location-card:hover {
     transform: translateY(-10px);
     box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
 }

 .hero-image-wrapper {
     width: 100%;
     height: 200px;
     position: relative;
     overflow: hidden;
 }

 .hero-image-wrapper::before {
     content: '';
     position: absolute;
     top: 0;
     left: 0;
     right: 0;
     bottom: 0;
     background: linear-gradient(45deg, rgba(0, 0, 0, 0.1), transparent);
     z-index: 1;
 }

 .destination-image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
     transition: transform 0.3s ease;
 }

 .location-card:hover .destination-image {
     transform: scale(1.05);
 }

 .info-section {
     padding: 25px;
 }

 .place-title {
     font-size: 22px;
     font-weight: 700;
     color: #2c3e50;
     margin-bottom: 15px;
     line-height: 1.3;
 }

 .place-summary {
     color: #7f8c8d;
     font-size: 14px;
     line-height: 1.6;
     margin-bottom: 25px;
     display: -webkit-box;
     -webkit-line-clamp: 3;
     -webkit-box-orient: vertical;
     overflow: hidden;
 }

 .bottom-section {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .trip-cost {
     font-size: 20px;
     font-weight: 700;
     color: #2c3e50;
 }

 .details-button {
     background: linear-gradient(135deg, #202020, #474747);
     color: white;
     border: none;
     padding: 12px 20px;
     border-radius: 25px;
     font-size: 14px;
     font-weight: 600;
     cursor: pointer;
     display: flex;
     align-items: center;
     gap: 8px;
     transition: all 0.3s ease;
 }

 .details-button:hover {
     background: #2f3542;
     transform: translateX(5px);
 }

 .details-button::after {
     content: '→';
     font-size: 16px;
     transition: transform 0.3s ease;
 }

 .details-button:hover::after {
     transform: translateX(3px);
 }

 .header-text {
     text-align: center;
     color: white;
     font-size: 36px;
     font-weight: 700;
     margin-bottom: 20px;
     text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
 }

 .sub-header {
     text-align: center;
     color: rgba(255, 255, 255, 0.9);
     font-size: 18px;
     margin-bottom: 40px;
 }

 @media (max-width: 768px) {
     .destination-grid {
         grid-template-columns: 1fr;
         gap: 20px;
     }

     .header-text {
         font-size: 28px;
     }

     .info-section {
         padding: 20px;
     }
 }

 /* Loading animation */
 .location-card {
     animation: slideInFromBottom 0.6s ease forwards;
     opacity: 0;
     transform: translateY(30px);
 }

 .location-card:nth-child(1) {
     animation-delay: 0.1s;
 }

 .location-card:nth-child(2) {
     animation-delay: 0.2s;
 }

 .location-card:nth-child(3) {
     animation-delay: 0.3s;
 }

 .location-card:nth-child(4) {
     animation-delay: 0.4s;
 }

 @keyframes slideInFromBottom {
     to {
         opacity: 1;
         transform: translateY(0);
     }
 }