
/* Contact Section */
.contact-section {
    margin-top: 100px;
    padding: 50px 20px;
    color: #fff;
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #fff;
}

/* Contact Wrapper */
.contact-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 20px;
}

/* Contact Form */
.contact-form {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 20px;
    background: #333;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

.input-group {
    margin-bottom: 15px;
    text-align: left;
}

label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
}

input, textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #555;
    border-radius: 5px;
    background: #222;
    color: #fff;
}

button {
    width: 100%;
    padding: 12px;
    border: none;
    background: #007BFF;
    color: #fff;
    font-size: 1rem;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

button:hover {
    background: #0056b3;
}

/* Contact Info */
.contact-info {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
    padding: 20px;
}

.contact-info h3 {
    color: #fff;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 10px;
}

/* Google Maps */
iframe {
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-wrapper {
        flex-direction: column;
        align-items: center;
    }

    .contact-form, .contact-info {
        width: 100%;
    }
}
