.dest-map-section {
    position: relative;
    width: 100%;
    background-color: var(--clr-text);
    overflow: hidden;
    isolation: isolate;
    z-index: 0;
}
.dest-map-wrap {
    position: relative;
    width: 100%;
    height: 500px;
}
.dest-map {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 67%;
    height: 100%;
    background-color: #f3f4f6;
}
.dest-map-placeholder {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 67%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background-color: #f3f4f6;
    background-image: linear-gradient(rgba(255,255,255,0.6), rgba(255,255,255,0.6)), url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="200" height="200" viewBox="0 0 200 200"><path d="M0 60 L50 40 L100 60 L150 40 L200 60 L200 140 L150 160 L100 140 L50 160 L0 140 Z" fill="%23dfe2e6"/><path d="M0 60 L50 40 M50 40 L50 160 M100 60 L100 140 M150 40 L150 160 M0 140 L200 140 M0 60 L200 60" stroke="%23c8ccd0" stroke-width="0.5" fill="none"/></svg>');
    background-repeat: repeat;
    text-align: center;
    padding: 20px;
    z-index: 1;
}
.dest-map-loading {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 67%;
    display: none;
    align-items: center;
    justify-content: center;
    background-color: #f3f4f6;
    font-size: 14px;
    color: var(--clr-btn-primary-txt);
    z-index: 2;
}
.dest-map-placeholder-icon {
    width: 48px;
    height: 48px;
    color: var(--clr-btn-primary-txt);
}
.dest-map-placeholder-title {
    font-size: 18px;
    line-height: 24px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0;
}
.dest-map-placeholder-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0;
    max-width: 480px;
}
.dest-map-load-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 24px;
    font-size: 14px;
    font-weight: normal;
    color: var(--clr-text);
    background-color: var(--clr-accent);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
}
.dest-map-load-btn:hover { background-color: #0d57cc; }
.dest-map-cta-panel {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 33%;
    background-color: var(--clr-text);
    z-index: 3;
}
.dest-map-cta-fade {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 33%;
    width: 100px;
    background: linear-gradient(to right, rgba(255,255,255,1) 0%, rgba(255,255,255,0.85) 35%, rgba(255,255,255,0) 100%);
    pointer-events: none;
    z-index: 3;
}
.dest-map-cta-inner {
    position: relative;
    width: 100%;
    height: 100%;
    padding-left: max(40px, calc((100vw - var(--max-w-container)) / 2 + 40px));
    padding-right: 24px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}
.dest-map-cta-content {
    max-width: 360px;
}
.dest-map-cta-title {
    font-size: 20px;
    line-height: 26px;
    font-weight: bold;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 12px 0;
}
.dest-map-cta-text {
    font-size: 14px;
    line-height: 20px;
    color: var(--clr-btn-primary-txt);
    margin: 0 0 24px 0;
}
.dest-map-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 28px;
    font-size: 14px;
    font-weight: normal;
    color: var(--clr-text);
    background-color: var(--clr-accent);
    border: 0;
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s ease;
    align-self: flex-start;
}
.dest-map-cta-btn:hover { background-color: #0d57cc; }
.leaflet-container .leaflet-control-attribution {
    font-size: 10px;
}
.leaflet-bottom.leaflet-right .leaflet-control-zoom {
    margin-right: 12px;
    margin-bottom: 12px;
    border: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.leaflet-bar a, .leaflet-bar a:hover {
    background-color: var(--clr-text);
    color: var(--clr-btn-primary-txt);
    border-bottom-color: #e0e0e0;
}
.leaflet-bar a:hover {
    background-color: #f5f5f5;
}
@media (max-width: 999px) {
    .dest-map-wrap { height: 420px; }
    .dest-map,
    .dest-map-placeholder,
    .dest-map-loading { width: 50%; }
    .dest-map-cta-panel { width: 50%; }
    .dest-map-cta-fade { left: 50%; width: 80px; }
    .dest-map-cta-inner { padding-left: 40px; padding-right: 24px; }
    .dest-map-cta-content { max-width: 100%; }
    .dest-map-cta-title { font-size: 18px; line-height: 24px; }
}
@media (max-width: 750px) {
    .dest-map-wrap { height: auto; }
    .dest-map,
    .dest-map-placeholder,
    .dest-map-loading {
        position: relative;
        top: auto;
        right: auto;
        bottom: auto;
        width: 100%;
        height: 350px;
    }
    .dest-map-cta-panel {
        position: relative;
        top: auto;
        left: auto;
        bottom: auto;
        width: 100%;
    }
    .dest-map-cta-fade { display: none; }
    .dest-map-cta-inner {
        padding: 35px 20px;
        text-align: center;
    }
    .dest-map-cta-content {
        max-width: 520px;
        margin: 0 auto;
    }
    .dest-map-cta-title { font-size: 18px; line-height: 24px; }
    .dest-map-cta-btn { align-self: center; }
}
