/* =========================================================================
   Contact Us Page CSS
   ========================================================================= */

/* Hero Section */
.contact_hero {
    width: 100%;
    height: 350px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    padding-top: 120px;
    background: url('../../image/slide01.png') no-repeat center center/cover;
}

.contact_hero::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.6);
}

.contact_hero_content {
    position: relative;
    z-index: 1;
}

.contact_hero_content h1 {
    font-size: 48px;
    font-family: "Outfit", sans-serif;
    font-weight: 700;
    margin-bottom: 10px;
}

/* Contact Info Cards */
.contact_info_section {
    padding: 60px 0;
    background: #fdfdfd;
}

.contact_info_container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: -100px;
    position: relative;
    z-index: 2;
}

.info_card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info_card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.info_icon {
    width: 70px;
    height: 70px;
    background: #f0f8f7;
    color: #007567;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
    transition: background 0.3s ease, color 0.3s ease;
}

.info_card:hover .info_icon {
    background: #007567;
    color: #fff;
}

.info_card h3 {
    font-size: 22px;
    color: #333;
    margin-bottom: 15px;
    font-family: "Outfit", sans-serif;
}

.info_card p {
    color: #666;
    font-size: 16px;
    line-height: 1.6;
}

/* Contact Form & Map Section */
.contact_interactive_section {
    padding: 20px 0 80px 0;
    background: #fdfdfd;
}

.interactive_container {
    width: 85%;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    overflow: hidden;
}

/* Left Form Area */
.contact_form_area {
    flex: 1;
    padding: 50px;
}

.contact_form_area h2 {
    font-size: 32px;
    color: #007567;
    margin-bottom: 10px;
    font-family: "Outfit", sans-serif;
}

.contact_form_area p {
    color: #555;
    margin-bottom: 30px;
}

.form_row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form_group {
    flex: 1;
}

.form_group input,
.form_group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    color: #333;
    font-family: inherit;
    transition: border 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    background: #fafafa;
}

.form_group input:focus,
.form_group textarea:focus {
    border-color: #007567;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(0, 117, 103, 0.1);
}

.form_group textarea {
    height: 150px;
    resize: vertical;
}

.btn_submit_contact {
    padding: 15px 30px;
    background: #D10A11;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn_submit_contact:hover {
    background: #b0080e;
}

/* Right Map Area */
.contact_map_area {
    flex: 1;
    min-height: 100%;
}

.contact_map_area iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
}

/* Responsive */
@media only screen and (max-width: 992px) {
    .contact_info_container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .interactive_container {
        flex-direction: column;
    }
    
    .contact_map_area iframe {
        height: 400px;
    }
}

@media only screen and (max-width: 768px) {
    .contact_hero {
        height: 250px;
        padding-top: 90px;
    }
    
    .contact_hero_content h1 {
        font-size: 32px;
    }

    .contact_info_container {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
    
    .contact_form_area {
        padding: 30px 20px;
    }
    
    .form_row {
        flex-direction: column;
        gap: 20px;
    }
}
