/* =========================
   GLOBAL BLOCK CONTAINERS
========================= */
.container {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto;
}

/* =========================
   CONTACTS BLOCK
========================= */
.contacts-block {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 60px 0;
    box-sizing: border-box;
}

.contacts-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    width: 100%;
}

.contacts-people {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    flex: 1 1 auto;
    justify-content: center;
}

.contact-person {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 280px;
    padding: 20px 10px;
    transition: all 0.3s ease;
}

.contact-person img {
    width: 100%;
    max-width: 460px;
    height: auto;
    border-radius: 50%;
    margin-bottom: 15px;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0,0,0,0.6);
    transition: transform 0.3s ease;
}

.contact-person img:hover {
    transform: translateY(-5px) scale(1.05);
}

.contact-person h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.contact-person .position,
.contact-person .phone,
.contact-person .email {
    font-size: 16px;
    margin-bottom: 5px;
    opacity: 0.85;
}

.contact-person .phone a,
.contact-person .email a {
    color: inherit;
    text-decoration: none;
}

/* CONTACT FORM */
.contact-form {
    flex: 0 0 360px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact-form .wpcf7 input,
.contact-form .wpcf7 textarea {
    width: 100%;
    padding: 12px 10px;
    border: none;
    border-bottom: 1px solid rgba(0,0,0,0.3);
    background: transparent;
    color: #000;
    font-size: 15px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.contact-form .wpcf7 input[type="submit"] {
    margin-top: 10px;
    padding: 12px 25px;
    border: 1px solid #000;
    background: transparent;
    color: #000 !important;
    font-weight: 600;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease, transform 0.2s ease;
}

.contact-form .wpcf7 input[type="submit"]:hover {
    background: #000;
    color: #fff !important;
    transform: scale(1.05);
}

/* =========================
   OUR AWARDS BLOCK
========================= */
.awards-section {
    width: 100%;
    padding: 50px 20px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
}

.awards-title {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

.awards-slider-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.awards-slider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.award-item {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.award-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    margin-bottom: 15px;
}

.award-text {
    font-size: 16px;
    line-height: 1.4;
    color: #000;
    max-width: 140px;
    text-align: center;
}

/* =========================
   MEDIA QUERIES
========================= */

/* Tablets and small desktops */
@media screen and (max-width: 1024px) {
    .contacts-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .contacts-people {
        gap: 35px;
    }

    .contact-person {
        max-width: 45%;
    }

    .contact-form {
        max-width: 90%;
        margin-top: 30px;
    }

    .award-logo {
        width: 100px;
        height: 100px;
    }
}

/* Mobile phones */
@media screen and (max-width: 768px) {
    .contacts-container {
        flex-direction: column;
        align-items: center;
    }

    .contacts-people {
        flex-direction: column;
        gap: 25px;
    }

    .contact-person {
        max-width: 90%;
    }

    .contact-form {
        flex: 1 1 100%;
    }

    .award-logo {
        width: 80px;
        height: 80px;
    }

    .awards-title {
        font-size: 24px;
    }
}

/* Very small screens */
@media screen and (max-width: 480px) {
    .contact-person img {
        max-width: 70%;
    }

    .award-logo {
        width: 60px;
        height: 60px;
    }

    .awards-title {
        font-size: 20px;
    }

    .contact-form .wpcf7 input,
    .contact-form .wpcf7 textarea {
        font-size: 14px;
    }

    .contact-form .wpcf7 input[type="submit"] {
        padding: 10px 20px;
    }
}