/* Main Contact Section */
.contact-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background-color: #141414;
}

.contact-form {
    background-color: #333;
    padding: 30px;
    border-radius: 10px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.contact-form label {
    display: block;
    margin-bottom: 10px;
    font-size: 1.1em;
}

.contact-form input, .contact-form textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: none;
    border-radius: 5px;
    background-color: #222;
    color: #fff;
    font-size: 1em;
}

.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    background-color: #333;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 5px;
    background-color: #ff9505;
    color: #fff;
    font-size: 1.2em;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #ffae42;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Social Links (Inside the Form) */
.contact-form .social-links {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.contact-form .social-links a {
    width: 40%;
    text-align: center;
    padding: 10px;
    background-color: #ff9505;
    color: #fff;
    border-radius: 5px;
    font-size: 1.2em;
    transition: background-color 0.3s;
}

.contact-form .social-links a:hover {
    background-color: #ffae42;
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

/* Mobile Styles */
@media (max-width: 600px) {
    .contact-container {
        padding: 20px; 
    }

    .contact-form {
        padding: 20px; 
        max-width: 90%; 
    }

    .contact-form label {
        font-size: 1em; 
    }

    .contact-form input, .contact-form textarea {
        padding: 10px; 
        font-size: 0.9em; 
        width: 95%;
    }

    .contact-form button {
        padding: 1px; 
        font-size: 1.1em; 
    }

    .contact-form .social-links {
        flex-direction: column; 
        gap: 10px;
        width: 95%;
    }

    .contact-form .social-links a {
        width: 99%;
    }
}