/*
Theme Name: Brasero Theme
Theme URI:  https://odiens.com
Author:     Odiens
Author URI: https://odiens.com
Template:   hello-elementor
Version:    1.0
License:    GNU General Public License v2 or later
*/

a {
	text-decoration:none !important;
}
/* ==========================================================================
   GRAVITY FORMS - CHAMPIONNAT DE FRANCE SUR BRASERO - VERSION MODERNE
   ========================================================================== */

/* Container principal du formulaire */
#gform_2 {
    background: linear-gradient(145deg, rgba(26, 26, 26, 0.98), rgba(45, 45, 45, 0.95));
    border-radius: 16px;
    padding: 30px;
    box-shadow: 
        0 15px 30px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 107, 53, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    border: 2px solid transparent;
    background-clip: padding-box;
    width: 100%;
    margin: 0 auto;
    position: relative;
    backdrop-filter: blur(10px);
}

/* Effet de brillance sur le container */
#gform_2::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 16px;
    padding: 2px;
    background: linear-gradient(135deg, #ff6b35, #ff8a50, #ffab40);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: exclude;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    z-index: -1;
}

/* Corps du formulaire */
.gform_body {
    background: transparent !important;
}

/* Conteneur des champs */
.gform_fields {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Champs individuels */
.gfield {
    margin-bottom: 0 !important;
    position: relative;
    animation: slideInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}

/* Animation moderne */
.gfield:nth-child(1) { animation-delay: 0.1s; }
.gfield:nth-child(2) { animation-delay: 0.2s; }
.gfield:nth-child(3) { animation-delay: 0.3s; }
.gfield:nth-child(4) { animation-delay: 0.4s; }
.gfield:nth-child(5) { animation-delay: 0.5s; }

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Labels modernes */
.gfield_label {
    color: #ffffff !important;
    font-weight: 600 !important;
    font-size: 15px !important;
    margin-bottom: 8px !important;
    display: block !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3) !important;
}

/* Texte "(Nécessaire)" */
.gfield_required_text {
    color: #ff6b35 !important;
    font-weight: 400 !important;
    font-size: 13px !important;
    text-transform: lowercase !important;
    font-style: italic !important;
}

/* Conteneurs d'input avec effet glassmorphism */
.ginput_container {
    position: relative;
}

.ginput_container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 12px;
    z-index: -1;
    backdrop-filter: blur(10px);
}

/* Champs de saisie ultra modernes */
#gform_2 input[type="text"],
#gform_2 input[type="email"],
#gform_2 input[type="tel"],
#gform_2 textarea {
    width: 100% !important;
    padding: 14px 18px !important;
    border: 2px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    background: rgba(255, 255, 255, 0.95) !important;
    color: #333 !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6) !important;
    font-family: inherit !important;
    backdrop-filter: blur(10px) !important;
}

/* Hover sur les champs */
#gform_2 input[type="text"]:hover,
#gform_2 input[type="email"]:hover,
#gform_2 input[type="tel"]:hover,
#gform_2 textarea:hover {
    border-color: rgba(255, 107, 53, 0.3) !important;
    transform: translateY(-1px) !important;
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.12),
        0 0 0 1px rgba(255, 107, 53, 0.2) !important;
}

/* Focus sur les champs */
#gform_2 input[type="text"]:focus,
#gform_2 input[type="email"]:focus,
#gform_2 input[type="tel"]:focus,
#gform_2 textarea:focus {
    border-color: #ff6b35 !important;
    box-shadow: 
        0 0 0 3px rgba(255, 107, 53, 0.25),
        0 8px 25px rgba(0, 0, 0, 0.15) !important;
    outline: none !important;
    background: #ffffff !important;
    transform: translateY(-2px) scale(1.01) !important;
}

/* Textarea spécifique */
#gform_2 textarea {
    min-height: 120px !important;
    resize: vertical !important;
}

/* Gestion des champs en largeur moitié */
.gform_fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.gfield--width-half {
    grid-column: span 1;
}

.gfield--width-full {
    grid-column: span 2;
}

/* BOUTON STYLE MODERNE - COMME VOTRE BOUTON */
#gform_submit_button_2 {
    background: linear-gradient(86deg, #FF7F00 0%, #FF5100 100%);
    color: #ffffff !important;
    border: none !important;
    padding: 16px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 50px !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
    margin-top: 25px !important;
    width: 100% !important;
    position: relative !important;
    overflow: hidden !important;
    box-shadow: 
        0 4px 15px rgba(255, 107, 53, 0.3),
        0 1px 3px rgba(0, 0, 0, 0.2) !important;
    text-shadow: none !important;
}



