﻿/* Wrapper */

.contact-wrapper {
    width: 100%;
    max-width: 1500px;
    margin: auto;
    padding: 40px 20px;
    font-family: 'Segoe UI', sans-serif;
    color: #333;
}

.page-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 10px;
}

.page-subtitle {
    text-align: center;
    margin-bottom: 40px;
    color: #666;
}

/* GRID LAYOUT */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* LEFT COLUMN */

.left-column {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-card {
    padding: 30px;
    border-radius: 15px;
    color: #fff;
}

.card-blue {
    background: #241C4F;
}

.card-orange {
    background: #F36C37;
}

.card-img {
    max-width: 218px;
    max-height: 218px;
    width: 50%;
/*    height: 50%;*/
    margin-bottom: 15px;
}

.info-card h3 {
    margin: 0 0 10px;
    font-size: 22px;
}

.info-card p {
    margin: 0 0 5px;
}

.card-phone {
    display: block;
    margin-top: 10px;
}

/* FORM COLUMN */

.form-column {
    background: #E8E0DC;
    padding: 30px;
    border-radius: 15px;
}

.contact-form .form-group {
    margin-bottom: 18px;
}

.form-group label {
    font-family: Inter;
    font-weight: 500;
    font-size: 17.02px;
    line-height: normal;
    letter-spacing: 0%;
    color: #565A6D;
}

.req {
    color: #e53935;
}

.form-input {
    width: 100%;
    padding: 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    margin-top: 6px;
    font-size: 15px;
}

.form-input::placeholder {
    font-family: "Segoe UI", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0;
    color: #858D9D;
    opacity: 1; /* Fix for Firefox */
}

.select-input option[disabled][hidden] {
    color: #858D9D;
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

/* Show placeholder color when no value selected */
.select-input:invalid {
    color: #858D9D;
    font-family: "Segoe UI", sans-serif;
    font-size: 16px;
    font-weight: 400;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 8px;
}

.submit-btn {
    background: #f47e2b;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;


    font-family: Poppins;
    font-weight: 700;
    font-size: 16px;
    line-height: normal;
    text-align: center;

}

.submit-btn:hover {
    opacity: 0.9;
}

.info-card {
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 20px;
    border-radius: 20px;
    color: #fff;
    gap: 35px;
    height:100%;
}

.form-actions {
    display: flex;
    justify-content: flex-end; /* pushes button to right */
    width: 100%;
}


.error {
    display: block;
    min-height: 18px; /* SPACE RESERVED */
    margin-top: 4px;
    font-size: 14px;
    color: #e53935; /* Match your .req color */
}



/* RESPONSIVE — STACKED VERSION */
@media(max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .left-column {
        order: 1;
    }

    .form-column {
        order: 2;
    }
}
@media(max-width: 475px) {
    .info-card {
        flex-direction: column;
        padding:10%;
    }
    .card-img {
        width: auto;
        height: auto;
    }
}