.nearby .wrapper {
    padding: 8em 15px;
}

.section-subtitle {
    color: #c8a951;
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.section-title {
    color: #2d4a3e;
    font-size: 40px;
    margin-bottom: 20px;
}

.description {
    max-width: 800px;
    margin: 0 auto 40px;
    font-size: 18px;
    line-height: 1.6;
}

/* Horizontal Curved Carousel */
.image-carousel {
    position: relative;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto 60px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 20px 0;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.carousel-item {
    flex: 0 0 260px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
    transition: all 0.4s ease;
    position: relative;
    transform-origin: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.carousel-item:nth-child(1) {
    transform: perspective(600px) rotateY(8deg);
}

.carousel-item:nth-child(2) {
    transform: perspective(600px) rotateY(5deg);
}

.carousel-item:nth-child(3) {
    transform: perspective(600px) rotateY(0deg);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
    flex: 0 0 280px;
    height: 190px;
    z-index: 2;
}

.carousel-item:nth-child(4) {
    transform: perspective(600px) rotateY(-5deg);
}

/* Individual Attraction Sections */
.attraction-section {
    padding: 50px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #e5e5e5;
}

.attraction-section:last-child {
    border-bottom: none;
}

.attraction-section:nth-child(odd) {
    flex-direction: row-reverse;
}

.attraction-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
    height: 350px;
}

.attraction-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.attraction-image:hover img {
    transform: scale(1.05);
}

.attraction-content {
    flex: 0 0 50%;
    text-align: left;
    padding: 20px;
}

.attraction-title {
    color: #2d4a3e;
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.attraction-distance {
    display: inline-block;
    background-color: #f2f0e6;
    color: #7a6c5d;
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 14px;
    margin-bottom: 18px;
}

.attraction-description {
    color: #555;
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
}

.attraction-button {
    display: inline-block;
    background: #2d4a3e;
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.attraction-button:hover {
    background: #c8a951;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* Media Queries */
@media (max-width: 768px) {
    .attraction-section {
    flex-direction: column !important;
    gap: 30px;
    }
    
    .attraction-image, .attraction-content {
    flex: 0 0 100%;
    width: 100%;
    }
    
    .carousel-item {
    flex: 0 0 220px;
    height: 160px;
    }
    
    .carousel-item:nth-child(3) {
    flex: 0 0 240px;
    height: 170px;
    }
}