.top-header {
    width: 100%;
    background-color: #2f2f2f;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 20px;

    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-img {
    height: 90px;
    width: auto;
    display: block;
}

.header-contacts {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-bubble {
    background-color: #fff;
    color: #000;
    padding: 10px 18px;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    text-align: center;
    text-decoration: none;

    box-shadow: 0 3px 10px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-bubble:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.35);
}

.contact-bubble.phone a {
    color: inherit;
    text-decoration: none;
}

.contact-bubble.email {
    background-color: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.contact-bubble.email:hover {
    background-color: rgba(255,255,255,0.2);
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .logo-img {
        height: 70px;
    }

    .header-contacts {
        flex-direction: column;
        gap: 8px;
        justify-content: center;
    }

    .contact-bubble {
        width: auto;
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}