  /* ===== CONTACTS PAGE ===== */

.page-hero {
    background: linear-gradient(135deg, #377850 0%, #327457 100%);
    color: #fff;
    padding: 48px 0 56px;
}

.page-hero-content {
    max-width: 700px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 20px;
}

.breadcrumbs a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumbs a:hover {
    color: #78AF69;
}

.page-hero h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 14px;
    line-height: 1.15;
}

.page-hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    max-width: 560px;
}

/* Contacts Page Section */
.contacts-page-section {
    padding: 64px 0;
    background: #F8F9FA;
}

.contacts-page-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 32px;
    align-items: start;
}

.contacts-page-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-page-card {
    background: #fff;
    border-radius: 14px;
    padding: 24px;
    border: 1px solid #E9ECEF;
    transition: all 0.25s ease;
}

.contact-page-card:hover {
    border-color: #78AF69;
    box-shadow: 0 6px 24px rgba(0,0,0,0.05);
}

.contact-page-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(120, 175, 105, 0.1);
    color: #78AF69;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.contact-page-icon svg {
    width: 22px;
    height: 22px;
}

.contact-page-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.contact-page-link {
    display: block;
    font-size: 14px;
    color: #495057;
    text-decoration: none;
    line-height: 1.7;
    transition: color 0.2s ease;
}

.contact-page-link:hover {
    color: #78AF69;
}

.contact-page-text {
    font-size: 14px;
    color: #495057;
    line-height: 1.7;
    margin: 0;
}

/* Map */
.map-wrap {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #E9ECEF;
    height: 100%;
    min-height: 320px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 320px;
    background: #E9ECEF;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #6C757D;
    gap: 8px;
}

.map-placeholder svg {
    width: 40px;
    height: 40px;
    color: #ADB5BD;
}

.map-placeholder p {
    font-size: 16px;
    font-weight: 600;
    margin: 0;
}

.map-placeholder span {
    font-size: 13px;
    color: #ADB5BD;
}

/* Contacts Form Section */
.contacts-form-section {
    padding: 64px 0;
    background: #fff;
    border-top: 1px solid #E9ECEF;
}

.contacts-form-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.contacts-form-text h2 {
    font-size: 28px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 14px;
}

.contacts-form-text > p {
    font-size: 15px;
    color: #6C757D;
    line-height: 1.7;
    margin-bottom: 24px;
}

.contacts-form-direct {
    padding-top: 20px;
    border-top: 1px solid #E9ECEF;
}

.contacts-form-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 20px;
    font-weight: 700;
    color: #212529;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contacts-form-phone:hover {
    color: #78AF69;
}

.contacts-form-phone svg {
    color: #78AF69;
}

/* Form */
.contacts-page-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contacts-page-form input,
.contacts-page-form textarea {
    padding: 14px 16px;
    border: 1px solid #DEE2E6;
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    color: #212529;
    background: #fff;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    width: 100%;
}

.contacts-page-form input:focus,
.contacts-page-form textarea:focus {
    border-color: #78AF69;
    box-shadow: 0 0 0 3px rgba(120, 175, 105, 0.12);
}

.contacts-page-form input::placeholder,
.contacts-page-form textarea::placeholder {
    color: #ADB5BD;
}

.contacts-page-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.contacts-page-form .btn-form {
    margin-top: 4px;
}

.nav-link.active {
    background: #78AF69;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.15);
}

/* ===== ADAPTIVE ===== */
@media (max-width: 1024px) {
    .contacts-page-layout {
        grid-template-columns: 1fr;
    }
    .map-wrap {
        min-height: 280px;
    }
    .contacts-form-layout {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding: 32px 0 40px;
    }
    .page-hero h1 {
        font-size: 26px;
    }
    .contacts-page-section {
        padding: 40px 0;
    }
    .contacts-page-info {
        grid-template-columns: 1fr;
    }
    .contact-page-card {
        padding: 20px;
    }
    .contacts-form-section {
        padding: 40px 0;
    }
    .contacts-form-text h2 {
        font-size: 22px;
    }
    .contacts-page-form .form-row {
        grid-template-columns: 1fr;
    }
}
