    .alert-success {
    background: #e6f9ed;
    color: #1e7e34;
    border: 1px solid #b7ebc6;
    padding: 12px 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    font-size: 14px;
}

.alert-error{
    background:#fdeaea;
    color:#b02a37;
    border:1px solid #f5c2c7;
    padding:12px 15px;
    margin-bottom:20px;
    border-radius:4px;
    font-size:14px;
}

.form-group {
    position: relative;
    margin-bottom: 20px;
}

/* Style général des champs */
.form-group input,
.form-group textarea {
    width: 100%;
    font-size: 14px;
    font-family: inherit;
    padding: 10px;
    border: 1px solid #ccc;
    box-sizing: border-box;
}

/* Uniformiser tous les champs */
.form-group input,
.form-group textarea {
    font-size: 16px;          /* même taille partout */
    font-family: inherit;
    line-height: 1.4;
}

/* Uniformiser tous les placeholders */
.form-group input::placeholder,
.form-group textarea::placeholder {
    font-size: 16px !important;
    font-family: inherit;
    color: #999;
    opacity: 1;               /* important Safari */
}

/* Champ en erreur */
.input-error {
    border: 1px solid red !important;
}

/* Placeholder en erreur */
.input-error::placeholder {
    color: red;
}

/* Message erreur dans le champ */
.error-inside {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: red;
    font-size: 12px;
    pointer-events: none;
}

.btn-send {
    background: #e9b064;
    color: white;
    border: none;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-send:hover {
    background: #aa9a78;
    transform: translateY(-1px);
}

#success {
    scroll-margin-top: 800px;
}

.map-frame iframe{
  width:100%;
  height:450px;
  border:1px solid #ccc;
  border-radius:2px;
}

.cm-modal-overlay{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    z-index: 999999;

    animation: overlayFade 0.35s ease;
}

.cm-modal{
    animation: modalAppear 0.35s ease;
}

@keyframes modalAppear{
    from{
        opacity:0;
        transform:translateY(-12px) scale(.97);
    }
    to{
        opacity:1;
        transform:translateY(0) scale(1);
    }
}

.cm-modal{
    width: 100%;
    max-width: 520px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,.2);
}

.cm-modal-header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    background: #f8fafc;
    border-bottom: 1px solid #e5e7eb;
}

.cm-modal-close{
    border: 0;
    background: transparent;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    padding: 0 6px;
}

.cm-modal-body{
    padding: 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #111827;
}

.cm-modal-actions{
    padding: 14px 16px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    border-top: 1px solid #e5e7eb;
    background: #fff;
}

.cm-modal-btn{
    border: 0;
    background: #1e7e34;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    cursor: pointer;
}

.cm-modal-btn:hover{
    filter: brightness(.95);
}

.cm-btn-success{
    background:#1e7e34;
    color:#fff;
}

.cm-btn-error{
    background:#c62828;
    color:#fff;
}

.cm-btn-success:hover{
    background:#16692b;
}

.cm-btn-error:hover{
    background:#a61e1e;
}

#contact-form-title{
    scroll-margin-top:250px;
}

.cm-modal-legal{ max-width: 760px; }

.cm-modal-scroll{
  max-height: 70vh;
  overflow: auto;
}

.cm-modal-body h4{
  margin: 14px 0 6px;
  font-size: 15px;
}

.cm-modal-body p{
  margin: 0 0 10px;
  color: #374151;
  font-size: 14px;
  line-height: 1.6;
}

.cm-btn-legal{
    background:#e9b064;
    color:#fff;
}

.cm-btn-legal:hover{
    background:#d79a4a;
}

.cookie-banner{
    position:fixed;
    bottom:0;
    left:0;
    width:100%;
    background:#222;
    color:#fff;
    padding:18px;
    z-index:9999;
}

.cookie-content{
    max-width:1000px;
    margin:auto;
    display:flex;
    flex-wrap:wrap;
    justify-content:space-between;
    align-items:center;
    gap:15px;
}

.cookie-buttons{
    display:flex;
    gap:10px;
}

.cookie-btn{
    border:none;
    padding:8px 16px;
    cursor:pointer;
    border-radius:4px;
}

.cookie-accept{
    background:#1e7e34;
    color:#fff;
}

.cookie-reject{
    background:#c62828;
    color:#fff;
}

.cookie-banner a{
    color:#e9b064;
    text-decoration:underline;
}

.cookie-banner{
    position:fixed;
    bottom:20px;
    left:50%;
    transform:translateX(-50%);
    width:90%;
    max-width:900px;

    background:rgba(231, 226, 226, 0.85);
    backdrop-filter:blur(6px);

    color:#333;
    padding:16px 20px;
    border-radius:8px;

    box-shadow:0 10px 25px rgba(0,0,0,0.15);
    z-index:9999;
}

.cookie-btn{
    border:none;
    padding:8px 16px;
    border-radius:4px;
    cursor:pointer;
}

.extra-info{
    display:flex;
    flex-direction:column;
    height:100%;
}

.side-info{
    display:flex;
    flex-direction:column;
    height:100%;
}

.legal-link{
    margin-top:auto;
    padding-top:30px;
    font-size:13px;
}

.legal-link a{
    color:#fff;
    text-decoration:none;
    border:none;
}

.legal-link a:hover,
.legal-link a:focus{
    color:#fff;
    text-decoration:none;
}

.form-alert{
    position:relative;
    padding:12px 16px;
    margin-bottom:20px;
    border-radius:4px;
    font-size:14px;
    border:1px solid #ddd;
}

.success-alert{
    background:#e6f9ed;
    border-color:#b7ebc6;
    color:#1e7e34;
}

.error-alert{
    background:#fdecea;
    border-color:#f5c6cb;
    color:#c62828;
}

.alert-close{
    position:absolute;
    right:10px;
    top:5px;
    border:none;
    background:none;
    font-size:20px;
    cursor:pointer;
    color:inherit;
}