.elementor-4848 .elementor-element.elementor-element-b083b50{--display:flex;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-a97d844 *//* ОБЁРТКА — БЕЗ ОТСТУПОВ */
.contacts-wrapper {
    width: 100%;
    margin: 0;
    padding: 0;
}

.contacts-section {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f8fafc 100%);
    border-radius: 30px;
    padding: 4rem 2rem;
    border: 1px solid #bae6fd;
    margin: 0;
}

.contacts-header {
    text-align: center;
    margin-bottom: 3.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contacts-header h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.contacts-subtitle {
    font-size: clamp(1rem, 3vw, 1.2rem);
    color: #64748b;
    line-height: 1.6;
    font-weight: 500;
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-card {
    background: #ffffff;
    padding: 2.5rem 2rem;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.02);
}

.contact-card:hover {
    border-color: #0ea5e9;
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(14, 165, 233, 0.1);
}

.contact-icon {
    font-size: 3.5rem;
    margin-bottom: 1.25rem;
    display: block;
}

.contact-label {
    font-size: 0.85rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-value {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 0.75rem;
    line-height: 1.3;
    word-break: break-word;
}

.contact-value a {
    color: #0ea5e9;
    text-decoration: none;
    transition: all 0.2s ease;
    border-bottom: 2px solid transparent;
}

.contact-value a:hover {
    color: #0284c7;
    border-bottom-color: #0284c7;
}

.contact-subtext {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-weight: 500;
}

.contact-extra {
    font-size: 1.05rem;
    color: #475569;
    line-height: 1.6;
    margin-top: 0.75rem;
    font-weight: 500;
}

/* Специальная карточка с адресом и картой */
.address-card {
    background: #ffffff;
    padding: 2.5rem 1.5rem;
    border-radius: 28px;
    border: 1px solid #e2e8f0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
    margin-top: 3rem;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
}

.address-info {
    text-align: left;
    min-width: 0;
}

.address-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.address-title {
    font-size: clamp(1.6rem, 3.5vw, 2.2rem);
    font-weight: 900;
    color: #0f172a;
    margin-bottom: 1.25rem;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.address-text {
    font-size: clamp(1rem, 2.2vw, 1.2rem);
    color: #475569;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

.map-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.map-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem; /* уменьшил gap */
    padding: 0.85rem 1rem; /* ещё компактнее */
    border-radius: 14px;
    text-decoration: none;
    font-weight: 700;
    font-size: clamp(0.7rem, 1.2vw, 0.85rem); /* ещё меньше шрифт */
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    white-space: nowrap;
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
}

.btn-yandex {
    background: linear-gradient(135deg, #fc3f1d, #d92d11);
    color: white;
}

.btn-yandex:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(252, 63, 29, 0.35);
}

.btn-google {
    background: linear-gradient(135deg, #4285f4, #357ae8);
    color: white;
}

.btn-google:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.35);
}

.map-image {
    position: relative;
    min-width: 0;
}

.map-image img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12);
    transition: transform 0.3s ease;
}

.map-image img:hover {
    transform: scale(1.02);
}

/* АДАПТИВ */
@media (max-width: 968px) {
    .contacts-section {
        padding: 2.5rem 1.5rem;
        border-radius: 20px;
    }

    .contacts-header {
        margin-bottom: 2.5rem;
    }

    .contacts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .address-card {
        grid-template-columns: 1fr;
        padding: 2rem 1.5rem;
        gap: 2rem;
        border-radius: 20px;
    }

    .address-info {
        text-align: center;
    }

    .map-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .map-btn {
        width: 100%;
        justify-content: center;
        font-size: 0.95rem;
        padding: 1rem 1.5rem;
        gap: 0.6rem;
    }
}

/* ПЛАНШЕТЫ */
@media (max-width: 1200px) and (min-width: 969px) {
    .contacts-section {
        padding: 3rem 1.5rem;
    }

    .address-card {
        padding: 2rem 1.25rem;
        gap: 1.5rem;
    }
    
    .map-btn {
        font-size: 0.75rem;
        padding: 0.8rem 0.9rem;
        gap: 0.35rem;
    }
}

/* МАЛЕНЬКИЕ ПЛАНШЕТЫ И СРЕДНИЕ ЭКРАНЫ */
@media (max-width: 1400px) and (min-width: 1201px) {
    .map-btn {
        font-size: 0.8rem;
        padding: 0.85rem 1rem;
    }
}/* End custom CSS */