 :root {
            --color-primary: #1F3D67;
            --color-primary-dark: #162d4c;
            --color-secondary: #FF9926;
            --color-secondary-light: #ffb45c;
            --color-white: #FFFFFF;
            --color-light: #F5F7FA;
            --color-border: #E4EAF1;
            --color-text: #1B2430;
            --color-text-light: #5F6B7A;
            --transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
            --shadow-sm: 0 10px 25px -5px rgba(0,0,0,0.05);
            --shadow-md: 0 20px 35px -8px rgba(0,0,0,0.1);
            --shadow-hover: 0 25px 40px -12px rgba(0,0,0,0.15);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', sans-serif;
            background: var(--color-white);
            color: var(--color-text);
            scroll-behavior: smooth;
        }

    .page-hero {
   
    text-align: center;
    background-image: url(assets/images/assist.png); /* ← à ajuster */
    background-size: cover;
    background-position: center;
    color: #fff;
    overflow: hidden;
    margin-bottom: 50px;
    background-attachment: fixed;
 

}
      /* ── PAGE HERO ── CONTENU À GAUCHE, DÉCOR À DROITE ── */
.page-hero {
  display: flex;
  align-items: center;
  min-height: 70vh;
  padding: 20px 2%;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

/* Bloc de contenu – aligné à gauche, ne prend que l’espace nécessaire */
.hero-content {
  width: 55%;
  max-width: 680px;
  position: relative;
  z-index: 2;
  /* On retire tout margin auto qui pourrait centrer */
  margin: 0;
}

/* ── BADGE ── */
.hero-badge {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #ffffff;
  background: #FF9926;
  padding: 6px 20px;
  border-radius: 10px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 14px rgba(255, 153, 38, 0.25);
}

/* ── TITRE ── */
.hero-content h1 {
  font-family: 'Playfair Display', 'Times New Roman', serif;
  font-size: clamp(2.4rem, 4.8vw, 3.8rem);
  font-weight: 700;
  color: #fefeff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem 0;
}

/* Ligne décorative sous le titre – bien ancrée à gauche */
.hero-content h1::after {
 content: '';
    display: block;
    width: 70px;
    height: 3px;
    background: linear-gradient(90deg,#1F3D67,  #ffb45c, #0f022d);
    border-radius: 5px;
    margin: 0.8rem auto 0 auto;
}

/* ── DESCRIPTIONS ── */
.hero-description {
  font-size: 1rem;
  line-height: 1.8;
  color: #d9e2f1;
  max-width: 620px;
  margin: 0 0 1rem 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;

}
.hero-description:last-of-type {
  margin-bottom: 0.4rem;
}

/* ── STATISTIQUES ── */
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem 5rem;
  padding-top: 2rem;
  border-top: 2px solid  #ffb45c;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-item strong {
  font-size: 1.05rem;
  font-weight: 700;
  color: #FF9926;
}

.stat-item span {
  font-size: 0.85rem;
  color: #ffffff;
}

.stat-item::before {
  content: '◆';
  color: #FF9926;
  font-size: 2rem;
  margin-bottom: 3px;
  opacity: 0.6;

}

/* ── DÉCORATION VISUELLE À DROITE (occupant l’espace restant) ── */
.page-hero::after {
  content: '';
  position: absolute;
  right: -4%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 153, 38, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

/* Petit motif en points pour renforcer le côté « droit » */
.page-hero::before {
  content: '';
  position: absolute;
  right: 8%;
  top: 25%;
  width: 200px;
  height: 200px;
  background-image: radial-gradient(circle, #E2E8F0 2px, transparent 2px);
  background-size: 28px 28px;
  opacity: 0.5;
  pointer-events: none;
  z-index: 0;
}

/* ── RESPONSIVE : sur tablette/mobile, on reprend la largeur ── */
@media (max-width: 900px) {
  .page-hero {
    min-height: auto;
    padding: 60px 5%;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-description {
    max-width: 100%;
  }

  /* On réduit/fait disparaître les décors à droite pour ne pas gêner */
  .page-hero::after {
    width: 300px;
    height: 300px;
    right: -20%;
    opacity: 0.4;
  }
  .page-hero::before {
    display: none;
  }
}

@media (max-width: 600px) {
  .page-hero {
    padding: 40px 5%;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }

  .page-hero::after {
    display: none;
  }
}
/* Nouveau style pour la carte t
        /* ========== VARIABLES ========== */
        :root {
            --color-primary: #1e2a3e;
            --color-secondary: #ff9926;
            --color-light: #f8fafc;
            --color-border: #e2e8f0;
            --color-text-light: #64748b;
            --color-white: #ffffff;
            --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 12px 24px rgba(0, 0, 0, 0.1);
            --transition: all 0.2s ease;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
  

        /* ===== DISPOSITION DEUX CARTES CÔTE À CÔTE ===== */
        .two-columns {
            max-width: 1100px;
            width: 100%;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
            align-items: stretch;
        }

        .booking-card, .hours-card {
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        /* ========== CARTE RENDEZ-VOUS (TAILLE RÉDUITE) ========== */
        .booking-card {
            background: var(--color-white);
            border-radius: 20px; /* légèrement réduit */
            padding: 1.2rem; /* réduit */
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }
        .booking-card:hover {
            border-color: var(--color-secondary);
            box-shadow: var(--shadow-hover);
        }
        .booking-header {
            display: flex;
            align-items: center;
            gap: 0.6rem; /* réduit */
            margin-bottom: 0.8rem; /* réduit */
            border-bottom: 1px dashed var(--color-border);
            padding-bottom: 0.4rem; /* réduit */
        }
        .booking-header i {
            font-size: 1.2rem; /* réduit */
            color: var(--color-secondary);
            background: rgba(241, 209, 172, 0.1);
            padding: 0.4rem; /* réduit */
            border-radius: 8px;
        }
        .booking-header h3 {
            font-size: 1.0rem; /* réduit */
            font-weight: 700;
            color: var(--color-primary);
        }
        .booking-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 0.8rem; /* réduit */
        }
        .calendar-wrapper {
            flex: 1.2;
            min-width: 180px; /* légèrement réduit */
        }
        .calendar-wrapper input {
            width: 100%;
            padding: 0.5rem 0.8rem; /* réduit */
            border-radius: 8px;
            border: 1px solid var(--color-border);
            font-family: inherit;
            font-size: 1rem; /* réduit */
            transition: var(--transition);
        }
        .calendar-wrapper input:focus {
            border-color: var(--color-secondary);
            outline: none;
        }
        .time-slots {
            flex: 1;
            background: var(--color-light);
            border-radius: 8px;
            padding: 0.9rem; /* réduit */
        }
          .time-slots i {
            font-size: 1rem; /* réduit */
            font-weight: 600;
            margin-bottom: 0.4rem; /* réduit */
            color: var(--orange);
        }
        .time-slots h4 {
            font-size: 1rem; /* réduit */
            font-weight: 600;
            margin-bottom: 0.4rem; /* réduit */
            color: var(--color-primary);
        }
        .slots-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.3rem; /* réduit */
        }
        .slot-btn {
            background: white;
            border: 1px solid var(--color-border);
            padding: 0.3rem 0.6rem; /* réduit */
            border-radius: 8px;
            font-size: 0.7rem; /* réduit */
            font-weight: 500;
            cursor: pointer;
            transition: var(--transition);
        }
        .slot-btn:hover, .slot-btn.active {
            background: var(--color-secondary);
            border-color: var(--color-secondary);
            color: white;
            transform: translateY(-2px);
        }
        .booking-contact {
            margin: 0.8rem 0 0.6rem; /* réduit */
            display: flex;
            flex-wrap: wrap;
            gap: 0.6rem; /* réduit */
            background: var(--color-light);
            padding: 0.8rem; /* réduit */
            border-radius: 14px;
            border: 1px solid var(--color-border);
        }
        .input-group {
            flex: 1;
            min-width: 120px;
        }
          .input-group i{
           color: orange;
                     margin: 4px;

        }
        .input-group label {
            display: block;
            font-size: 0.85rem; /* réduit */
            font-weight: 600;
            margin-bottom: 0.2rem;
            color: var(--color-primary);
        }
        .input-group input {
            width: 100%;
            padding: 0.5rem 0.7rem; /* réduit */
            border-radius: 10px;
            border: 1px solid var(--color-border);
            font-size: 0.9rem; /* réduit */
            background: white;
        }
        .btn {
  border-radius: 10px;
      border: 1.5px solid var(--color-secondary);
                                  background: linear-gradient(145deg, rgb(3, 46, 154), #113278);
      color: var(--color-secondary);            color: white;
            border: none;
            padding: 0.6rem 1.4rem; /* réduit */
            font-weight: 600;
            font-size: 0.8rem; /* réduit */
            cursor: pointer;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 0.5rem;
        }
        .btn:hover {
          color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -8px rgba(251, 179, 55, 0.45);
    background: linear-gradient(135deg, black 0%, blue 100%);

        }
        .booking-message {
            margin-top: 0.6rem;
            font-size: 0.75rem; /* réduit */
            text-align: center;
        }
        .error { color: #dc2626; }
        .success { color: #10b981; }

        /* ===== NOUVELLE IMAGE SOUS LE BOUTON ===== */
        .booking-image {
            margin-top: 1rem; /* réduit */
            text-align: center;
        }
        .booking-image img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
        }
        .booking-image img:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-hover);
        }

        /* ========== CARTE ONEL JC SARL (avec map Pahou) TAILLE RÉDUITE ========== */
        .hours-card {
            background: var(--color-white);
            border-radius: 10px;
            padding: 1.2rem; /* réduit */
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--color-border);
            transition: var(--transition);
        }
        .hours-card:hover {
            transform: translateY(-3px);
            border-color: var(--color-secondary);
            box-shadow: var(--shadow-hover);
        }
        .about-content {
            display: flex;
            flex-direction: column;
            gap: 0.8rem; /* réduit */
            height: 100%;
        }
        .about-text h3 {
            font-size: 1.1rem; /* réduit */
            font-weight: 800;
            color: var(--color-primary);
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            gap: 0.4rem;
        }
        .about-text h3 i {
            color: var(--color-secondary);
        }
        .about-text p {
            font-size: 1rem; /* réduit */
            line-height: 1.5;
            color: #334155;
            margin-bottom: 0.6rem;
        }
        .values {
            display: flex;
            flex-wrap: wrap;
            gap: 0.5rem; /* réduit */
            margin: 0.3rem 0 0.6rem; /* réduit */
        }
        .values span {
            background: rgba(31, 61, 103, 0.06);
            padding: 0.2rem 0.7rem; /* réduit */
            border-radius: 4px;
            font-size: 0.85rem; /* réduit */
            font-weight: 500;
            color: var(--color-primary);
        }
        .values span i {
            color: var(--color-secondary);
            margin-right: 0.2rem;
        }
        .btn-small {
            display: inline-flex;
            align-items: center;
            gap: 0.4rem;
            background: transparent;
            border: 1px solid var(--color-secondary);
            padding: 0.3rem 0.8rem; /* réduit */
            border-radius: 8px;
            color: var(--color-secondary);
            font-weight: 600;
            font-size: 0.8rem; /* réduit */
            text-decoration: none;
            transition: var(--transition);
            margin-top: 0.3rem;
        }
        .btn-small:hover {
            background: var(--color-secondary);
            color: white;
            gap: 0.6rem;
        }
        .about-map {
            width: 100%;
            margin-top: 0.3rem;
        }
        .about-map iframe {
            width: 100%;
            height: auto;
            aspect-ratio: 4 / 3;
            border-radius: 18px;
            box-shadow: var(--shadow-sm);
            transition: var(--transition);
            border: none;
            display: block;
        }
        .about-map iframe:hover {
            transform: scale(1.01);
            box-shadow: var(--shadow-hover);
        }

        @media (max-width: 850px) {
            .two-columns {
                grid-template-columns: 1fr;
                gap: 1.5rem;
            }
      
        }
    </style>
















<link rel="preconnect" href="https://fonts.googleapis.com">
<link href="https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap" rel="stylesheet">
<style>
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  body {
    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
  
  }

  /* ═══════════════════════════════════════════════════
     WRAPPER
  ═══════════════════════════════════════════════════ */
  .contact-section-standalone {
    --navy:      #1F3D67;
    --navy-d:    #0e1e35;
    --navy-l:    #2a5290;
    --navy-xl:   #152d50;
    --orange:    #FF9926;
    --orange-d:  #e8841a;
    --orange-l:  #ffb357;
    --orange-xl: rgba(255,153,38,.1);
    --white:     #ffffff;
    --off:       #F7F5F1;
    --gray:      #6b7280;
    --gray-l:    #e2e8f0;
    --transition: all 0.28s cubic-bezier(0.34,1.1,0.64,1);

    font-family: 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;
    max-width: 1100px;
    width: 100%;
    margin: 0 auto 80px auto; /* espace sous la section */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0,0,0,.55);
    color: var(--navy-d);
    line-height: 1.6;
    transition: box-shadow .35s ease;
  }
  .contact-section-standalone:hover {
    box-shadow: 0 56px 120px -16px rgba(0,0,0,.65);
  }

  .contact-grid-standalone {
    display: grid;
    grid-template-columns: 1fr 1.25fr;
  }

  /* ═══════════════════════════════════════════════════
     LEFT PANEL
  ═══════════════════════════════════════════════════ */
  .contact-info-standalone {
    background-image: url('https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=600&q=80');
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 48px 36px;
    color: #fff;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 100%;

  }

  /* Dark navy overlay */
  .contact-info-standalone::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(145deg,
      rgba(15,30,53,.93) 0%,
      rgba(31,61,103,.88) 55%,
      rgba(21,45,80,.92) 100%);
    z-index: 1;
  }

  /* Orange glow blob */
  .contact-info-standalone::after {
    content: '';
    position: absolute;
    top: -30%; right: -25%;
    width: 480px; height: 480px;
    background: radial-gradient(circle, rgba(255,153,38,.12) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: floatBgStandalone 12s infinite alternate ease-in-out;
    z-index: 1;
  }
  @keyframes floatBgStandalone {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(28px,-28px) scale(1.12); }
  }

  /* Orange left accent bar */
  .left-accent-bar {
    position: absolute; top: 0; left: 0; bottom: 0; width: 4px;
    background: linear-gradient(to bottom, transparent, var(--orange) 20%, var(--orange) 80%, transparent);
    z-index: 2;
  }

  /* Dot pattern */
  .dot-grid {
    position: absolute; inset: 0; z-index: 1;
    background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
    background-size: 30px 30px;
  }

  .info-header-standalone,
  .info-details-standalone,
  .divider-standalone,
  .trust-badge-standalone,
  .social-links-standalone {
    position: relative; z-index: 2;
  }

  /* ── REVEAL ── */
  .reveal-item-standalone {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity .8s cubic-bezier(.2,.9,.3,1),
                transform .8s cubic-bezier(.2,.9,.3,1);
  }
  .reveal-item-standalone.is-visible { opacity: 1; transform: translateY(0); }
  .reveal-item-standalone:nth-child(1)  { transition-delay: .05s; }
  .reveal-item-standalone:nth-child(2)  { transition-delay: .10s; }
  .reveal-item-standalone:nth-child(3)  { transition-delay: .15s; }
  .reveal-item-standalone:nth-child(4)  { transition-delay: .20s; }
  .reveal-item-standalone:nth-child(5)  { transition-delay: .25s; }
  .reveal-item-standalone:nth-child(6)  { transition-delay: .30s; }
  .reveal-item-standalone:nth-child(7)  { transition-delay: .35s; }
  .reveal-item-standalone:nth-child(8)  { transition-delay: .40s; }
  .reveal-item-standalone:nth-child(9)  { transition-delay: .45s; }
  .reveal-item-standalone:nth-child(10) { transition-delay: .50s; }

  /* ── HEADER ── */
  .info-header-standalone .badge {
    display: inline-flex; align-items: center; gap: 7px;
    background: rgba(255,153,38,.15);
    border: 1px solid rgba(255,153,38,.35);
    padding: 5px 16px;
    border-radius: 10px;
    font-size: 10px; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase;
    color: white;
    margin-bottom: 18px;
    font-family: orbitron;
  }
  .info-header-standalone .badge::before {
    content: ''; width: 6px; height: 6px; border-radius: 50%;
    background: var(--orange);
    animation: pulse 2s infinite;
  }
  @keyframes pulse {
    0%,100% { opacity:1; transform:scale(1); }
    50% { opacity:.4; transform:scale(1.6); }
  }

  .info-header-standalone h2 {
    font-size: clamp(28px, 3.5vw, 40px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 10px;
    letter-spacing: -.03em;
  }
  .info-header-standalone h2 span { color: var(--orange); }
  .info-header-standalone p {
    font-size: 14px; color: rgba(255,255,255,.65);
    max-width: 92%; line-height: 1.7; margin-bottom: 4px;
  }

  /* ── DETAILS ── */
  .info-details-standalone {
    margin: 28px 0 20px;
    flex: 1 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .info-item-standalone {
        border-left: 4px solid var(--orange);

    display: flex; align-items: flex-start; gap: 14px;
    font-size: 13.5px; color: #f0f6ff;
    padding: 14px 16px;
    border-radius: 10px;
    background: rgba(255,255,255,.05);
    transition: background .25s, border-color .25s, transform .25s;
  }
  .info-item-standalone:hover {
    background: rgba(255,153,38,.1);
    border-color: rgba(255,153,38,.3);
    transform: translateX(4px);
  }

  .info-item-standalone i {
    width: 38px; height: 38px; min-width: 38px;
    display: inline-flex; align-items: center; justify-content: center;
    background: rgba(255,153,38,.15);
    border: 1px solid rgba(255,153,38,.25);
    border-radius: 11px;
    font-size: 15px; color: var(--orange);
    transition: var(--transition);
    margin-top: 1px;
  }
  .info-item-standalone:hover i {
    background: var(--orange);
    border-color: var(--orange);
    color: #fff;
    transform: scale(1.08);
    
  }

  .info-item-standalone .text-content { flex: 1; }
  .info-item-standalone strong {
    font-weight: 700; color: rgba(255,255,255,.5);
    display: block; font-size: 9px;
    text-transform: uppercase; letter-spacing: .12em; margin-bottom: 2px;
  }
  .info-item-standalone .sub-detail {
    font-size: 11px; color: rgba(255,255,255,.45);
    display: block; margin-top: 3px;
  }
  .info-item-standalone a {
    color: #fff; text-decoration: none; transition: color .2s;
    font-weight: 500;
  }
  .info-item-standalone a:hover { color: var(--orange); }
  .info-item-standalone .line { display: block; }

  /* ── DIVIDER ── */
  .divider-standalone {
    height: 1px;
    background: linear-gradient(to right, rgba(255,153,38,.3), transparent);
    margin: 18px 0;
  }

  /* ── TRUST BADGES ── */
  .trust-badge-standalone {
    display: flex; gap: 0;
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px; overflow: hidden;
    margin-bottom: 22px;
  }
  .trust-item-standalone {
    flex: 1;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 4px;
    padding: 14px 8px;
    border-right: 1px solid rgba(255,255,255,.08);
    background: rgba(255,255,255,.04);
    transition: background .2s;
  }
  .trust-item-standalone:last-child { border-right: none; }
  .trust-item-standalone:hover { background: rgba(255,153,38,.1); }
  .trust-item-standalone i { color: var(--orange); font-size: 16px; margin-bottom: 4px; }
  .trust-item-standalone .num {
    font-weight: 800; font-size: 18px; color: #fff; line-height: 1;
    font-family: 'Plus Jakarta Sans', sans-serif;
  }
  .trust-item-standalone .label {
    font-size: 9.5px; color: rgba(255,255,255,.45);
    text-align: center; letter-spacing: .02em;
  }

  /* ── SOCIALS ── */
  .social-links-standalone {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px;
  }
  .social-links-standalone a {
    background: rgba(255,255,255,.06);
    padding: 6px 14px;
    border-radius: 10px;
    font-size: 12px; font-weight: 600;
    color: rgba(255,255,255,.75);
    text-decoration: none;
    display: inline-flex; align-items: center; gap: 7px;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,.08);
  }
  .social-links-standalone a:hover {
    background: rgba(255, 166, 0, 0.432);
    border-color: var(--orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(255,153,38,.3);
  }

  /* ═══════════════════════════════════════════════════
     RIGHT PANEL — FORM
  ═══════════════════════════════════════════════════ */
  .contact-form-wrapper-standalone {
    padding: 48px 40px;
    background: rgba(230, 238, 243, 0.411);
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
  }

  /* Subtle top-right orange corner accent */
  .contact-form-wrapper-standalone::before {
    content: '';
    position: absolute; top: 0; right: 0;
    width: 220px; height: 220px;
    background: radial-gradient(circle at top right, rgba(255,153,38,.07) 0%, transparent 70%);
    pointer-events: none;
  }

  .contact-form-wrapper-standalone .form-header { margin-bottom: 20px; position: relative; }
  .contact-form-wrapper-standalone .form-header h3 {
    font-size: clamp(22px, 2.5vw, 30px);
    font-weight: 800;
    letter-spacing: -.03em;
    color: var(--navy);
    margin-bottom: 5px;
  }
  .contact-form-wrapper-standalone .form-header h3 span { color: var(--orange); }
  .contact-form-wrapper-standalone .form-header p {
    color: var(--gray); font-size: 13px; margin-top: 2px;
    display: flex; align-items: center; gap: 6px;
  }
  .contact-form-wrapper-standalone .form-header p i { color: var(--orange); }

  /* ── HOURS HIGHLIGHT ── */
  .hours-highlight-standalone {
    display: flex; align-items: center; gap: 14px;
    background: linear-gradient(135deg, rgba(31,61,103,.05) 0%, rgba(255,153,38,.06) 100%);
    padding: 14px 18px;
    border-radius: 16px;
    border: 1.5px solid rgba(31,61,103,.1);
    border-left: 4px solid var(--orange);
    margin-bottom: 24px;
    transition: background .25s, box-shadow .25s;
  }
  .hours-highlight-standalone:hover {
    background: linear-gradient(135deg, rgba(31,61,103,.07) 0%, rgba(255,153,38,.09) 100%);
    box-shadow: 0 4px 20px rgba(255,153,38,.1);
  }
  .hours-icon-bg-standalone {
    width: 42px; height: 42px; min-width: 42px;
    background: var(--navy);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(31,61,103,.25);
  }
  .hours-content-standalone strong {
    font-size: 9px; text-transform: uppercase;
    letter-spacing: .12em; color: var(--orange); font-weight: 700;
  }
  .hours-content-standalone p {
    margin: 2px 0 0; font-weight: 700; font-size: 13px; color: var(--navy);
  }
  .hours-content-standalone .hours-note {
    font-size: 10.5px; color: var(--gray); font-weight: 400;
  }
  .hours-content-standalone .hours-note i { color: var(--navy); }

  /* ── FORM ── */
  .contact-form-standalone {
    display: flex; flex-direction: column; gap: 12px;
    
  }

  .form-row-standalone {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  }

  .form-group-standalone {
    display: flex; flex-direction: column; gap: 5px;
  }
  .form-group-standalone label {
    font-size: 15px; font-weight: 700;
    text-transform: uppercase; letter-spacing: .08em;
    color: var(--navy);
    margin-top: 10px;
  
  }
  .form-group-standalone label .required { color: red; margin-left: 2px; }

  /* ── FIELD WITH ICON ──────────────────────────────
     Structure DOM :
       <div class="field-with-icon-standalone">
         <i class="fas fa-user"></i>   ← icône EN PREMIER
         <input ...>                    ← champ APRÈS
       </div>
     L'icône est en absolu à gauche, padding-left sur le champ.
  ─────────────────────────────────────────────────── */
  .field-with-icon-standalone {
    position: relative;
    display: block;
  }

  /* Icône : centrée verticalement par défaut */
 .field-with-icon-standalone > i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    text-align: center;
    color: var(--orange);
    font-size: 15px;
    pointer-events: none;
    z-index: 10;
    line-height: 1;
    transition: all .25s ease;
}
.field-with-icon-standalone input,
.field-with-icon-standalone select,
.field-with-icon-standalone textarea {
    padding-left: 48px !important;
}

.field-with-icon-standalone.is-textarea > i {
    top: 18px;
    transform: none;
}
  /* Textarea : icône collée en haut */
  .field-with-icon-standalone.is-textarea > i {
    top: 14px;
    transform: none;
  }

  /* Padding-left pour laisser la place à l'icône */
  .field-with-icon-standalone > input,
  .field-with-icon-standalone > select,
  .field-with-icon-standalone > textarea {
    padding-left: 42px;
    width: 100%;
  }

  /* ── BASE DES CHAMPS ── */
  .form-group-standalone input,
  .form-group-standalone textarea,
  .form-group-standalone select {
    display: block;
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--gray-l);
    border-radius: 10px;
    font-size: 15px;
    font-family: inherit;
    font-weight: 500;
    background: #b3c8dd99;
    color: var(--navy);
    outline: none;
    appearance: none;
    position: relative;
    z-index: 1;
    transition: border-color .22s ease, box-shadow .22s ease, background .18s ease;
  }

  /* Select : flèche custom */
  .form-group-standalone select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231F3D67' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    background-size: 11px;
    cursor: pointer;
  }

  /* ── FOCUS DU CHAMP : bord orange + glow ── */
  .form-group-standalone input:focus,
  .form-group-standalone textarea:focus,
  .form-group-standalone select:focus {
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 204, 38, 0.13), 0 4px 14px -4px rgba(255,153,38,.18);
  }

  /* ── ICÔNE ACTIVE AU FOCUS ── (via :has() moderne) */
  .field-with-icon-standalone:has(> input:focus) > i,
  .field-with-icon-standalone:has(> select:focus) > i {
    color: var(--orange);
    transform: translateY(-50%) scale(1.2) rotate(6deg);
  }
  .field-with-icon-standalone.is-textarea:has(> textarea:focus) > i {
    color: var(--orange);
    transform: scale(1.15) rotate(5deg);
    top: 14px;
  }

  /* ── FALLBACK : classe .icon-active ajoutée par JS ── */
  .field-with-icon-standalone.icon-active > i {
    color: var(--orange);
    transform: translateY(-50%) scale(1.2) rotate(6deg);
  }
  .field-with-icon-standalone.is-textarea.icon-active > i {
    color: var(--orange);
    transform: scale(1.15) rotate(5deg);
    top: 14px;
  }

  .form-group-standalone textarea { resize: vertical; min-height: 90px; }
  .form-group-standalone .hint { font-size: 12px; color: #151c24; margin-top: 2px; }

  /* ── SUBMIT ── */
  .btn-submit-standalone {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    padding: 14px 32px;
     border-radius: 10px;
      border: 1.5px solid var(--color-secondary);
                                  background: linear-gradient(145deg, rgb(3, 46, 154), #113278);
      color: var(--color-secondary);
    border: none;
    font-size: 14px; font-weight: 700;
    cursor: pointer;
    transition: all .3s ease;
    margin-top: 4px;
    align-self: flex-start;
    box-shadow: 0 8px 28px -6px rgba(31,61,103,.35);
    min-width: 210px;
    letter-spacing: .02em;
    font-family: inherit;
    position: relative;
    overflow: hidden;
  }
  .btn-submit-standalone::before {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,153,38,.0) 0%, rgba(255,153,38,.18) 100%);
    opacity: 0; transition: opacity .3s;
  }
  .btn-submit-standalone:hover::before { opacity: 1; }
  .btn-submit-standalone i { font-size: 13px; transition: transform .3s ease; }
  .btn-submit-standalone:hover {
      color: white;
    transform: translateY(-3px);
    box-shadow: 0 16px 36px -8px rgba(0, 11, 27, 0.45);
    background: linear-gradient(135deg, black 0%, blue 100%);
  }
  .btn-submit-standalone:hover i { transform: translateX(5px); }
  .btn-submit-standalone:disabled {
    opacity: .65; cursor: not-allowed;
    transform: none !important; box-shadow: none !important;
  
  }
  .btn-submit-standalone:hover { transform: scale(.97); }

  /* ── MESSAGES ── */
  .success-message-standalone {
    display: none; align-items: center; gap: 10px;
    background: linear-gradient(135deg, #e6f7ee, #f0fdf4);
    color: #0a6e37;
    padding: 12px 18px; border-radius: 14px;
    font-weight: 600; border-left: 4px solid #22c55e;
    margin-top: 8px; font-size: 13.5px;
    box-shadow: 0 4px 14px rgba(34,197,94,.1);
  }
  .success-message-standalone.show { display: flex; }
  .success-message-standalone i { font-size: 18px; color: #22c55e; }

  .error-message-standalone {
    display: none; align-items: center; gap: 10px;
    background: #fef2f2; color: #991b1b;
    padding: 12px 18px; border-radius: 14px;
    font-weight: 600; border-left: 4px solid #ef4444;
    margin-top: 8px; font-size: 13.5px;
    box-shadow: 0 4px 14px rgba(239,68,68,.1);
  }
  .error-message-standalone.show { display: flex; }
  .error-message-standalone i { font-size: 18px; color: #ef4444; }

  /* ═══════════════════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════════════════ */
  @media (max-width: 1024px) {
    .contact-grid-standalone { grid-template-columns: 1fr 1.1fr; }
    .contact-info-standalone { padding: 40px 28px; }
    .contact-form-wrapper-standalone { padding: 40px 28px; }
  }
  @media (max-width: 820px) {
    .contact-grid-standalone { grid-template-columns: 1fr; }
    .contact-info-standalone { padding: 40px 28px; min-height: auto; }
    .contact-form-wrapper-standalone { padding: 36px 28px; }
    .form-row-standalone { grid-template-columns: 1fr; }
    .btn-submit-standalone { width: 100%; justify-content: center; }
    .trust-badge-standalone { flex-wrap: wrap; gap: 0; }
  }
  @media (max-width: 550px) {
    .contact-section-standalone { border-radius: 20px; }
    .contact-info-standalone { padding: 32px 22px; }
    .contact-form-wrapper-standalone { padding: 30px 22px; }
    .info-header-standalone h2 { font-size: 26px; }
    .social-links-standalone a { font-size: 11px; padding: 5px 11px; }
    .trust-badge-standalone { flex-direction: column; border-radius: 14px; }
    .trust-item-standalone { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 12px; flex-direction: row; justify-content: flex-start; gap: 10px; }
    .trust-item-standalone:last-child { border-bottom: none; }
  }