/* Contacts Page Styles */

.contacts-hero {
    position: relative;
    min-height: 685px;
    background-image: url('/site/img/ContactsBack.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 120px;
    padding-bottom: 60px;
}

.contacts-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.contacts-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    font-size: 16px;
    color: #E5E7F1;
}

.breadcrumbs a {
    color: #E5E7F1;
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumbs a:hover {
    color: #FFFFFF;
}

.breadcrumbs .current {
    color: #FFFFFF;
}

.contacts-card {
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px;
    max-width: 608px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contacts-title {
    font-family: 'Inter', sans-serif;
    font-size: 44px;
    font-weight: 600;
    line-height: 53.25px;
    color: #212E38;
    margin: 0;
}

.contact-block {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.6px;
    color: #9699A5;
}

.contact-email {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    line-height: 26px;
    color: #212E38;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-email:hover {
    color: #FFCA62;
}

.telegram-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #212E38;
    border-radius: 90px;
    transition: transform 0.3s, box-shadow 0.3s;
    align-self: flex-start;
}

.telegram-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(33, 46, 56, 0.3);
}

.download-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.download-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 15.6px;
    color: #9699A5;
}

.download-buttons {
    display: flex;
    gap: 8px;
}

.download-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 200px;
    height: 52px;
    border: 1px solid #212E38;
    border-radius: 8px;
    padding: 10px 24px;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.download-btn:hover {
    background: rgba(33, 46, 56, 0.05);
    transform: translateY(-2px);
}

.download-btn span {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 20.8px;
    color: #212E38;
}

/* Responsive styles */
@media (max-width: 768px) {
    /* ====== HEADER — white background (hero bg removed) ====== */
    .header {
        background: #FFFFFF;
        border-bottom: 1px solid #E5E7F1;
        box-shadow: 0 7px 25px rgba(60, 60, 60, 0.1);
    }

    .header__logo-text {
        color: #212E38;
    }

    /* ====== HERO — flat, no background image ====== */
    .contacts-hero {
        min-height: auto;
        background: none;
        padding-top: 72px;
        padding-bottom: 48px;
    }

    .contacts-hero::before {
        display: none;
    }

    .contacts-hero .container {
        padding: 0 16px;
    }

    /* ====== BREADCRUMBS — dark colors ====== */
    .breadcrumbs {
        color: #9699A5;
        margin-bottom: 0;
        font-size: 16px;
    }

    .breadcrumbs a {
        color: #9699A5;
    }

    .breadcrumbs a:hover {
        color: #212E38;
    }

    .breadcrumbs .current {
        color: #212E38;
    }

    /* ====== CARD — transparent, no card styling ====== */
    .contacts-card {
        background: transparent;
        border-radius: 0;
        padding: 0;
        max-width: 100%;
        gap: 40px;
    }

    .contacts-title {
        font-size: 24px;
        line-height: 29px;
    }

    /* ====== DOWNLOAD BUTTONS — row layout ====== */
    .download-buttons {
        flex-direction: row;
        gap: 16px;
    }

    .download-btn {
        flex: 1;
        width: auto;
        height: 46px;
    }
}

@media (max-width: 480px) {
    .contacts-hero {
        padding-top: 64px;
    }

    .contacts-card {
        gap: 32px;
    }
}
