/* ===============================
   CONTACT ENTERPRISE PLUGIN
   CSS ISOLÉ
================================ */
@import url('https://googleapis.com');

.ce-contact-container {
    width: 100%;
    padding: 50px 15px;
     font-family: 'Montserrat', sans-serif;
}

.ce-contact-box {
    max-width: 850px;
    margin: auto;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0,0,0,.12);
}

/* HEADER */
.ce-contact-header {
    background: linear-gradient(135deg,#dc3545,#a71d2a);
    color:white;
    text-align:center;
    padding:40px 25px;
}

.ce-contact-header h2 {
    margin:0 0 15px;
    font-size:32px;
    font-weight:700;
}

.ce-contact-header p {
    margin:0;
    font-size:18px;
}

/* BODY */
.ce-contact-body {
    padding:45px;
     font-family: 'Montserrat', sans-serif;
}

/* ROW */
.ce-row {
    display:flex;
    gap:25px;
    margin-bottom:25px;
}

.ce-col {
    flex:1;
}

/* LABEL */
.ce-label {
    display:block;
    font-size:17px;
    font-weight:600;
    margin-bottom:8px;
    color:#333;
}

/* INPUT */
.ce-input,
.ce-select,
.ce-textarea {
    width:100%;
    padding:15px 18px;
    font-size:17px;
    border:1px solid #ddd;
    border-radius:12px;
    outline:none;
    transition:.3s;
    background:white;
    box-sizing: border-box;
}

.ce-input:focus,
.ce-select:focus,
.ce-textarea:focus {
    border-color:#dc3545;
    box-shadow:0 0 0 3px rgba(220,53,69,.15);
}

/* TEXTAREA */
.ce-textarea {
    min-height:160px;
    resize:vertical;
}

/* ICON */
.ce-input-group {
    position:relative;
}

.ce-icon {
    position:absolute;
    left:15px;
    top:50%;
    transform:translateY(-50%);
    color:#dc3545;
    font-size:20px;
}

.ce-input.with-icon {
    padding-left:45px;
}

/* CHECKBOX */
.ce-check {
    display:flex;
    gap:10px;
    align-items:flex-start;
    margin:25px 0;
}

.ce-check input[type="checkbox"] {
    margin-top:3px;
    width:18px;
    height:18px;
    flex-shrink:0;
}

.ce-check label {
    font-size:15px;
    color:#333;
}

/* BUTTON */
.ce-btn {
    width:100%;
    padding:16px;
    border:none;
    border-radius:50px;
    background:#dc3545;
    color:white;
    font-size:18px;
    font-weight:700;
    cursor:pointer;
    transition:.3s;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
}

.ce-btn:hover {
    background:#a71d2a;
    transform:translateY(-2px);
    box-shadow:0 5px 15px rgba(220,53,69,.3);
}

/* MESSAGE SUCCESS */
.ce-success {
    background:#d1e7dd;
    color:#0f5132;
    padding:15px;
    border-radius:10px;
    margin-bottom:25px;
    font-size:16px;
    border-left:4px solid #198754;
}

.ce-success i {
    margin-right:10px;
    font-size:20px;
}

/* MOBILE */
@media(max-width:768px){
    .ce-row {
        display:block;
    }
    .ce-col {
        margin-bottom:20px;
    }
    .ce-contact-body {
        padding:25px;
    }
    .ce-contact-header h2 {
        font-size:26px;
    }
    .ce-contact-header p {
        font-size:16px;
    }
}