/* =============================================
   Section 6 — Activities
   ============================================= */
.tour-activities {
    max-width: 1660px;
    margin: 0 auto;
    padding: 0 70px 30px 70px;
    background-color: #f1f7ff;
    scroll-margin-top: 100px;
}

.tour-activities__heading {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #27368b;
    text-align: center;
    margin-bottom: 20px;
}

.tour-activity-card {
    position: relative;
    background: #fff;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    transition:
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.tour-activity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.tour-activity-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.tour-activity-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.tour-activity-card:hover .tour-activity-card__image img {
    transform: scale(1.08);
}

.tour-activity-card__body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-radius: 30px 30px 0 0;
    padding: 20px;
    display: flex;
    flex-direction: column;
    z-index: 2;
    transition: all 0.45s ease;
}

.tour-activity-card__header {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.tour-activity-card__title {
    font-family: "Manrope", sans-serif;
    font-weight: 700;
    font-size: 18px;
    line-height: 1.4;
    color: #27368b;
    margin: 0;
    min-height: 1.4em;
    flex: 1;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.tour-activity-card__toggle {
    background: none;
    border: none;
    color: #27368b;
    cursor: pointer;
    padding: 4px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    transform: rotate(180deg);
}

.tour-activity-card:hover .tour-activity-card__toggle {
    transform: rotate(0deg);
}

.tour-activity-card__desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.45s ease;
}

.tour-activity-card:hover .tour-activity-card__desc {
    opacity: 1;
    max-height: 150px;
    margin-top: 15px;
    margin-bottom: 15px;
}

.tour-activity-card__desc p {
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

@media (max-width: 767px) {
    .tour-activities__heading {
        font-size: 26px;
    }
}
