.contacts-hero {
    position: relative;
    width: 100%;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: clamp(80px, 6.25vw, 120px) 0;
    color: #ffffff;
    font-family: 'Gilroy', sans-serif;
    overflow: hidden;
}

.contacts-hero__bg {
    position: absolute;
    top: -15%;
    left: 0;
    width: 100%;
    height: 120%;
    background: linear-gradient(0deg, rgba(0, 82, 76, 0.4), rgba(0, 82, 76, 0.4)), url('../images/contacts/contacts.jpg') no-repeat center center;
    background-size: cover;
    z-index: 0;
    will-change: transform;
}

.contacts-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.2) 100%);
    z-index: 1;
}

.contacts-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1170px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(20px, 2.5vw, 40px);
}

.contacts-title {
    font-size: clamp(40px, 8vw, 100px);
    font-weight: 900;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: clamp(10px, 1.56vw, 20px);
    line-height: 0.9;
    letter-spacing: -0.02em;
}

.contacts-map-box {
    width: 100%;
    height: clamp(300px, 40vw, 600px);
    background: #000;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.contacts-map-box .contacts__map {
    width: 100%;
    height: 100%;
    max-width: unset;
}

.contacts-grid {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: clamp(10px, 2vw, 30px);
    flex-wrap: wrap;
    margin-top: 20px;
}

.contacts-card {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(3px, 1vw, 20px);
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
}

.contacts-card__label {
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 900;
    letter-spacing: 0.05em;
}

.contacts-card__value {
    font-size: clamp(18px, 1.25vw, 24px);
    font-weight: 700;
    line-height: 1.4;
}

.contacts-card__value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s;
}

.contacts-card__value a:hover {
    color: #17bbc7;
}

.contacts-legal {
    width: 100%;
    font-size: clamp(14px, 1vw, 18px);
    font-weight: 500;
    text-align: center;
    margin: clamp(10px, 2vw, 40px) 0;
    opacity: 0.6;
}

.contacts-social {
    display: flex;
    gap: 30px;
    align-items: center;
    margin-bottom: clamp(20px, 2vw, 40px);
}

.contacts-social__icon {
    width: 45px;
    height: 45px;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.contacts-social__icon:hover {
    transform: scale(1.2);
}

.contacts-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 400px;
    height: 70px;
    background: #17bbc7;
    border: none;
    border-radius: 90px;
    color: #ffffff;
    font-size: clamp(16px, 1.2vw, 20px);
    font-weight: 800;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 10px 20px rgba(23, 187, 199, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.contacts-cta:hover {
    background: #139ea9;
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(23, 187, 199, 0.4);
}

@media (max-width: 1199px) {
    .contacts-container {
        padding: 0 20px;
    }
}

@media (max-width: 768px) {
    .contacts-grid {
        flex-direction: column;
    }
    .contacts-title {
        line-height: 1.1;
    }
    .contacts-card {
        padding: 5px 0;
    }
    .contacts-cta {
        max-width: 100%;
    }
    .contacts-social {
        margin-bottom: 0;
    }
    .contacts-cta {
        font-size: 14px;
        height: 50px;
    }
}