.contact {
    height: 50vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--light);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/lap.jpg') no-repeat center center/cover;
    filter: blur(8px);
    z-index: 0;
}

.contact::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.contact-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.contact-container h1 {
    font-size: 2rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--light);
    text-shadow:
        0 0 10px var(--light-blue),
        0 0 20px var(--light-blue),
        0 0 30px var(--light-blue),
        0 0 40px var(--light-blue);
    margin-bottom: 10px;
}

.contact-container p.contact-text {
    font-size: 1.5rem;
    color: var(--light-blue);
    margin-bottom: 40px;
    text-shadow:
        0 0 5px var(--light-blue),
        0 0 10px var(--light-blue),
        0 0 15px var(--light-blue);
    letter-spacing: 1px;
}

.contact-icons {
    display: flex;
    justify-content: center;
    gap: 55px;
    font-size: 2rem;
}

.contact-icons a {
    color: var(--light);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.contact-icons a:hover {
    color: var(--light-blue);
    transform: scale(1.2);
}

.contact-icons a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 2px solid var(--light-blue);
    z-index: -1;
    transition: 0.3s ease;
}

.contact-icons a:hover::before {
    background: rgba(240, 244, 255, 0.2);
}


#map {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

#map iframe {
    width: 100%;
}

#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;   /* min width 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 {
    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);  
}
