/* ===========================================
   Hero Slider
   =========================================== */
.hero-slider {
    width: 100%;
    height: 100%;
}

.hero-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-slider .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-slider .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    background: white;
    opacity: 1;
    margin: 0 3px !important;
}

@media (min-width: 768px) {
    .hero-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1024px) {
    .hero-slider .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        margin: 0 8px !important;
    }
}

.hero-slider .swiper-pagination-bullet-active {
    background: #EF7F78;
    opacity: 1;
}

/* ===========================================
   Interactive Image Map
   =========================================== */
.interactive-map-container {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.map-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-area {
    fill: #EF7F78;
    fill-opacity: 0;
    stroke: #EF7F78;
    stroke-width: 0;
    stroke-opacity: 0;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: all;
}

.map-area:hover {
    fill-opacity: 0.4;
    stroke-width: 3;
    stroke-opacity: 0.8;
}

.map-area:active {
    fill-opacity: 0.6;
}

.floor-popup-small svg,
.floor-popup-large svg {
    width: 20px;
    height: 20px;
}

/*.floor-popup-small .popup-details svg *:not(rect),
.floor-popup-large .popup-details svg *:not(rect) {
    stroke: black;
}*/

/* Small Preview Popup */
.floor-popup-small {
    position: absolute;
    top: 125px;
    right: 125px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    padding: 25px;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 47;
}

.floor-popup-small.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.popup-small-title,
.popup-title {
    font-family: "Mono45", sans-serif;
    margin: 0 0 15px 0;
    color: #EF7F78;
    font-size: 36px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.popup-small-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: #000000;
    font-size: 24px;
    font-weight: 500;
}

/* Large Detail Popup */
.floor-popup-large {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 1364px;
    width: 90%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
    max-width: 75vw;
}

.floor-popup-large.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.popup-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.popup-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    border: none;
    width: 40px;
    height: 40px;
    font-size: 28px !important;
    color: #000000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s ease;
    z-index: 10;
    background: transparent !important;
}

.popup-close:hover {
    opacity: .8;
}

.popup-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    font-size: 24px;
    font-weight: 500;
    padding: 78px 64px;
    gap: 90px;
}

.popup-image-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
}

.popup-image {
    width: 100%;
    height: 364px;
    object-fit: cover;
}

.popup-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: start;
}

.popup-stats {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.popup-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floor-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floor-feature svg {
    flex-shrink: 0;
/*    stroke: #2B2E34;*/
}

.popup-cta {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: #000;
    color: white;
    padding: 16px 30px;
    text-decoration: none;
    border-radius: 0;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    justify-content: space-between;
    width: 100%;
}

.popup-small-btn {
    border: 1px solid black;
}

.button-with-icon.button-inverted a.popup-small-btn:hover {
    background: #fff !important;
}

.popup-cta:hover {
    background: #EF7F78;
    transform: translateX(5px);
}

@media (max-width: 1024px) {
    .popup-content {
        grid-template-columns: 1fr;
        font-size: 17px;
        padding: 28px;
        gap: 24px;
    }

    .popup-close {
        top: -4px;
        right: -4px;
    }
    
    .popup-details {
        padding: 0;
        gap: 0;
    }

    .popup-small-title,
    .popup-title {
        font-size: 26px;
    }

    .floor-popup-small svg,
    .floor-popup-large svg {
        width: 14px;
        height: 14px;
    }

    .popup-small-info,
    .popup-stats,
    .popup-features {
        font-size: 17px;
    }

    .popup-stats,
    .popup-features {
        gap: 0;
    }

    .floor-popup-small {
        padding: 14px 18px;
    }

    .popup-image {
        height: 100%;
    }
}

@media (max-width: 768px) {
    .floor-popup-small {
        right: 30px;
        top: 56px;
        min-width: 160px;
    }
    
    .floor-popup-large {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .popup-image-container {
        height: 100%;
        max-height: 145px;
    }
    
    .popup-small-title,
    .popup-title {
        font-size: 16px;
        margin-bottom: 4px;
    }

    .floor-popup-small svg,
    .floor-popup-large svg {
        width: 8px;
        height: 8px;
    }

    .popup-small-info,
    .popup-stats,
    .popup-features {
        font-size: 10px;
    }

    .popup-small-info {
        margin-bottom: 0;
    }

    .popup-content {
        font-size: 10px;
    }
}

/* ===========================================
   Quote Slider
   =========================================== */
.quote-slider {
    width: 100%;
    height: 100%;
    padding: 80px 0;
}

.quote-slider .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-content {
    max-width: 1400px;
    margin: 0 auto;
}

.quote-text {
    font-family: "Mono45", sans-serif !important;
    font-size: 32px !important;
    line-height: 1 !important;
    text-transform: uppercase;
    margin: 0 0 30px 0;
    letter-spacing: 1px;
}

.quote-author {
    font-size: 12px;
    line-height: 16px;
    margin: 0;
    font-weight: 400;
}

.quote-slider .swiper-pagination {
    bottom: 40px;
}

.quote-slider .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    background: #D0C5C0;
    opacity: 1;
    margin: 0 3px !important;
}

@media (min-width: 768px) {
    .quote-slider {
        padding: 100px 60px;
    }
    
    .quote-text {
        font-size: 49px !important;
    }
    
    .quote-slider .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
    }
}

@media (min-width: 1024px) {
    .quote-slider {
        padding: 120px 80px;
    }
    
    .quote-text {
        font-size: 66px !important;
    }
    
    .quote-slider .swiper-pagination-bullet {
        width: 20px;
        height: 20px;
        margin: 0 8px !important;
    }

    .quote-author {
        font-size: 24px;
        line-height: 30px;
    }
}

.quote-slider .swiper-pagination-bullet-active {
    background: #000;
    opacity: 1;
}

.contact-info a {
    display: inline-block;
    position: relative;
    color: #000;
}

.contact-info a:after {
    content: "";
    display: inline-block;
    position: absolute;
    background-image: url('/wp-content/themes/hello-elementor-child/assets/img/ccn-arrow-black.svg');
    background-size: contain;
    background-repeat: no-repeat;
    margin-left: 6px;

    /* mobiel */
    width: 14px;
    height: 14px;
}

/* desktop (vanaf lg / 1024px) */
@media (min-width: 1024px) {
    .contact-info a:after {
        width: 20px;
        height: 20px;
        margin-top: 3px;
    }
}
