.things-section {
    background-color: #1b4d3e;
    padding: 100px 0 140px;
    color: white;
    overflow: hidden;
    position: relative;
}
.things-section.museums {
    background-color: #503454;
}
.things-section.food {
    background-color: #2c5a7b;
}

/* Add white background div */
.things-background {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 45%;
    background-color: white;
}

.things-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.4;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.things-swiper-container {
    position: relative;
    width: 100%;
    margin: 0 auto;
}

.things-swiper {
    width: 100%;
    padding: 20px 0;
    margin: 0 auto;
    overflow: hidden;
}

.swiper-wrapper {
    padding: 20px 0;
}

.thing-card {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    color: #333;
    height: 100%;
    min-height: 280px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.thing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #1b4d3e;
    font-weight: 700;
    line-height: 1.1;
}

.thing-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    flex-grow: 1;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: white;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    top: 50%;
    transform: translateY(-50%);
    position: absolute;
    z-index: 10;
}

.swiper-button-prev {
    left: -60px;
}

.swiper-button-next {
    right: -60px;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.3);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 1.2rem;
    font-weight: bold;
}

/* Swiper Pagination */
.swiper-pagination {
    bottom: -60px !important;
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 0;
}

.swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(27, 77, 62, 0.3); /* Semi-transparent green */
    opacity: 1;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #1b4d3e; /* Solid green */
    transform: scale(1);
    width: 12px;
    height: 12px;
}

/* Responsive Styles */
@media (max-width: 1170px) {
    .things-title {
        font-size: 2.4rem;
    }

    .thing-card {
        padding: 30px 25px;
    }

    .thing-card h3 {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }
    .swiper-button-prev {
        left: -50px;
    }
    
    .swiper-button-next {
        right: -50px;
    }

    .things-background {
        height: 40%;
    }
}

@media (max-width: 767px) {
    .things-section {
        padding: 70px 0;
    }

    .things-title {
        font-size: 2rem;
    }

    .things-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .swiper-button-prev {
        left: -40px;
    }
    
    .swiper-button-next {
        right: -40px;
    }

    .thing-card {
        padding: 25px 20px;
        min-height: 260px;
    }

    .thing-card h3 {
        font-size: 1.4rem;
        margin-bottom: 12px;
    }

    .thing-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .things-background {
        height: 35%;
    }
} 