:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-4d76e55 */.contacts-section {
    position: relative !important;
    width: 100vw !important;
    max-width: 100vw !important;
    left: 50% !important;
    margin-left: -50vw !important;
    box-sizing: border-box !important;
    padding: 140px 5vw 80px 5vw !important;
    background-color: #0d0d0d !important;
    color: #ffffff !important;
}

.contacts-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    box-sizing: border-box !important;
}

.contacts-header {
    text-align: center;
    margin-bottom: 50px;
}

.contacts-header h1 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #ffffff;
}

.contacts-header p {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
}

.contacts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.contact-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px 30px;
    box-sizing: border-box;
}

.contact-card h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #e2d2bd;
}

.contact-card a,
.contact-card p {
    font-size: 15px;
    color: #ffffff;
    text-decoration: none;
    line-height: 1.6;
}

.contact-card a:hover {
    color: #e2d2bd;
}

.contacts-form-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    box-sizing: border-box;
}

.form-box h2 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #ffffff;
}

.lead-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.lead-form input,
.lead-form textarea {
    width: 100%;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px;
    box-sizing: border-box;
    outline: none;
}

.lead-form input:focus,
.lead-form textarea:focus {
    border-color: #e2d2bd;
}

.btn-submit {
    padding: 14px 20px !important;
    border-radius: 8px !important;
    border: 1px solid #e2d2bd !important;
    background: #0d0d0d !important;
    color: #ffffff !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
}

.btn-submit:hover {
    background: #e2d2bd !important;
    border-color: #e2d2bd !important;
    color: #0d0d0d !important;
    transform: translateY(-1px) !important;
}

.map-box {
    border-radius: 12px;
    overflow: hidden;
    min-height: 350px;
}

@media (max-width: 992px) {
    .contacts-section {
        padding: 100px 3vw 60px 3vw !important;
    }
    .contacts-grid,
    .contacts-form-map {
        grid-template-columns: 1fr;
    }
}/* End custom CSS */