@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

body {
    font-family: "Montserrat", sans-serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    color: #333;
}

/* Contact Section Design */
.contact-section {
    max-width: 1200px;
    width: 90%;
    margin: 80px auto;
    margin-top: 50px;
}

.contact-section h2 {
    margin-bottom: 50px;

}

/* Container for info box and form */
.contact-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
}
.contact-info-box,
.contact-form,
.project-title h2,
.info-heading h2 {
    overflow: hidden;
}

.contact-info-box::-webkit-scrollbar,
.contact-form::-webkit-scrollbar,
.project-title h2::-webkit-scrollbar,
.info-heading h2::-webkit-scrollbar {
    display: none;
}

.contact-info-box,
.contact-form,
.project-title h2,
.info-heading h2 {
    scrollbar-width: none; /* Firefox üçün */
}


/* Contact Info Box */
.contact-info-box {
    width: 40%;
    background-color: #f9f9f9;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.info-heading {
    margin-bottom: 30px;
}

.info-heading h2 {
    font-size: 24px;
    color: #c82127;
}

.contact-info-item {
    margin-bottom: 25px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.info-label {
    font-weight: 600;
    font-size: 16px;
    color: #c82127;
    margin-bottom: 5px;
}

.info-value {
    font-size: 15px;
    color: #555;
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    width: 60%;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

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

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group.half {
    width: 50%;
}

.contact-form label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #555;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    transition: border-color 0.3s ease;
}

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

.contact-form textarea {
    resize: vertical;
    min-height: 100px;
    max-height: 200px;
}

.submit-btn {
    background-color: #c82127;
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

/* Map Section */
.map-section {
    margin-top: 60px;
}

.map-container {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info-box,
    .contact-form {
        width: 100%;
    }

    .contact-heading h1 {
        font-size: 36px;
    }

    .map-container {
        height: 300px;
    }
}

@media screen and (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 10px;
    }

    .form-group.half {
        width: 100%;
    }
}