/* ==========================================================================
   FIORE PAKLENICA - Page Sections
   About, Gallery, Reviews, Contact, Explore, Form styles
   ========================================================================== */

/* ==========================================================================
   About Section
   ========================================================================== */
.section--about {
    background: linear-gradient(180deg,
        #e8f4f8 0%,
        #d5e8ed 20%,
        #c5dce4 40%,
        #d0e3ea 60%,
        #dce9ef 80%,
        #e5eff3 100%
    );
    overflow: hidden;
    position: relative;
    padding: var(--space-3xl) 0;
}

.section--about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 800' preserveAspectRatio='xMidYMax slice'%3E%3Cdefs%3E%3ClinearGradient id='mountain1' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' style='stop-color:%231a3a4a;stop-opacity:0.08'/%3E%3Cstop offset='100%25' style='stop-color:%231a3a4a;stop-opacity:0.03'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23mountain1)' d='M0,800 L0,600 L200,450 L400,550 L600,350 L800,500 L1000,300 L1200,450 L1440,250 L1440,800 Z'/%3E%3Cpath fill='rgba(26,58,74,0.04)' d='M0,800 L0,650 L150,550 L350,650 L550,450 L750,600 L950,400 L1150,550 L1440,350 L1440,800 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% auto;
    pointer-events: none;
    opacity: 0.7;
}

.section--about::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath fill='%234a90a4' fill-opacity='0.1' d='M0,120 L0,60 Q360,0 720,60 T1440,60 L1440,120 Z'/%3E%3Cpath fill='%234a90a4' fill-opacity='0.08' d='M0,120 L0,80 Q360,40 720,80 T1440,80 L1440,120 Z'/%3E%3C/svg%3E") no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.about {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: var(--space-5xl);
    align-items: center;
}

.about__content {
    padding-right: var(--space-2xl);
}

.about__content .section__label { text-align: left; }
.about__content .section__label::before { display: none; }
.about__content .section__title { text-align: left; }

.about__content .section__divider {
    margin-left: 0;
    margin-bottom: var(--space-2xl);
}

.about__text {
    margin-bottom: var(--space-2xl);
    color: var(--color-text-light);
}

.about__text .lead {
    color: var(--color-text);
    margin-bottom: var(--space-lg);
    font-size: 1.15rem;
}

.about__features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg) var(--space-xl);
    padding-top: var(--space-2xl);
    border-top: 1px solid var(--color-sand);
}

.about__feature {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    transition: transform var(--transition-fast);
}

.about__feature:hover {
    transform: translateX(4px);
}

.about__feature:hover .about__feature-icon {
    color: var(--color-gold);
}

.about__feature-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    font-size: 32px;
    color: var(--color-primary);
    transition: color var(--transition-fast);
}

.about__feature-text {
    font-size: 0.95rem;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.about__feature-text strong {
    font-weight: 600;
    color: var(--color-primary);
    margin-right: 4px;
}

.about__image { position: relative; }

.about__image-wrapper {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about__image-wrapper img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.about__image:hover .about__image-wrapper img { transform: scale(1.03); }

.about__image-accent {
    position: absolute;
    top: -30px;
    right: -30px;
    bottom: 30px;
    left: 30px;
    border: 1px solid var(--color-gold);
    z-index: -1;
    opacity: 0.5;
}

.about__image-badge {
    position: absolute;
    bottom: var(--space-xl);
    left: calc(var(--space-xl) * -1);
    background: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    box-shadow: var(--shadow-lg);
}

.about__image-badge span {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-gold);
    line-height: 1;
}

.about__image-badge small {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

/* ==========================================================================
   Gallery Section
   ========================================================================== */
.section--gallery {
    background: linear-gradient(180deg,
        #d5e8ed 0%,
        #c8dee6 30%,
        #bdd5df 60%,
        #b0ccd8 100%
    );
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.section--gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 600' preserveAspectRatio='none'%3E%3Cpath fill='%234a90a4' fill-opacity='0.06' d='M0,100 Q240,150 480,100 T960,100 T1440,100 L1440,0 L0,0 Z'/%3E%3Cpath fill='%234a90a4' fill-opacity='0.04' d='M0,200 Q360,250 720,200 T1440,200 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat top center;
    background-size: cover;
    pointer-events: none;
}

.gallery__filters {
    display: flex;
    justify-content: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-xl);
    flex-wrap: wrap;
}

.gallery__filter {
    padding: 0.75rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: transparent;
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.gallery__filter:hover { background: rgba(26, 58, 74, 0.1); }

.gallery__filter.active {
    background: var(--color-primary);
    color: var(--color-white);
}

.gallery__filter:focus {
    outline: 2px solid var(--color-gold);
    outline-offset: 2px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 220px);
    gap: var(--space-sm);
}
/* Featured gallery items - span 2 columns with visual emphasis */
.gallery__item--featured {
    grid-column: span 2;
}

.gallery__item--featured .gallery__overlay {
    background: linear-gradient(to top, rgba(26, 58, 74, 0.95) 0%, rgba(26, 58, 74, 0) 70%);
}

.gallery__item--featured .gallery__overlay span {
    font-size: 1.5rem;
}

/* Subtle fade effect - dim other items on hover */
.gallery:hover .gallery__item:not(:hover) {
    opacity: 0.7;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
    transition: opacity var(--transition-base), transform var(--transition-base);
    contain: layout style paint;
}

.gallery__item.filtered-out {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
    position: absolute;
    visibility: hidden;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 58, 74, 0.9) 0%, rgba(26, 58, 74, 0) 60%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: var(--space-lg);
    transition: opacity var(--transition-base);
}

