/* ===============================
   Google Font
================================ */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* ===============================
   Global Reset & Base Style
================================ */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(135deg, #6c5ce7, #00b894);
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
}

/* ===============================
   Main Container
================================ */
.contact-container {
    background-color: #ffffff;
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    width: 100%;
    max-width: 600px;
    transition: transform 0.3s ease;
}

.contact-container:hover {
    transform: translateY(-5px);
}

.contact-container h2 {
    text-align: center;
    margin-bottom: 25px;
    color: #333;
    font-size: 26px;
    font-weight: 600;
}

/* ===============================
   Form Groups
================================ */
.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 6px;
    font-weight: 500;
    color: #555;
}

/* Input, Select, Textarea */
.form-group input,
.form-group textarea,
.form-group select {
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 15px;
    outline: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: #6c5ce7;
    box-shadow: 0 0 8px rgba(108, 92, 231, 0.25);
}

/* File Input */
input[type="file"] {
    padding: 8px;
    background-color: #f7f7f7;
    cursor: pointer;
}

/* ===============================
   Radio Group
================================ */
.radio-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.radio-group label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 15px;
}

/* ===============================
   Submit Button
================================ */
button {
    width: 100%;
    padding: 14px;
    border: none;
    border-radius: 10px;
    background-color: #6c5ce7;
    color: #ffffff;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button:hover {
    background-color: #341f97;
    transform: scale(1.03);
}

/* ===============================
   Status Message
================================ */
#status {
    margin-top: 15px;
    text-align: center;
    font-weight: 500;
    font-size: 15px;
}

/* ===============================
   Responsive Design
================================ */
@media screen and (max-width: 768px) {
    .contact-container {
        padding: 25px 20px;
    }

    .radio-group {
        gap: 12px;
    }
}

@media screen and (max-width: 480px) {
    .contact-container {
        padding: 20px 15px;
    }

    button {
        font-size: 16px;
        padding: 12px;
    }

    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 14px;
        padding: 10px 12px;
    }
}
