/* Contact Page Specific Styles */

.contact-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('/images/our work.svg') no-repeat center center/cover;
    color: var(--white);
    text-align: center;
    padding: 80px 20px;
}

.contact-hero h1 {
    font-size: 48px;
    font-family: var(--playfair);
    margin-bottom: 15px;
    color: var(--white);
}

.contact-hero p {
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
}

#form-section .c-row .inner {
    align-items: flex-start;
}

.location-details, .contact-form-container {
    padding: 20px;
}

.location-details h2, .contact-form-container h2 {
    font-family: var(--playfair);
    font-size: 32px;
    margin-bottom: 15px;
}

#citySelector {
    width: 100%;
    padding: 12px;
    margin-bottom: 25px;
    border-radius: 5px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    font-size: 16px;
}

.location-info {
    margin-bottom: 20px;
}

.location-info h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--text-color);
}

.location-info h3 i {
    color: var(--primary-color);
    margin-right: 10px;
}

.location-info p {
    margin: 0;
    color: var(--light-text-color);
    padding-left: 28px;
}

.input_ideal-group {
    margin-bottom: 15px;
}

.input_group_ij, .textarea_group_ij {
    width: 100%;
    padding: 12px;
    border-radius: 5px;
    border: 1px solid #ddd;
    box-sizing: border-box;
    font-family: var(--roboto);
    font-size: 16px;
}

.contact-btn_submitb {
    width: 100%;
    padding: 15px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.contact-btn_submitb:hover {
    background-color: #d14a4a;
}

.map-section {
    padding: 0;
    line-height: 0; /* Removes any space below the iframe */
}
@media (max-width: 767px) {
    #form-section .c-row > .inner {
        gap: 30px;
    }
    
    .location-details,
    .contact-form-container {
        padding: 20px;
    }
}