/* ============================================
   CONTACT HERO SECTION
   ============================================ */
.contact {
    min-height: 55vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    padding: calc(74px + 4vw) 7vw 4vw;
    gap: 3rem;
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(rgba(243, 248, 250, 0.87), rgba(243, 248, 250, 0.87)),
        url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1600&q=80')
        no-repeat center center / cover;
    z-index: 0;
}

.contact::after {
    content: none;
}

.contact-container {
    position: relative;
    z-index: 2;
    text-align: center;
    flex: 1 1 350px;
}

.contact-container h1 {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blue);
    text-shadow: none;
    margin-bottom: 14px;
}

.contact-container p.contact-text {
    font-family: 'Jost', sans-serif;
    font-size: clamp(0.95rem, 1.8vw, 1.15rem);
    color: var(--grey);
    margin-bottom: 40px;
    letter-spacing: 0.5px;
    text-shadow: none;
    line-height: 1.7;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 50px;
    font-size: 1.8rem;
}

.contact-icons a {
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icons a:hover {
    color: var(--hover-blue);
    transform: scale(1.2);
}

.contact-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(37, 49, 133, 0.35);
    z-index: -1;
    transition: 0.3s ease;
}

.contact-icons a:hover::before {
    background: rgba(37, 49, 133, 0.08);
    border-color: var(--blue);
}

/* ============================================
   MAP SECTION
   ============================================ */
#map {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

#map iframe {
    width: 100%;
}

/* ============================================
   CONTACT FORM + DETAILS SECTION
   ============================================ */
#contact {
    padding: 8vw;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
}

#contact .getin {
    flex: 1 1 300px;
    max-width: 400px;
}

#contact .getin h2 {
    color: #2c234d;
    font-size: 30px;
    font-weight: 800;
    line-height: 0.8;
    margin-bottom: 16px;
}

#contact .getin p {
    color: #686875;
    line-height: 24px;
    margin-bottom: 33px;
    padding-bottom: 25px;
    border-bottom: 1px solid #e5e4ed;
}

#contact .getin h3 {
    color: #2c234d;
    font-size: 16px;
    font-weight: 600;
    line-height: 26px;
    margin-bottom: 15px;
}

#contact .getin .getin-details div {
    display: flex;
}

#contact .getin .getin-details div .get {
    font-size: 16px;
    line-height: 22px;
    color: #5838fc;
    margin-right: 20px;
}

#contact .getin .getin-details div p {
    font-size: 14px;
    border-bottom: none;
    line-height: 22px;
    margin-bottom: 15px;
}

#contact .getin .getin-details .pro-links i {
    margin-right: 8px;
}

#contact .form {
    flex: 1 1 400px;
    width: auto;
    min-width: 280px;
    background: #f7f6fa;
    padding: 40px;
    border-radius: 10px;
}

#contact .form h4 {
    font-size: 24px;
    color: #2c234d;
    line-height: 30px;
    margin-bottom: 8px;
}

#contact .form p {
    color: #686875;
    line-height: 24px;
    padding-bottom: 25px;
}

#contact .form .form-row {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

#contact .form .form-row input {
    width: 48%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background: var(--light);
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

#contact .form .form-col input,
#contact .form .form-col textarea {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    border-radius: 3px;
    border: none;
    background: var(--light);
    color: #7e7c87;
    outline: none;
    padding: 20px 30px;
    margin-bottom: 20px;
}

/* ============================================
   PRO LINKS (SOCIAL ICONS)
   ============================================ */
.pro-links {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.pro-links a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--blue);
    border-radius: 50%;
    color: var(--blue);
    text-decoration: none;
    transition: all 0.3s ease;
}

.pro-links a:hover {
    background: var(--blue);
    color: var(--light);
    border: 1px solid var(--hover-blue);
    transform: scale(1.1);
}

/* ============================================
   MEDIA QUERIES
   ============================================ */
@media (max-width: 1024px) {
    .contact {
        padding: calc(74px + 3vw) 5vw 3vw;
        gap: 2rem;
    }

    #contact {
        padding: 6vw;
    }

    #map {
        width: 90%;
        padding: 50px 0;
    }
}

@media (max-width: 768px) {
    .contact {
        min-height: 45vh;
        padding: calc(74px + 2vw) 4vw 3vw;
    }

    .contact-icons {
        gap: 28px;
        font-size: 1.5rem;
    }

    .contact-icons a::before {
        width: 52px;
        height: 52px;
    }

    #contact {
        flex-direction: column;
        padding: 40px 20px;
    }

    #contact .getin {
        max-width: 100%;
    }

    #contact .form {
        padding: 24px;
    }

    #contact .form .form-row {
        flex-direction: column;
    }

    #contact .form .form-row input {
        width: 100%;
    }

    #map {
        width: 95%;
        padding: 30px 0;
    }
}

@media (max-width: 480px) {
    .contact {
        min-height: 40vh;
        padding: calc(74px + 1vw) 4vw 2vw;
    }

    .contact-icons {
        gap: 16px;
        font-size: 1.3rem;
    }

    .contact-icons a::before {
        width: 44px;
        height: 44px;
    }

    #contact .form {
        padding: 16px;
    }
}