#gform_submit_button_2:hover::before {
    animation: shine 0.8s ease-in-out;
}

@keyframes shine {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); }
}

/* Hover du bouton */
#gform_submit_button_2:hover {

    transform: translateY(-2px) !important;
}

/* Active du bouton */
#gform_submit_button_2:active {
    transform: translateY(0) !important;
    box-shadow: 
        0 2px 8px rgba(255, 107, 53, 0.4),
        0 1px 3px rgba(0, 0, 0, 0.2) !important;
}

/* Footer du formulaire */
.gform_footer {
    background: transparent !important;
    padding: 0 !important;
    text-align: center !important;
    border-top: none !important;
    grid-column: span 2;
}

/* Messages d'erreur modernes */
.gfield_error {
    background: rgba(211, 47, 47, 0.1) !important;
    border-radius: 16px !important;
    padding: 20px !important;
    border: 1px solid rgba(211, 47, 47, 0.3) !important;
    backdrop-filter: blur(10px) !important;
}

.gfield_error input,
.gfield_error textarea {
    border-color: #d32f2f !important;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.2) !important;
}

.validation_message {
    color: #ff6b35 !important;
    font-size: 15px !important;
    margin-top: 8px !important;
    font-weight: 600 !important;
}

.validation_error {
    background: rgba(211, 47, 47, 0.15) !important;
    border: 1px solid #d32f2f !important;
    color: #ffffff !important;
    padding: 20px !important;
    border-radius: 16px !important;
    margin-bottom: 30px !important;
    backdrop-filter: blur(10px) !important;
}

/* Message de confirmation */
.gform_confirmation_message {
    background: linear-gradient(135deg, #2e7d32 0%, #4caf50 100%) !important;
    color: #ffffff !important;
    padding: 25px !important;
    border-radius: 18px !important;
    text-align: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    margin-bottom: 30px !important;
    box-shadow: 0 8px 32px rgba(46, 125, 50, 0.4) !important;
}

/* Responsive Design */
@media (max-width: 768px) {
    #gform_2 {
        border-radius: 14px !important;
    }
    
    .gform_fields {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }
    
    .gfield--width-half,
    .gfield--width-full,
    .gform_footer {
        grid-column: span 1 !important;
    }
    
    .gfield_label {
        font-size: 14px !important;
    }
    
    #gform_2 input[type="text"],
    #gform_2 input[type="email"],
    #gform_2 input[type="tel"],
    #gform_2 textarea {
        padding: 12px 16px !important;
        font-size: 14px !important;
    }
    
    #gform_submit_button_2 {
        padding: 14px 28px !important;
        font-size: 15px !important;
        letter-spacing: 0.3px !important;
    }
}

/* États de validation en temps réel */

/* Style pour les placeholders */
#gform_2 input::placeholder,
#gform_2 textarea::placeholder {
    color: rgba(0, 0, 0, 0.5) !important;
    opacity: 1 !important;
    font-style: italic !important;
}

/* Micro-interactions */
.gfield {
    transform-origin: center;
}

.gfield:hover {
    transform: translateY(-2px);
}

/* Effet de focus global */
#gform_2:focus-within {
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 107, 53, 0.5);
}

/* EFFET */


/* =============================================
   POPUP PARTENAIRE — CSS COMPLET v3
   À coller dans Elementor → Site Settings → CSS Personnalisé
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ---------- OVERLAY ---------- */
.cfcb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
}

.cfcb-overlay.is-open {
  display: flex;
  animation: cfcbFade 0.2s ease;
}

@keyframes cfcbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ---------- MODAL ---------- */
.cfcb-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  /* Hauteur max = 90% viewport, reste scrollable */
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: cfcbSlide 0.25s ease;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  font-family: 'Roboto', sans-serif;
}

@keyframes cfcbSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header — fixe en haut */
.cfcb-header {
  flex-shrink: 0;
  padding: 22px 28px 18px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.cfcb-header h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.cfcb-header p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.cfcb-header .cfcb-accent {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #e8600a;
  border-radius: 2px;
  margin-top: 10px;
}

/* Steps bar — fixe */
.cfcb-steps {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 50px;
  background: #f9f9f9;
  border-bottom: 1px solid #efefef;
}

.cfcb-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.cfcb-step .cfcb-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}

