/* Contact */
.contact-section {
    background-color: var(--light-bg);
    border-top: 1px solid var(--border-light);
    scroll-margin-top: 3rem;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    border: 2px solid var(--primary-dark);
    padding: 2rem;
    border-radius: 28px;
}

.field {
    margin-bottom: 2rem;
}

.field label {
    display: block;
    color: var(--dark);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.field input, .field textarea {
    width: 100%;
    border: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    border-radius: 8px;
    background-color: white;
}

.field textarea {
    resize: vertical;
    min-height: 12rem;
}

.send-btn {
    background-color: var(--primary-dark);  
    color: white;
    width: 100%;
    padding: 1rem;
    font-size: 1.125rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
    cursor: pointer;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.send-btn i {
    font-size: 1.125rem;
    transition: all 0.3s ease-in;
}

@media (hover: hover) and (pointer: fine) {
    .send-btn:hover i {
        transform: translateX(8px);
    }
}

.send-btn:active {
    transform: scale(0.95);
}

.subject {
    position: absolute;
    left: -99999px;
    top: -99999px;
    height: 0;
    width: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    z-index: -99999;
}

iframe {
    border-radius: 28px;
    margin-bottom: 2rem;
    width: 100%;
    height: 19rem;
}

.contact-par {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    margin-bottom: 1rem;
}

.contact-span {
    color: var(--dark);
    font-weight: 500;
}

.social-media-icon {
    display: inline-block;
    font-size: 1.25rem;
    background: var(--primary-light);
    padding: 0.5rem 0.75rem;
    border-radius: 1.375rem;
    color: black;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

@media (hover: hover) and (pointer: fine) {
    .social-media-icon:hover {
        background-color: gold;
        color: black;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: auto; 
        max-width: 30rem;
        margin: 0 auto;
    }

    .contact-form {
        padding: 1.25rem 1rem;
    }
}


/* Qiuck links */
.footer-section {
    background-color: var(--dark);
    padding: 1rem 0.5rem;
}

.footer-wrapper {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
}