/* MAIN WRAPPER */
.contact-main {
    margin-top: 110px !important;
}
/* ✅ OUTER BOX WRAPPER (this creates the shadow + border look) */
.contact-us-new-one {
    background: #fff;
    border-radius: 32px;
    padding: 0;                 /* no internal padding */
    box-shadow: 0 8px 25px rgba(0,0,0,0.12); /* ✅ main shadow */
    overflow: hidden;           /* keeps rounded corners clean */
}
/*.contact-us-all {
    box-shadow: none;
}*/

/* ✅ ALIGN LEFT & RIGHT PERFECTLY */
.contact-us-new-one .row {
        display: flex;
        flex-wrap: wrap;
        margin-right: -15px;
        margin-left: -15px;
}

/* LEFT SIDE MAIN BLOCK */
.detalis {
    background: #325c52;
    padding: 100px 60px;
    text-align: left;
    color: #ffffff !important;
    border-radius: 30px 0 0 30px;
    height: 100%;
    font-family: 'Fira Sans Condensed', sans-serif;
    display: flex;
    flex-direction: column; /* allow full-height layout */
}

/* TEXT ELEMENTS (make all white, consistent) */
.detalis p,
.detalis h2,
.detalis a,
.detalis i {
    color: #ffffff !important;
    font-size: 17px;
    line-height: 26px;
}

/* HEADINGS */
.detalis h2 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
}

/* SOCIAL ICONS WRAPPER */
.social-media {
    padding: 0;
    margin-top: 15px;
}

/* ICON LIST ITEMS */
.social-media li {
    display: inline-block;
    margin-right: 10px;
}

/* SOCIAL MEDIA ICON IMAGES */
/*.social-media img {
    width: 28px;
    height: 28px;
    opacity: 0.95;
    transition: 0.2s ease;
} */

.social-media img {
    width: 28px;
    height: 28px;
    opacity: 1;
    filter: brightness(0) invert(1) !important; /* forces pure white */
    transition: 0.2s ease;
}

.social-media img:hover {
    transform: scale(1.08);
    filter: brightness(0) invert(1) drop-shadow(0 0 4px rgba(255,255,255,0.6));
}


/* RIGHT SIDE CARD */
.contact-form {
    background: #fff !important;
    border-radius: 22px !important;
    border: none;
    padding: 30px 40px !important;
 /*   box-shadow: none !important;*/

   padding-top: 0 !important; /* <-- ADDED (removes extra space) */

}

.contact-formpage h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #1f2d2c;
    font-weight: 600;
    text-transform: uppercase;
}

/* FORM FIELDS */
.field {
    margin-bottom: 18px;
}

.field label {
    margin-bottom: 5px;
    color: #1f2d2c;
    font-size: 15px;
    font-weight: 500;
}

.form-control,
.country-code-select,
.phone-number-input {
    border: 1.7px solid #375953 !important;
    border-radius: 40px !important;
    padding: 14px 20px !important;
    font-size: 15px;
    font-family: 'Fira Sans Condensed';
    background: #fff;
}

/* TEXTAREA */
textarea.form-control {
    border-radius: 22px !important;
    min-height: 110px;
}

/* ✅ COUNTRY CODE — FIXED TO MATCH PIC */
.country-code-select {
    width: 100px !important;
    max-width: 100px;
    margin-right: 12px;
    border-right: none !important;
}

/* ✅ PHONE NUMBER FIELD */
.phone-number-input {
    flex: 1;
}

/* SUBMIT BUTTON */
.btn-primary {
    background: #2e584f !important;
    color: #fff !important;
    border-radius: 40px !important;
    padding: 14px 50px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    border: none !important;
}

.btn-primary:hover {
    background: #254941 !important;
}

/* ✅ MOBILE */
@media (max-width: 768px) {

    /* Stack left + right perfectly */
    .contact-us-new-one .row {
        flex-direction: column !important;
    }

    /* Left side full width */
    .contact-us-new-one .col-lg-5 {
        width: 100% !important;
        max-width: 100% !important;
        padding-right: 0;
    }

    /* Right side full width */
    .contact-us-new-one .col-xl-7 {
        width: 100% !important;
        max-width: 100% !important;
        padding-left: 0;
        margin-top: 25px; /* spacing between blocks */
    }

    /* Left block rounded for mobile */
    .detalis {
        border-radius: 22px 22px 0 0 !important;
        padding: 40px 30px !important;
        height: auto !important; /* remove forced flex height */
    }

    /* Right form block clean */
    .contact-form {
        border-radius: 0 0 22px 22px !important;
        padding: 30px 25px !important;
        height: auto !important;
    }

    /* Phone input layout */
    .country-code-select {
        width: 40% !important;
        max-width: none;
    }

    .phone-number-input {
        width: 60% !important;
    }
}