.cfcb-step.is-active  { color: #e8600a; }
.cfcb-step.is-active .cfcb-num { background: #e8600a; color: #fff; }
.cfcb-step.is-done    { color: #2a9d2a; }
.cfcb-step.is-done .cfcb-num { background: #e6f5e6; color: #2a9d2a; }
.cfcb-step.is-inactive { color: #bbb; }
.cfcb-step.is-inactive .cfcb-num { background: #eee; color: #bbb; }

.cfcb-sep {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  margin: 0 14px;
}

/* Body — scrollable */
.cfcb-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 28px;
  /* Scrollbar discrète */
  scrollbar-width: thin;
  scrollbar-color: #ddd #f9f9f9;
}

.cfcb-body::-webkit-scrollbar { width: 5px; }
.cfcb-body::-webkit-scrollbar-track { background: #f9f9f9; }
.cfcb-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }

.cfcb-step-panel { display: none; }
.cfcb-step-panel.is-visible {
  display: block;
  animation: cfcbFade 0.2s ease;
}

/* Étape 1 */
.cfcb-dl-box {
  border: 1.5px dashed #ddd;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}
.cfcb-dl-box:hover { border-color: #e8600a; }

.cfcb-pdf-icon {
  width: 48px;
  height: 48px;
  background: #fff3ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.cfcb-pdf-icon svg { width: 24px; height: 24px; fill: #e8600a; }

.cfcb-dl-box h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.cfcb-dl-box p {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
  line-height: 1.55;
}

.cfcb-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #e8600a;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s;
}
.cfcb-btn-dl:hover { background: #c04e06; }
.cfcb-btn-dl svg { width: 16px; height: 16px; fill: #fff; }

.cfcb-hint {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
}

/* Étape 2 — bannière succès */
.cfcb-ok-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0faf0;
  border: 1px solid #c3e6c3;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}
.cfcb-ok-icon {
  width: 20px;
  height: 20px;
  background: #2a9d2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.cfcb-ok-icon svg { width: 11px; height: 11px; fill: #fff; }
.cfcb-ok-banner strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1d6b1d;
  display: block;
  margin-bottom: 2px;
}
.cfcb-ok-banner p {
  font-size: 12.5px;
  color: #3a8a3a;
  margin: 0;
  line-height: 1.45;
}

/* Close */
.cfcb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  color: #888;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
  z-index: 10;
}
.cfcb-close:hover { background: #e0e0e0; color: #333; }

@media (max-width: 600px) {
  .cfcb-modal { max-height: 95vh; border-radius: 10px; }
  .cfcb-header, .cfcb-body { padding-left: 16px; padding-right: 16px; }
  .cfcb-steps { padding: 0 16px; }
  .cfcb-step span { display: none; }
}


@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap');

/* ===========================
   POPUP PARTENAIRE BRASERO
   =========================== */

.cfcb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  align-items: center;
  justify-content: center;
  z-index: 99999;
  padding: 16px;
}

.cfcb-overlay.is-open {
  display: flex;
  animation: cfcbFade 0.2s ease;
}

@keyframes cfcbFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.cfcb-modal {
  background: #fff;
  border-radius: 12px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  animation: cfcbSlide 0.25s ease;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
  font-family: 'Roboto', sans-serif;
}

@keyframes cfcbSlide {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Header — fixe */
.cfcb-header {
  flex-shrink: 0;
  padding: 22px 28px 18px;
  border-bottom: 1px solid #f0f0f0;
  background: #fff;
}

.cfcb-header h2 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 18px;
  color: #1a1a1a;
  margin: 0 0 4px;
}

.cfcb-header p {
  font-size: 13px;
  color: #888;
  margin: 0;
}

.cfcb-header .cfcb-accent {
  display: inline-block;
  width: 30px;
  height: 3px;
  background: #e8600a;
  border-radius: 2px;
  margin-top: 10px;
}

/* Steps bar — fixe */
.cfcb-steps {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding: 0 28px;
  height: 50px;
  background: #f9f9f9;
  border-bottom: 1px solid #efefef;
}

.cfcb-step {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.3s;
  white-space: nowrap;
}

.cfcb-step .cfcb-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  transition: all 0.3s;
  flex-shrink: 0;
}

.cfcb-step.is-active   { color: #e8600a; }
.cfcb-step.is-active .cfcb-num  { background: #e8600a; color: #fff; }
.cfcb-step.is-done     { color: #2a9d2a; }
.cfcb-step.is-done .cfcb-num    { background: #e6f5e6; color: #2a9d2a; }
.cfcb-step.is-inactive { color: #bbb; }
.cfcb-step.is-inactive .cfcb-num { background: #eee; color: #bbb; }

.cfcb-sep {
  flex: 1;
  height: 1px;
  background: #e0e0e0;
  margin: 0 14px;
}

/* Body — scrollable */
.cfcb-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px 28px 28px;
  scrollbar-width: thin;
  scrollbar-color: #ddd #f9f9f9;
}

.cfcb-body::-webkit-scrollbar { width: 5px; }
.cfcb-body::-webkit-scrollbar-track { background: #f9f9f9; }
.cfcb-body::-webkit-scrollbar-thumb { background: #ddd; border-radius: 10px; }

.cfcb-step-panel { display: none; }
.cfcb-step-panel.is-visible {
  display: block;
  animation: cfcbFade 0.2s ease;
}

/* Étape 1 — zone téléchargement */
.cfcb-dl-box {
  border: 1.5px dashed #ddd;
  border-radius: 10px;
  padding: 28px 24px;
  text-align: center;
  margin-bottom: 16px;
  transition: border-color 0.2s;
}

.cfcb-dl-box:hover { border-color: #e8600a; }

.cfcb-pdf-icon {
  width: 48px;
  height: 48px;
  background: #fff3ec;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.cfcb-pdf-icon svg { width: 24px; height: 24px; fill: #e8600a; }

.cfcb-dl-box h3 {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: #1a1a1a;
  margin: 0 0 6px;
}

.cfcb-dl-box p {
  font-size: 13px;
  color: #888;
  margin: 0 0 20px;
  line-height: 1.55;
}

.cfcb-btn-dl {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #e8600a;
  color: #fff !important;
  border: none;
  border-radius: 6px;
  padding: 12px 26px;
  cursor: pointer;
  text-decoration: none !important;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.cfcb-btn-dl:hover { background: #c04e06; }
.cfcb-btn-dl svg { width: 16px; height: 16px; fill: #fff; }

/* État "ouvert" du bouton téléchargement */
.cfcb-btn-dl.is-done {
  background: #f0faf0;
  color: #2a9d2a !important;
  border: 1.5px solid #c3e6c3;
  pointer-events: none;
}

.cfcb-btn-dl.is-done svg { fill: #2a9d2a; }

/* Bloc continuer — masqué par défaut */
.cfcb-continue-wrap {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  animation: cfcbFade 0.25s ease;
}

.cfcb-continue-wrap.is-visible { display: flex; }

.cfcb-continue-hint {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12.5px;
  color: #2a9d2a;
  font-weight: 500;
  font-family: 'Roboto', sans-serif;
}

.cfcb-btn-continue {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 14px;
  background: #1a1a1a;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.2s;
  width: 100%;
  justify-content: center;
}

.cfcb-btn-continue:hover { background: #333; }

.cfcb-hint {
  font-size: 12px;
  color: #bbb;
  text-align: center;
  margin-top: 12px;
}

/* Étape 2 — bannière succès */
.cfcb-ok-banner {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: #f0faf0;
  border: 1px solid #c3e6c3;
  border-radius: 8px;
  padding: 12px 16px;
  margin-bottom: 20px;
}

.cfcb-ok-icon {
  width: 20px;
  height: 20px;
  background: #2a9d2a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.cfcb-ok-icon svg { width: 11px; height: 11px; fill: #fff; }

.cfcb-ok-banner strong {
  font-family: 'Roboto', sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #1d6b1d;
  display: block;
  margin-bottom: 2px;
}

.cfcb-ok-banner p {
  font-size: 12.5px;
  color: #3a8a3a;
  margin: 0;
  line-height: 1.45;
}

/* Bouton fermeture */
.cfcb-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #f0f0f0;
  border: none;
  color: #888;
  font-size: 17px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
  line-height: 1;
  z-index: 10;
}

.cfcb-close:hover { background: #e0e0e0; color: #333; }

@media (max-width: 600px) {
  .cfcb-modal { max-height: 95vh; border-radius: 10px; }
  .cfcb-header, .cfcb-body { padding-left: 16px; padding-right: 16px; }
  .cfcb-steps { padding: 0 16px; }
  .cfcb-step span { display: none; }
}


/* ==============================================
   GRAVITY FORMS — RESKIN DANS LA POPUP
   Cible : #gform_3 et ses enfants
   ============================================== */

.cfcb-body .gform_wrapper,
.cfcb-body .gform-theme {
  font-family: 'Roboto', sans-serif !important;
}

/* Labels */
.cfcb-body #gform_3 .gfield_label,
.cfcb-body #gform_3 .gfield_required {
  font-family: 'Roboto', sans-serif !important;
  font-size: 11.5px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  color: #555 !important;
}

.cfcb-body #gform_3 .gfield_required {
  color: #e8600a !important;
}

/* Champs texte / email / tel / textarea */
.cfcb-body #gform_3 input[type="text"],
.cfcb-body #gform_3 input[type="email"],
.cfcb-body #gform_3 input[type="tel"],
.cfcb-body #gform_3 input[type="number"],
.cfcb-body #gform_3 select,
.cfcb-body #gform_3 textarea {
  font-family: 'Roboto', sans-serif !important;
  font-size: 14px !important;
  color: #1a1a1a !important;
  background: #fff !important;
  border: 1.5px solid #e0e0e0 !important;
  border-radius: 6px !important;
  padding: 5px 12px !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.2s !important;
  width: 100% !important;
}

.cfcb-body #gform_3 input[type="text"]:focus,
.cfcb-body #gform_3 input[type="email"]:focus,
.cfcb-body #gform_3 input[type="tel"]:focus,
.cfcb-body #gform_3 textarea:focus,
.cfcb-body #gform_3 select:focus {
  border-color: #e8600a !important;
  box-shadow: 0 0 0 3px rgba(232,96,10,0.08) !important;
}

/* Textarea */
.cfcb-body #gform_3 textarea {
  min-height: 100px !important;
  resize: vertical !important;
}

/* Zone upload */
.cfcb-body #gform_3 .gform_drop_area {
  background: #fafafa !important;
  border: 1.5px dashed #ddd !important;
  border-radius: 8px !important;
  padding: 24px 20px !important;
  text-align: center !important;
  color: #888 !important;
  font-size: 13px !important;
}

.cfcb-body #gform_3 .gform_drop_area:hover {
  border-color: #e8600a !important;
  background: #fffaf7 !important;
}

/* Texte "Déposez les fichiers ici ou" */
.cfcb-body #gform_3 .gform_drop_instructions {
  color: #888 !important;
  font-size: 13px !important;
  display: block !important;
  margin-bottom: 10px !important;
  display: none !important;
}

/* Bouton "Sélectionnez des fichiers" */
.cfcb-body #gform_3 input[type="button"].button,
.cfcb-body #gform_3 .gform_fileupload_multifile .button,
.cfcb-body #gform_3 .gform_drop_area .button {
  font-family: 'Roboto', sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background: #fff !important;
  color: #e8600a !important;
  border: 1.5px solid #e8600a !important;
  border-radius: 6px !important;
  padding: 8px 18px !important;
  cursor: pointer !important;
  transition: background 0.2s, color 0.2s !important;
  box-shadow: none !important;
}

.cfcb-body #gform_3 input[type="button"].button:hover,
.cfcb-body #gform_3 .gform_fileupload_multifile .button:hover,
.cfcb-body #gform_3 .gform_drop_area .button:hover {
  background: #e8600a !important;
  color: #fff !important;
}

/* Texte types de fichiers */
.cfcb-body #gform_3 .gfield_description,
.cfcb-body #gform_3 .ginput_container_fileupload .gfield_description {
  font-size: 11.5px !important;
  color: #aaa !important;
  margin-top: 2px !important;
  line-height: 1.5 !important;
}

/* Bouton SUBMIT */
.cfcb-body #gform_3 .gform_button,
.cfcb-body #gform_3 input[type="submit"] {
  font-family: 'Roboto', sans-serif !important;
  font-weight: 700 !important;
  font-size: 14px !important;
  background: #e8600a !important;
  color: #fff !important;
  border: none !important;
  border-radius: 6px !important;
  padding: 13px 30px !important;
  cursor: pointer !important;
  transition: background 0.2s !important;
  box-shadow: none !important;
  width: auto !important;
}

.cfcb-body #gform_3 .gform_button:hover,
.cfcb-body #gform_3 input[type="submit"]:hover {
  background: #c04e06 !important;
}

/* Messages de validation */
.cfcb-body #gform_3 .validation_message,
.cfcb-body #gform_3 .gfield_description.validation_message {
  color: #c0392b !important;
  font-size: 12px !important;
  margin-top: 4px !important;
}

/* Champs en erreur */
.cfcb-body #gform_3 .gfield_error input,
.cfcb-body #gform_3 .gfield_error textarea {
  border-color: #e74c3c !important;
}

/* Espacement entre champs */
.cfcb-body #gform_3 .gfield {
  margin-bottom: 16px !important;
}

/* Footer formulaire */
.cfcb-body #gform_3 .gform_footer,
.cfcb-body #gform_3 .gform_page_footer {
  padding: 8px 0 0 !important;
  border: none !important;
  background: transparent !important;
}