/* Contact Page Styles */

.contact-section {
    width: 100%;
}

.contact-background {
    background-image: url('images/contact-us-image.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.contact-content {
    display: flex;
    width: 100%;
    max-width: 1200px;
    background: transparent;
    padding: 40px;
    border-radius: 10px;
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.contact-details {
    flex: 1;
    padding-right: 40px;
    background: rgba(0, 0, 0, 0.4);
    padding: 20px;
    border-radius: 8px;
}

.contact-details h2 {
    color: white;
    margin-bottom: 20px;
    font-size: 28px;
}

.contact-details p {
    margin-bottom: 15px;
    font-size: 18px;
    line-height: 1.6;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 3px solid #04aac9;
}

.contact-details i {
    margin-right: 10px;
    color: white;
}

.contact-form {
    flex: 1;
    padding-left: 40px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.8);
    padding: 20px;
    border-radius: 5px;
}

.contact-form label {
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    margin-bottom: 20px;
    padding: 12px;
    background: white;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
    color: black;
}

.contact-form textarea {
    height: 120px;
    resize: vertical;
}

.contact-form button {
    padding: 12px;
    background-color: #04aac9;
    color: white;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-form button:hover {
    background-color: #038ba3;
}

.contact-form button:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-content {
        flex-direction: column;
        padding: 20px;
    }

    .contact-details,
    .contact-form {
        padding: 0;
        margin-bottom: 20px;
    }

    .contact-details {
        padding-bottom: 20px;
    }

    .contact-form {
        padding-top: 20px;
    }
}