/* 
    Contact Page Specific Styles 
*/

.contact-page-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 20px;
}

.contact-header {
    text-align: center;
    margin-bottom: 50px;
}

.contact-header h1 {
    font-size: 36px;
    color: #BFA44E;
    font-weight: 700;
}

.contact-body {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.contact-form-section,
.location-section {
    flex: 1;
    min-width: 300px;
}

.contact-form-section h2,
.location-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #333;
}

.contact-form-section form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form-section input,
.contact-form-section select,
.contact-form-section textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #f9f9f9;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-section input:focus,
.contact-form-section select:focus,
.contact-form-section textarea:focus {
    outline: none;
    border-color: #BFA44E;
}

.submit-btn {
    padding: 15px;
    background-color: #BFA44E;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.location-details {
    margin-bottom: 30px;
}

.location-details h3 {
    font-size: 22px;
    margin-bottom: 15px;
}

.location-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.location-details i {
    color: #BFA44E;
    margin-top: 5px;
}

.map-container {
    width: 100%;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
