.dh-map-section {
    background: #f5f5f5;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    overflow: hidden;
}

.dh-map-container {
    max-width: 1440px;
    margin: 0 auto;
    position: relative;
}

/* Tabs */
.dh-map-tabs {
    display: flex;
    gap: 6px;
    padding: 76px 0 0 60px;
    position: relative;
    z-index: 2;
}

.dh-tab {
    background: none;
    border: none;
    font-family: 'Poppins', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #a0a0a0;
    padding: 0 0 8px;
    cursor: pointer;
    position: relative;
    transition: color 0.3s;
}

.dh-tab.active {
    color: #005C86;
}

.dh-tab.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: #005C86;
}

.dh-tab:first-child {
    margin-right: 22px;
}

/* Tab content */
.dh-tab-content {
    display: none;
}

.dh-tab-content.active {
    display: block;
}

.dh-tab-inner {
    display: flex;
    align-items: stretch;
    gap: 0;
}

/* Text column */
.dh-text-col {
    flex: 0 0 480px;
    padding: 32px 0 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.dh-tagline {
    font-size: 12px;
    font-weight: 600;
    color: #005C86;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0 0 16px;
}

.dh-heading {
    font-size: 40px;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.2;
    margin: 0 0 24px;
    max-width: 480px;
}

.dh-body-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 32px;
    max-width: 440px;
}

.dh-body-text p {
    margin: 0;
}

.dh-btn {
    display: inline-flex;
    align-items: center;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s;
    cursor: pointer;
}

.dh-btn-primary {
    background: #005C86;
    color: #fff;
    padding: 12px 32px;
    border: none;
    align-self: flex-start;
}

.dh-btn-primary:hover {
    background: #004a6b;
    color: #fff;
}

.dh-btn-ghost {
    background: none;
    color: #005C86;
    padding: 0;
    border: none;
    border-bottom: 1px solid currentColor;
    border-radius: 0;
    align-self: flex-start;
}

.dh-btn-ghost:hover {
    color: #004a6b;
}

/* Logos */
.dh-logos {
    display: flex;
    align-items: center;
    gap: 18px;
    margin: 40px 0 32px;
}

.dh-logos img {
    height: auto;
    object-fit: contain;
}

/* Map column */
.dh-map-col {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.dh-map-wrapper {
    position: relative;
    width: 100%;
}

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

/* Layout: text left, map right (HU) */
.dh-layout-text-left .dh-text-col {
    order: 0;
}

.dh-layout-text-left .dh-map-col {
    order: 1;
}

/* Layout: map left, text right (UK) */
.dh-layout-text-right .dh-map-col {
    order: 0;
}

.dh-layout-text-right .dh-text-col {
    order: 1;
    padding-left: 60px;
    padding-right: 60px;
}

/* Markers */
.dh-marker {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.dh-marker-dot {
    display: block;
    width: 16px;
    height: 16px;
    background: #005C86;
    border: 3px solid #fff;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    cursor: pointer;
    position: relative;
    z-index: 2;
}

/* Larger hit area for city markers */
.dh-marker-dot--popup {
    width: 40px;
    height: 40px;
}

.dh-marker-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #005C86;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    padding: 8px 13px;
    border-radius: 6px 6px 6px 1px;
    white-space: nowrap;
    text-decoration: none;
    z-index: 10;
}

.dh-marker-label:hover {
    background: #004a6b;
    color: #fff;
}

.dh-marker-label--right {
    left: calc(100% + 12px);
    border-radius: 6px 6px 1px 6px;
}

.dh-marker-label--left {
    right: calc(100% + 12px);
    border-radius: 6px 1px 6px 6px;
}

.dh-marker-label--top {
    bottom: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 6px 6px 6px 1px;
}

.dh-marker-label--bottom {
    top: calc(100% + 12px);
    left: 50%;
    transform: translateX(-50%);
    border-radius: 1px 6px 6px 6px;
}

/* Map popup for cities with multiple hotels (Budapest) */
.dh-map-popup {
    position: absolute;
    top: 50%;
    left: calc(100% + 16px);
    transform: translateY(-50%);
    background: #005C86;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.18);
    width: 320px;
    max-height: 280px;
    display: none;
    z-index: 30;
    flex-direction: column;
}

.dh-marker[data-city].active .dh-map-popup {
    display: flex;
}

.dh-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px 10px;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}

.dh-popup-title {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.5px;
}

.dh-popup-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 20px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

.dh-popup-close:hover {
    color: #fff;
}

.dh-popup-list {
    overflow-y: auto;
    padding: 8px 0;
    flex: 1;
}

.dh-popup-list::-webkit-scrollbar {
    width: 4px;
}

.dh-popup-list::-webkit-scrollbar-track {
    background: rgba(255,255,255,0.08);
    border-radius: 2px;
}

.dh-popup-list::-webkit-scrollbar-thumb {
    background: rgba(255,255,255,0.3);
    border-radius: 2px;
}

.dh-popup-hotel {
    display: flex;
    gap: 12px;
    padding: 10px 18px;
    transition: background 0.2s;
}

.dh-popup-hotel:hover {
    background: rgba(255,255,255,0.08);
}

.dh-popup-hotel-img {
    width: 80px;
    height: 72px;
    border-radius: 6px;
    flex-shrink: 0;
}

.dh-popup-hotel-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.dh-popup-hotel-info strong {
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    line-height: 1.3;
}

.dh-popup-hotel-type {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.65);
}

.dh-popup-hotel-btn {
    font-family: 'Poppins', sans-serif;
    font-size: 11px;
    font-weight: 600;
    color: #fff;
    text-decoration: underline;
    text-underline-offset: 2px;
    margin-top: auto;
}

/* Mobile */
@media (max-width: 1200px) {
    .dh-text-col {
        flex: 0 0 400px;
        padding-left: 40px;
    }

    .dh-map-tabs {
        padding-left: 40px;
    }
}

@media (max-width: 1024px) {
    .dh-map-tabs {
        padding: 40px 0 0 30px;
    }

    .dh-tab-inner {
        flex-direction: column;
    }

    .dh-text-col {
        flex: none;
        width: 100%;
        padding: 24px 30px 40px;
    }

    .dh-map-col {
        width: 100%;
    }

    .dh-heading {
        font-size: 28px;
        max-width: 100%;
    }

    .dh-body-text {
        max-width: 100%;
    }

    .dh-layout-text-right .dh-map-col {
        order: 0;
    }

    .dh-layout-text-right .dh-text-col {
        order: 1;
        padding-left: 30px;
        padding-right: 30px;
    }

    .dh-map-popup {
        left: 50%;
        top: calc(100% + 16px);
        transform: translateX(-50%);
    }
}

@media (max-width: 600px) {
    .dh-map-tabs {
        padding: 24px 0 0 16px;
    }

    .dh-text-col {
        padding: 20px 16px;
    }

    .dh-heading {
        font-size: 24px;
    }

    .dh-map-col {
        width: 100%;
    }

    .dh-marker-label {
        display: none;
    }

    .dh-map-popup {
        width: 280px;
        left: 50%;
        top: calc(100% + 12px);
        transform: translateX(-50%);
    }
}
