/* Contact Section Styles */

#contact-section {
    min-height: 100vh;
    padding-top: 100px;
}

#contact-section .contact-page {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
  
}

#contact-section .contact-layout {
    background: white;
    border-radius: 2px;
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    border-radius: 20px 50px 20px 50px;
}

/* Contact Form */
#contact-section .contact-form-wrapper {
    display: flex;
    flex-direction: column;
}

#contact-section .contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

#contact-section .contact-input {
    font-family: 'Overpass', sans-serif;
    font-size: 0.95rem;
    padding: 0.85rem 1rem;
    border: 0.5px dashed #d0d0d0;
    border-radius: 2px;
    background: white;
    transition: border-color 0.2s;
    color: #333;
}

#contact-section .contact-input::placeholder {
    color: #d0d0d0;
}

#contact-section .contact-input:focus {
    outline: none;
    border-color: #8b5cf6;
}

#contact-section .contact-textarea {
    resize: vertical;
    min-height: 120px;
}

#contact-section .contact-submit-btn {
    font-family: 'Overpass', sans-serif;
    font-size: 14px;
    padding: 0.85rem 1.5rem;
   
    color: #666;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.2s;
    font-weight: 500;
}

#contact-section .contact-submit-btn:hover {
    background: #b8b8b8;
    color: #FFF;
}

#contact-section .contact-submit-btn:active {
    transform: scale(0.98);
}

/* Contact Information */
#contact-section .contact-info-wrapper {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}

#contact-section .contact-info {
    text-align: left;
    width: 100%;
}

#contact-section .contact-page .contact-info p {
    font-family: 'Overpass', sans-serif;
    font-size: 0.95rem;
    margin: 0 0 0.35rem 0;
    color: #333;
    line-height: 1.5;
    font-weight: 400;
}

#contact-section .contact-page .contact-info .contact-location {
    font-family: 'Overpass', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    margin-bottom: 0.25rem !important;
    text-align: left;
}

#contact-section .contact-page .contact-email a,
#contact-section .contact-page .contact-phone a {
    font-family: 'Overpass', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}

#contact-section .contact-page .contact-email a:hover,
#contact-section .contact-page .contact-phone a:hover {
    color: #8b5cf6;
}

/* Social Icons - Plain icons, no buttons */
#contact-section .contact-social-icons {
    display: flex;
    gap: 0.5rem;
    margin-top: 1.25rem;
    flex-wrap: wrap;
    align-items: center;
}

#contact-section .contact-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #8b9dc3;
    text-decoration: none;
    transition: all 0.2s;
    font-size: 1.75rem;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    width: auto;
    height: auto;
}

#contact-section .contact-social-icon:hover {
    color: #7788b3;
    transform: scale(1.1);
}

#contact-section .contact-social-icon i {
    line-height: 1;
    display: block;
}

/* Responsive Design */
@media (max-width: 968px) {
    #contact-section .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2.5rem 2rem;
        
    }

    #contact-section .contact-info {
        text-align: left;
    }

    #contact-section .contact-social-icons {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    #contact-section {
        padding: 1rem;
        padding-top: 4rem;
    }

    #contact-section .contact-page {
        padding-top: 3rem;
    }

    #contact-section .contact-layout {
        padding: 2rem 1.5rem;
        border-radius: 20px 50px 20px 50px;
    }

    #contact-section .contact-input {
        font-size: 0.9rem;
    }

    #contact-section .contact-page .contact-info p {
        font-size: 0.9rem;
    }

    #contact-section .contact-page .contact-info .contact-location {
        font-size: 0.9rem;
    }

    #contact-section .contact-page .contact-email a,
    #contact-section .contact-page .contact-phone a {
        font-size: 0.9rem;
    }

    #contact-section .contact-social-icon {
        font-size: 1.5rem;
    }
}

