.attractions-section {
    padding: 3rem 1rem 5rem;
    background: var(--background-cream, #F7F5F0);
    min-height: 60vh;
}

.attractions-container {
    max-width: var(--container-max, 1200px);
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center;
}

.attractions-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.1;
    position: relative;
    display: inline-block;
    opacity: 0;
    animation: attractionsTitleIn 0.8s 0.2s ease-out forwards;
}

.attractions-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent-color);
    margin: 0.75rem auto 0;
    border-radius: 2px;
}

@keyframes attractionsTitleIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.attractions-subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    opacity: 0;
    animation: attractionsSubtitleIn 0.8s 0.4s ease-out forwards;
}

@keyframes attractionsSubtitleIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    list-style: none;
    padding: 0;
}

.todo-item-card {
    background: var(--background-white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.4s ease;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateY(30px);
}

.todo-item-card.animate-in {
    animation: attractionCardFadeIn 0.7s ease-out forwards;
}

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

.todo-item-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.todo-item-card .card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    cursor: pointer;
}

.todo-item-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.todo-item-card:hover .card-image img {
    transform: scale(1.08);
}

.card-image-gallery {
    display: flex;
    gap: 0.4rem;
    padding: 0.6rem 1.5rem;
    background: var(--background-cream, #F7F5F0);
    overflow-x: auto;
}

.card-image-gallery .gallery-thumbnail {
    width: 72px;
    height: 54px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: opacity 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    flex-shrink: 0;
}

.card-image-gallery .gallery-thumbnail:hover {
    opacity: 0.85;
    transform: scale(1.05);
    border-color: var(--accent-color);
}

.todo-item-card .card-content {
    padding: 1.5rem;
    text-align: left;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.todo-item-card .card-title-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.todo-item-card .card-title-link:hover .card-title {
    color: var(--accent-color);
}

.todo-item-card .card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
    line-height: 1.2;
}

.todo-item-card .card-distance {
    font-size: 0.85rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.todo-item-card .card-distance i {
    font-size: 0.8rem;
}

.todo-item-card .card-address {
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.todo-item-card .card-address i {
    color: var(--accent-color);
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

.todo-item-card .card-address:hover {
    color: var(--primary-color);
}

.todo-item-card .card-description {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.7;
    flex-grow: 1;
}

.card-social-links {
    margin-bottom: 0.75rem;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.card-social-links .social-icon {
    font-size: 1.15rem;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    opacity: 0.85;
}

.card-social-links .social-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}

.card-social-links .social-icon-facebook { color: #1877F2; }
.card-social-links .social-icon-instagram { color: #E4405F; }
.card-social-links .social-icon-twitter { color: #000000; }
.card-social-links .social-icon-tiktok { color: #000000; }
.card-social-links .social-icon-youtube { color: #FF0000; }

.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
}

.lightbox-modal.active {
    display: flex;
    animation: lightboxFadeIn 0.3s ease-out;
}

@keyframes lightboxFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 2001;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: background 0.3s ease;
    line-height: 1;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
}

@media (max-width: 768px) {
    .attractions-section {
        padding: 2rem 0.75rem 3rem;
    }

    .attractions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .todo-item-card .card-image {
        height: 200px;
    }

    .todo-item-card .card-title {
        font-size: 1.25rem;
    }

    .todo-item-card .card-content {
        padding: 1.25rem;
    }

    .card-image-gallery {
        padding: 0.5rem 1.25rem;
    }

    .card-image-gallery .gallery-thumbnail {
        width: 64px;
        height: 48px;
    }

    .card-social-links .social-icon {
        font-size: 1.05rem;
    }
}

@media (max-width: 480px) {
    .attractions-container {
        padding: 0 0.5rem;
    }

    .attractions-grid {
        gap: 1rem;
    }

    .todo-item-card .card-image {
        height: 180px;
    }

    .todo-item-card .card-content {
        padding: 1rem;
    }

    .todo-item-card .card-title {
        font-size: 1.15rem;
    }

    .card-image-gallery {
        padding: 0.4rem 1rem;
    }

    .card-image-gallery .gallery-thumbnail {
        width: 56px;
        height: 42px;
    }
}