.gallery__overlay span {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-white);
    transform: translateY(20px);
    transition: transform var(--transition-base);
}

.gallery__item:hover img { transform: scale(1.08); }
.gallery__item:hover .gallery__overlay { opacity: 1; }
.gallery__item:hover .gallery__overlay span { transform: translateY(0); }

.gallery__cta {
    text-align: center;
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-xl);
}

.gallery__booking-badge {
    max-width: 240px;
}

.gallery__booking-badge img {
    width: 100%;
    height: auto;
}

.btn--gallery {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn--gallery svg {
    width: 18px;
    height: 18px;
}

.btn--gallery:hover {
    background: var(--color-primary);
    color: var(--color-white);
}

/* ==========================================================================
   Reviews Section
   ========================================================================== */
.section--reviews {
    background: linear-gradient(180deg,
        #b0ccd8 0%,
        #c8dde6 15%,
        #e0ebf0 30%,
        #f0f6f8 50%,
        var(--color-white) 100%
    );
    position: relative;
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.section--reviews::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 200' preserveAspectRatio='none'%3E%3Cpath fill='%234a90a4' fill-opacity='0.05' d='M0,200 Q360,100 720,150 T1440,100 L1440,0 L0,0 Z'/%3E%3C/svg%3E") no-repeat;
    background-size: cover;
    pointer-events: none;
}



/* Reviews Slider Container */
.reviews-slider {
    position: relative;
    overflow: hidden;
    /* Extend slider beyond container to show card previews on both sides */
    margin: 0 calc(-1 * var(--container-padding));
    padding: var(--space-md) var(--container-padding);
}

.reviews-slider-mask {
    overflow: hidden;
}

.reviews {
    display: flex;
    gap: var(--space-lg);
    cursor: grab;
    user-select: none;
    /* Offset to show partial card on left side */
    margin-left: calc(-0.5 * (100% - var(--space-lg) * 2) / 3 - var(--space-lg) / 2);
    padding-right: calc(0.5 * (100% - var(--space-lg) * 2) / 3);
}

.reviews.is-dragging {
    cursor: grabbing;
}

.reviews.is-dragging .review {
    pointer-events: none;
}

.review {
    flex: 0 0 calc((100% - var(--space-lg) * 2) / 3);
    min-width: calc((100% - var(--space-lg) * 2) / 3);
    padding: var(--space-xl);
    background: var(--color-white);
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    position: relative;
    transition: box-shadow 0.3s ease, opacity 0.3s ease;
}

.review:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

/* Pagination Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: var(--space-xl);
}

.reviews-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--color-sand);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reviews-dot:hover {
    background: var(--color-primary);
    opacity: 0.7;
}

.reviews-dot.active {
    background: var(--color-primary);
    transform: scale(1.2);
}

.review__header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.review__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8b734a, #c9a227);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.review__meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review__name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
}

.review__info {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review__date {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.review__google-icon {
    width: 16px;
    height: 16px;
}

.review__stars {
    display: flex;
    gap: 2px;
    margin-bottom: var(--space-md);
}

.review__stars svg {
    width: 16px;
    height: 16px;
    color: #FBBC05;
}

.review__text {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: var(--color-text);
    border: none;
    padding: 0;
    margin: 0;
    position: relative;
}

/* Only truncate and show gradient when content overflows */
.review__text.needs-truncation {
    max-height: 100px;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.review__text.needs-truncation::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
    background: linear-gradient(transparent, var(--color-white));
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.review__text.expanded {
    max-height: 600px !important;
    overflow: visible;
}

.review__text.expanded::after {
    opacity: 0;
}

.review__read-more {
    display: block;
    margin-top: var(--space-sm);
    padding: 0;
    background: none;
    border: none;
    color: var(--color-primary);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s ease;
}

.review__read-more:hover {
    color: var(--color-primary-dark);
    text-decoration: underline;
}

.reviews__rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    margin-top: var(--space-xl);
}

.reviews__rating .reviews__stars {
    display: flex;
    gap: 4px;
}

.reviews__rating .reviews__stars svg {
    width: 20px;
    height: 20px;
    color: var(--color-gold);
}

.reviews__score {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

.reviews__count {
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

.reviews__google {
    text-align: center;
    margin-top: var(--space-2xl);
}

.reviews__google-link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-lg);
    background: var(--color-off-white);
    border: 1px solid var(--color-sand);
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    transition: all var(--transition-fast);
}

.reviews__google-link:hover {
    background: var(--color-white);
    border-color: var(--color-primary);
    box-shadow: var(--shadow-sm);
}

.reviews__google-link .google-icon {
    width: 20px;
    height: 20px;
}

/* Reviews Trust Badges Container */
.reviews__badges {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-lg);
    flex-wrap: wrap;
    margin-top: var(--space-2xl);
}

