/*======================================================================================
   contact.css — Contact Page Form Styles
======================================================================================*/

/* ---- Form Fields ---- */
.form-clt-new {
    margin-bottom: 4px;
}
.form-clt-new label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    color: #2F2F2F;
    margin-bottom: 8px;
}
.form-clt-new label span {
    color: #e74c3c;
}
.form-clt-new input,
.form-clt-new textarea {
    width: 100%;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
    padding: 14px 20px;
    font-size: 15px;
    color: #333;
    outline: none;
    transition: background 0.3s;
    box-sizing: border-box;
}
.form-clt-new textarea {
    border-radius: 20px;
    resize: vertical;
    min-height: 130px;
}
.form-clt-new input:focus,
.form-clt-new textarea:focus {
    background: #e8e8e8;
}
.form-clt-new input::placeholder,
.form-clt-new textarea::placeholder {
    color: #aaa;
}

/* ---- Phone Input ---- */
.phone-input-wrap .iti {
    width: 100%;
}
.phone-input-wrap .iti input {
    width: 100%;
    padding-left: 90px !important;
    background: #f0f0f0;
    border: none;
    border-radius: 50px;
}
.phone-input-wrap .iti__flag-container {
    background: #f0f0f0;
    border-radius: 50px 0 0 50px;
    padding: 0 8px 0 14px;
}
.phone-input-wrap .iti__selected-flag {
    background: transparent !important;
    border-radius: 50px 0 0 50px;
    padding: 0 6px 0 14px;
}
.phone-input-wrap .iti__selected-flag:hover,
.phone-input-wrap .iti__selected-flag:focus {
    background: transparent !important;
}
.phone-input-wrap .iti--separate-dial-code .iti__selected-flag {
    background: transparent !important;
}
.phone-input-wrap .iti--separate-dial-code .iti__selected-dial-code {
    color: #333;
    font-size: 15px;
}

/* ---- Submit Button ---- */
.contact-submit-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: 2px solid #2F2F2F;
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 700;
    color: #2F2F2F;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 6px;
}
.contact-submit-btn .btn-arrow {
    width: 36px;
    height: 36px;
    background: #11a21b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    transition: background 0.3s;
}
.contact-submit-btn:hover {
    background: #2F2F2F;
    color: #fff;
}
.contact-submit-btn:hover .btn-arrow {
    background: #fff;
    color: #2F2F2F;
}

@media (max-width: 575px) {
    .form-clt-new input,
    .form-clt-new textarea {
        padding: 12px 16px;
        font-size: 14px;
    }
}

/* =======================================
   Form Popup Modals
======================================= */
.form-popup-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999999;
    align-items: center;
    justify-content: center;
}
.form-popup-overlay.show {
    display: flex;
}
.form-popup-box {
    background: #fff;
    border-radius: 16px;
    padding: 50px 40px 40px;
    max-width: 480px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    animation: popupIn 0.3s ease;
}
@keyframes popupIn {
    from { transform: scale(0.85); opacity: 0; }
    to   { transform: scale(1);    opacity: 1; }
}
.form-popup-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 36px;
}
.form-popup-icon.success {
    border: 2px solid #4CAF50;
    color: #4CAF50;
}
.form-popup-icon.error {
    border: 2px solid #e74c3c;
    color: #e74c3c;
}
.form-popup-box h3 {
    font-size: 28px;
    font-weight: 700;
    color: #2F2F2F;
    margin-bottom: 14px;
}
.form-popup-box p {
    font-size: 16px;
    color: #666;
    margin-bottom: 28px;
    line-height: 26px;
}
.form-popup-ok {
    padding: 12px 40px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: opacity 0.2s;
}
.form-popup-ok:hover { opacity: 0.88; }
.form-popup-ok.success-btn { background: #2196F3; }
.form-popup-ok.error-btn   { background: #e74c3c; }

/* =======================================
   Contact Map — Green Box Style
======================================= */
.contact-map {
    background: #11A21B;
    border-radius: 16px;
    padding: 5px;
    height: 100%;
    min-height: 450px;
}
.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 440px;
    border-radius: 12px;
    border: none !important;
    display: block;
}

@media (max-width: 991px) {
    .contact-map {
        min-height: 350px;
    }
    .contact-map iframe {
        min-height: 340px;
    }
}
@media (max-width: 575px) {
    .contact-map {
        min-height: 280px;
    }
    .contact-map iframe {
        min-height: 270px;
    }
}
