.contact-section {
    display: flex;
    flex-wrap: wrap;
    padding: 40px;
    border-radius: 20px;
    margin: auto;
    gap: 20px;
}

.contact_wrapper {
    background-color: #d2d687;

}
.map_wrapper iframe{
    width: 100%;
}

.contact-info,
.contact-form {
    flex: 1;
    background: white;
    padding: 30px;
    border-radius: 20px;
    min-width: 300px;
}
.contact-form h3{
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 1rem !important;
    font-weight: 400;
    font-size: 24px;
}
.info-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.info-box h4 {
    font-size: 20px;
}

.map-icons {
    background-color: #ffc928 !important;
}

.call-icons {
    background-color: #779EC2 !important;
}

.email-icons {
    background-color: #FFACA2 !important;
}

.clock-icon {
    background-color: #d2d687 !important;
}

.info-box p {
    font-size: 15px;
    margin-top: 3px;
}

.icons {
    color: #fff;
    border-radius: 50%;
    width: 45px;
    height: 45px;

    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 22px;
}

.contact-form form {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 15px;
}

.form-row input,
.form-row select {
    flex: 1;
    padding: 10px 15px;
    border: none;
    border-radius: 20px !important;
    background-color: #f2f2f2 !important;
    border: 1px solid #ccc !important;
    box-shadow: none !important;
    outline: none !important;
}

.myBtn {
    margin-top: 2rem;
}

.myBtn button {
    width: 100%;
    border-radius: 100px;
    color: #fff;
}

textarea {
    padding: 12px 15px;
    border: none;
    border-radius: 20px;
    background-color: #f2f2f2;
    margin-bottom: 15px;
    resize: vertical;
}

button {
    background-color: #ffc928;
    border: none;
    padding: 12px;
    border-radius: 20px;
    font-weight: bold;
    cursor: pointer;
}



.form-container {
    background: white;
    padding: 30px;
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

form h2 {
    text-align: center;
    margin-bottom: 20px;
    color: #ffaaa5;
}

.inquiry-group {
    margin-bottom: 16px;
    display: flex;
}

.inquiry-select {
    flex-direction: column;
}

.inquiry-group.double {
    display: flex;
    gap: 16px;
}

.inquiry-group.double>div {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.inquiry-group label {
    font-size: 14px;
    color: #444;
    margin-bottom: 6px;
}

.inquiry-group input,
.inquiry-group select,.inquiry-group textarea {
    padding: 12px;
    border: 1px solid #fbc6c6;
    border-radius: 8px;
    background-color: #ffecec;
    outline: none;
    font-size: 14px;
}

.inquiry-group input::placeholder,
.inquiry-group textarea::placeholder {
    color: #000;
}
.inquiry-group textarea{
    background-color: #FFECEC;
}
.submit_btn {
    display: flex;
    justify-content: end;
}

.submit_btn button {
    background-color: #d99;
    border-radius: 100px;
    color: #fff;
}

.inquiry-group select {
    color: #d99;
}

.inquiry-group button {
    width: 100%;
    padding: 14px;
    background-color: #fbc6c6;
    border: none;
    border-radius: 20px;
    color: white;
    font-weight: bold;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.inquiry-group button:hover {
    background-color: #fdaaaa;
}

.form-row-flex {
    display: flex;
    gap: 10px;
}

.form-row-flex .form-row {
    gap: 4px;
    flex-direction: column;
    width: 100%;
}

.mylabel {
    margin-bottom: 10px;
    font-size: 20px;
    color: #3f4b3d;
    font-weight: 600;
}

.details-info {
    border-radius: 10px;
    background-color: #fbf4e4;
    padding: 20px;
    margin-bottom: 1rem;
}

.form-row-flex input {
    border: 1px solid #3c2e21 !important;
    background-color: transparent !important;
    border-radius: 10px !important;
    width: 100%;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
    }

    .form-row-flex .form-row {
        width: 100%;
    }

    .contact-section {
        flex-direction: column;
    }

    .inquiry-group.double {
        flex-direction: column;
    }

    .contact-section {
        padding: 0;
    }

    .contact-info,
    .contact-form {
        padding: 20px;
        width: 100%;
        min-width: none;
    }

    .form-row-flex {
        flex-wrap: wrap;
        gap: 0;
    }

    .mylabel {
        font-size: 18px;
        margin-bottom: 7px;
    }

    .details-info {
        padding: 12px;
        border-radius: 4px;
    }

    .form-row label {
        font-size: 14px;
    }

    .info-box p {
        font-size: 14px;
    }

    .info-box h4 {
        font-size: 18px;
    }

    .icons {
        height: 38px;
        width: 38px;
        font-size: 20px;
    }
}

/* Responsive adjustments */
@media (max-width: 600px) {
    .form-group.double {
        flex-direction: column;
    }
}