.reviews__booking-badge {
    display: block;
    border-radius: 4px;
    overflow: hidden;
    transition: transform var(--transition-fast);
}

.reviews__booking-badge:hover {
    transform: scale(1.05);
}

.reviews__booking-badge img {
    height: 50px;
    width: auto;
    display: block;
    border: none;
    outline: none;
}

.reviews__booking-badge:focus,
.reviews__booking-badge:focus-visible,
.reviews__booking-badge img:focus,
.reviews__booking-badge img:focus-visible {
    outline: none;
    border: none;
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.section--contact {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
    padding: var(--space-2xl) 0 var(--space-3xl);
}

.section--contact::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1600 600' preserveAspectRatio='xMidYMax slice'%3E%3Cdefs%3E%3ClinearGradient id='mtnGrad1' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%231a3a4a' stop-opacity='0.06'/%3E%3Cstop offset='100%25' stop-color='%231a3a4a' stop-opacity='0.02'/%3E%3C/linearGradient%3E%3ClinearGradient id='mtnGrad2' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%231a3a4a' stop-opacity='0.04'/%3E%3Cstop offset='100%25' stop-color='%231a3a4a' stop-opacity='0.01'/%3E%3C/linearGradient%3E%3ClinearGradient id='seaGrad' x1='0%25' y1='0%25' x2='0%25' y2='100%25'%3E%3Cstop offset='0%25' stop-color='%234a90a4' stop-opacity='0.08'/%3E%3Cstop offset='100%25' stop-color='%234a90a4' stop-opacity='0.03'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath fill='url(%23mtnGrad1)' d='M0,600 L0,320 L100,280 L200,300 L320,220 L420,260 L540,180 L660,220 L800,140 L940,190 L1080,120 L1200,170 L1360,100 L1480,150 L1600,80 L1600,600 Z'/%3E%3Cpath fill='url(%23mtnGrad2)' d='M0,600 L0,380 L140,340 L280,370 L440,290 L580,330 L740,260 L880,300 L1040,230 L1180,280 L1340,210 L1480,260 L1600,200 L1600,600 Z'/%3E%3Cpath fill='url(%23seaGrad)' d='M0,600 L0,540 Q100,520 200,540 T400,530 T600,545 T800,525 T1000,540 T1200,530 T1400,545 T1600,535 L1600,600 Z'/%3E%3Cpath fill='rgba(74,144,164,0.05)' d='M0,600 L0,565 Q120,555 240,565 T480,558 T720,568 T960,555 T1200,565 T1440,558 T1600,562 L1600,600 Z'/%3E%3C/svg%3E") no-repeat center bottom;
    background-size: cover;
    pointer-events: none;
}

.section--contact .contact {
    position: relative;
    z-index: 1;
}

.contact {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: var(--space-4xl);
}

.contact__info {
    padding-right: var(--space-2xl);
}

.contact__info .section__label { text-align: left; }
.contact__info .section__label::before { display: none; }
.contact__info .section__title { text-align: left; }
.contact__info .section__divider { margin-bottom: var(--space-xl); }

.contact__intro {
    margin-bottom: var(--space-xl);
    color: var(--color-text-light);
    font-size: 1.05rem;
}

