/* ==========================================
   Dar Arabia — Home Map Promotion
   ========================================== */

.dar-home-property-map {
    padding: 67px 0;
    background: #ffffff;
}

.dar-home-property-map__container {
    width: min(1180px, calc(100% - 36px));
    margin-inline: auto;
}

.dar-home-property-map__box {
    display: grid;
    grid-template-columns:
        minmax(0, 0.88fr)
        minmax(420px, 1.12fr);
    gap: 35px;
    align-items: center;
    padding: 32px;
    border: 1px solid #e7e3eb;
    border-radius: 25px;
    background:
        radial-gradient(
            circle at 8% 90%,
            rgba(217, 90, 43, 0.08),
            transparent 27%
        ),
        #f8f7fa;
    box-shadow: 0 18px 46px rgba(34, 22, 64, 0.075);
}

.dar-home-property-map__label {
    display: block;
    margin-bottom: 9px;
    color: #d95a2b;
    font-size: 10.5px;
    font-weight: 900;
}

.dar-home-property-map__content h2 {
    margin: 0;
    color: #2e2151;
    font-size: clamp(25px, 3.5vw, 37px);
    line-height: 1.4;
    font-weight: 900;
}

.dar-home-property-map__content p {
    margin: 11px 0 21px;
    color: #756e7c;
    font-size: 12px;
    line-height: 1.9;
}

.dar-home-property-map__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 18px;
    border-radius: 11px;
    background: #2d176f;
    color: #ffffff;
    text-decoration: none;
    font-size: 10.5px;
    font-weight: 900;
}

.dar-home-property-map__button:hover {
    background: #d95a2b;
}

.dar-home-property-map__visual {
    position: relative;
    overflow: hidden;
    min-height: 300px;
    border-radius: 19px;
    background:
        linear-gradient(
            rgba(48, 24, 115, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(48, 24, 115, 0.1) 1px,
            transparent 1px
        ),
        linear-gradient(
            145deg,
            #e9e5ef,
            #f7f5f9
        );
    background-size:
        34px 34px,
        34px 34px,
        auto;
}

.dar-home-property-map__road {
    position: absolute;
    width: 140%;
    height: 35px;
    border: 9px solid rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    background: rgba(91, 75, 126, 0.17);
    transform: rotate(-18deg);
}

.dar-home-property-map__road--one {
    inset-inline-start: -30%;
    top: 44%;
}

.dar-home-property-map__road--two {
    inset-inline-start: -16%;
    top: 61%;
    transform: rotate(24deg);
}

.dar-home-property-map__pin {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 4px solid #ffffff;
    border-radius: 50% 50% 50% 8px;
    color: #ffffff;
    font-size: 10px;
    font-weight: 900;
    box-shadow: 0 8px 20px rgba(34, 22, 64, 0.22);
    transform: rotate(-45deg);
}

.dar-home-property-map__pin span {
    transform: rotate(45deg);
}

.dar-home-property-map__pin--one {
    inset-inline-start: 21%;
    top: 23%;
    background: #301873;
}

.dar-home-property-map__pin--two {
    inset-inline-start: 59%;
    top: 32%;
    background: #d95a2b;
}

.dar-home-property-map__pin--three {
    inset-inline-start: 44%;
    top: 68%;
    background: #16876b;
}

.dar-home-property-map__info {
    position: absolute;
    inset-inline-end: 16px;
    bottom: 16px;
    padding: 12px 14px;
    border: 1px solid rgba(48, 24, 115, 0.11);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.93);
    color: #43375d;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(34, 22, 64, 0.12);
}

@media (max-width: 900px) {
    .dar-home-property-map__box {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 620px) {
    .dar-home-property-map {
        padding: 50px 0;
    }

    .dar-home-property-map__container {
        width: min(100% - 24px, 1180px);
    }

    .dar-home-property-map__box {
        padding: 20px;
    }

    .dar-home-property-map__visual {
        min-height: 240px;
    }
}
