/* Contact Page Styles */

/* Location Map */
.location {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.location iframe {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Contact Us Section */
.contact-us {
    width: 80%;
    margin: auto;
    padding: 80px 0;
}

.contact-col {
    flex-basis: 48%;
    margin-bottom: 30px;
}

.contact-col div {
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}

.contact-col div .fa {
    font-size: 28px;
    color: #FFB22C;
    margin: 10px 30px 10px 0;
}

.contact-col div h5 {
    font-size: 18px;
    margin-bottom: 5px;
    color: #333;
    font-weight: 600;
}

.contact-col div p {
    padding: 0;
    font-size: 14px;
    color: #777;
}

.contact-col form {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-col form h3 {
    font-size: 22px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.contact-col input, .contact-col textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 17px;
    outline: none;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.contact-col input:focus, .contact-col textarea:focus {
    border-color: #FFB22C;
}

.submit-btn {
    display: inline-block;
    padding: 12px 34px;
    background-color: #FFB22C;
    color: #fff;
    border: none;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-btn:hover {
    background-color: #e09a20;
}

/* Form success message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 5px;
    text-align: center;
}

.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Media Queries */
@media(max-width: 768px) {
    .row {
        flex-direction: column;
    }
    
    .contact-col div {
        margin-bottom: 30px;
    }
    
    .contact-col div .fa {
        font-size: 24px;
        margin-right: 20px;
    }
    
    .location iframe {
        height: 300px;
    }
}