.contact__map {
    margin-bottom: var(--space-xl);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact__item {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
}

.contact__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-primary);
    flex-shrink: 0;
    transition: transform var(--transition-fast), background-color var(--transition-fast);
}

.contact__item:hover .contact__icon {
    transform: scale(1.05);
    background: var(--color-gold);
}

.contact__icon svg {
    width: 22px;
    height: 22px;
    color: var(--color-white);
}

.contact__item-content h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: var(--space-xs);
    color: var(--color-text);
}

.contact__item-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin: 0;
    line-height: 1.7;
}

.contact__item a { transition: color var(--transition-fast); }
.contact__item a:hover { color: var(--color-primary); }

.contact__item--whatsapp {
    background: linear-gradient(135deg, rgba(37, 211, 102, 0.08) 0%, rgba(37, 211, 102, 0.03) 100%);
    padding: var(--space-md);
    border-radius: 12px;
    border: 1px solid rgba(37, 211, 102, 0.2);
}

.contact__icon--whatsapp {
    background: #25D366;
    color: white;
}

.contact__item--whatsapp a {
    color: #128C7E;
    font-weight: 500;
}

.contact__item--whatsapp a:hover { color: #25D366; }

.contact__map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    background: var(--color-sand);
    filter: grayscale(20%);
    transition: filter var(--transition-base);
}

.contact__map:hover iframe { filter: grayscale(0%); }

.contact__form-wrapper {
    background: var(--color-white);
    padding: var(--space-3xl);
    box-shadow: var(--shadow-lg);
}

/* ==========================================================================
   Form Styles
   ========================================================================== */
.form {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form__label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
}

.form__input,
.form__textarea,
.form select {
    padding: var(--space-md) var(--space-lg);
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    border: 1px solid var(--color-sand);
    background: var(--color-white);
    transition: all var(--transition-fast);
    -webkit-appearance: none;
    appearance: none;
}

.form__input:focus,
.form__textarea:focus,
.form select:focus {
    outline: none;
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(26, 58, 74, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder { color: var(--color-text-muted); }

.form__textarea {
    min-height: 140px;
    resize: vertical;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.form select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8a8a' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right var(--space-md) center;
    padding-right: var(--space-2xl);
}

.form__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form__required {
    color: #dc3545;
    font-weight: 600;
    margin-left: 2px;
}

.form__error {
    display: block;
    font-size: 0.8rem;
    color: #dc3545;
    min-height: 0;
}

.form__error:empty {
    display: none;
}

.form__input.error,
.form__textarea.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

/* ==========================================================================
   Explore / Attractions Section
   ========================================================================== */
.section--explore {
    background: linear-gradient(135deg, var(--color-charcoal) 0%, var(--color-primary-dark) 100%);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: var(--space-3xl) 0;
}

.section--explore::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.section--explore .section__label { color: var(--color-gold); }

.section--explore .section__label::before,
.section--explore .section__label::after {
    background: var(--color-gold);
    opacity: 0.3;
}

.section--explore .section__title { color: var(--color-white); }
.section--explore .section__subtitle { color: rgba(255,255,255,0.6); }

.attractions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    position: relative;
    z-index: 1;
}

.attraction {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    transition: all var(--transition-base);
    contain: layout style paint;
}

.attraction:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}

.attraction__image {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.attraction__image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.3) 100%);
}

.attraction__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slower);
}

.attraction:hover .attraction__image img { transform: scale(1.08); }

.attraction__content { padding: var(--space-xl); }

.attraction__content h3 {
    font-size: 1.6rem;
    color: var(--color-white);
    margin-bottom: var(--space-sm);
}

.attraction__content p {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.attraction__link {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-gold);
    transition: all var(--transition-fast);
}

.attraction__link svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.attraction__link:hover { color: var(--color-gold-light); }
.attraction__link:hover svg { transform: translateX(6px); }

.attraction__links {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md) var(--space-xl);
}

.explore__cta {
    text-align: center;
    margin-top: var(--space-2xl);
}

.explore__cta .btn--gallery {
    border-color: var(--color-white);
    color: var(--color-white);
}

.explore__cta .btn--gallery:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

/* ==========================================================================
   Amenities Section
   ========================================================================== */
.section--amenities {
    background: var(--color-off-white);
    padding: var(--space-4xl) 0;
}

.amenities {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.amenity {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-xl);
    background: var(--color-white);
    text-align: center;
    transition: all var(--transition-base);
}

.amenity:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.amenity__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.amenity__icon svg {
    width: 32px;
    height: 32px;
}

.amenity span {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--color-text);
}
