.row__contact {
    display: flex;
    gap: 0;
    border: 2px solid #FFD200;
    border-radius: 16px;
    padding: 0;
	overflow:hidden;
    background: #fff;
}

.contact__info {
    flex: 0 0 380px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 30px;
}

.contact__item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 8px 0;
}

.contact__icon {
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    background: #FFD200;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    transition: all 0.3s ease;
}

.contact__item:hover .contact__icon {
    background: #000;
    color: #FFD200;
    transform: scale(1.1);
}

.contact__text {
    color: #333;
    text-decoration: none;
    font-size: 18px;
    line-height: 1.4;
    font-weight: 400;
    padding-top: 12px;
}

.contact__phone {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}
.contact__phone:hover, .contact__email:hover{color:#000; text-decoration:none}
.contact__email {
    font-size: 18px;
    font-weight: 400;
}

.contact__btn {
    display: inline-block;
    padding: 16px 32px;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    margin-top: 10px;
    border: none;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.contact__map {
    flex: 1;
    border-radius: 0;
    overflow: hidden;
}

.contact__map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Адаптивность */
@media (max-width: 991px) {
    .row__contact {
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    .contact__info {
        flex: none;
        width: 100%;
		padding:20px;
		gap:10px;
    }
    
    .contact__map {
        min-height: 300px;
    }
    
    .contact__map iframe {
        min-height: 300px;
    }
    
    
    .contact__text {
        font-size: 16px;
    }
    .contact__phone {
        font-size: 20px;
    }
	.contact__btn {
    padding: 12px 20px;
    font-size: 16px;
}
}