/* ==========================================================================
   or2025.css — Design system premium Or & Marine
   Palette : --navy #1f293d | --gold #f0d7a5 | --gold-dark #c9aa6a
   ========================================================================== */

:root {
    --navy: #1f293d;
    --navy-light: #2a3a54;
    --gold: #f0d7a5;
    --gold-dark: #c9aa6a;
    --gold-bright: #ffd700;
    --green-up: #1aab5f;
    --red-down: #e0352b;
    --bg-white: #ffffff;
    --bg-light: #fafaf8;
    --bg-grey: #f4f1ea;
    --text: #1e1e1e;
    --text-muted: #777;
    --border: #e5ddc8;
    --radius: 8px;
    --shadow: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 36px rgba(0,0,0,0.14);
}

/* Wrapper select pour custom.js/forma — le select doit être le fils direct
   de .or-select-wrap afin que parentNode.parentNode atteigne .or-form-group */
.or-select-wrap { display: block; width: 100%; }
.or-select-wrap .or-select { width: 100%; }

.or2025-body {
    font-family: 'Inter', 'Roboto', sans-serif;
    background: var(--bg-white);
    color: var(--text);
}

/* ==========================================================================
   TICKER
   ========================================================================== */
.or-ticker-bar {
    background: var(--navy);
    display: flex;
    align-items: center;
    height: 42px;
    position: sticky;
    top: 0;
    z-index: 200;
    border-bottom: 2px solid var(--gold-dark);
    overflow: hidden;
}
.or-ticker-label {
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0 14px;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    flex-shrink: 0;
}
.or-ticker-scroll-wrap {
    overflow: hidden;
    flex: 1;
}
.or-ticker-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
}
.or-ticker-list li {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0 20px;
    color: #cdd8eb;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
    border-right: 1px solid rgba(255,255,255,0.08);
}
.or-ticker-list li img {
    width: 18px;
    height: 18px;
    object-fit: contain;
    opacity: 0.9;
}
.or-ticker-list li strong {
    color: var(--gold);
    font-weight: 700;
}
.or-unit {
    color: rgba(255,255,255,0.4);
    font-size: 10px;
}

/* Ticker variations — couleurs bien contrastées sur dark */
.ticker-up {
    color: #2ecc71;
    background: rgba(46, 204, 113, 0.15);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}
.ticker-down {
    color: #ff6b6b;
    background: rgba(255, 107, 107, 0.15);
    font-size: 11px;
    font-weight: 800;
    padding: 2px 7px;
    border-radius: 10px;
    letter-spacing: 0.02em;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.or-header {
    background: var(--navy);
    padding: 0;
    position: sticky;
    top: 42px;
    z-index: 190;
    border-bottom: 1px solid rgba(240,215,165,0.15);
    box-shadow: 0 2px 20px rgba(0,0,0,0.25);
}
.or-header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 68px;
}
.or-logo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
.or-logo img {
    max-height: 50px;
    width: auto;
    display: block;
    /* Fond blanc arrondi pour que le logo ressorte sur fond marine */
    background: rgba(255,255,255,0.92);
    border-radius: 6px;
    padding: 4px 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

/* Nav desktop */
.or-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}
.or-nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}
.or-nav-list li a {
    display: inline-block;
    color: rgba(255,255,255,0.82);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 16px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    border-radius: 4px;
    transition: color 0.2s, background 0.2s;
    white-space: nowrap;
}
.or-nav-list li a:hover {
    color: var(--gold);
    background: rgba(240,215,165,0.08);
}
.or-nav-cta { margin-left: 10px; }

/* Hamburger button — caché sur desktop */
.or-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.2s;
}
.or-hamburger:hover { background: rgba(240,215,165,0.1); }
.or-hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}
/* Animation croix quand ouvert */
.or-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.or-hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.or-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Menu mobile overlay */
.or-mobile-nav {
    display: none;
    background: var(--navy);
    border-top: 2px solid rgba(240,215,165,0.15);
    padding: 16px 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    z-index: 180;
    box-shadow: 0 8px 24px rgba(0,0,0,0.35);
}
.or-mobile-nav.is-open { display: block; }
.or-mobile-nav-list {
    list-style: none;
    margin: 0;
    padding: 0 16px;
}
.or-mobile-nav-list li { border-bottom: 1px solid rgba(255,255,255,0.06); }
.or-mobile-nav-list li:last-child { border: none; margin-top: 12px; }
.or-mobile-nav-list li a {
    display: block;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
    font-weight: 600;
    padding: 14px 8px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
    text-decoration: none;
}
.or-mobile-nav-list li a:hover { color: var(--gold); }
.or-mobile-cta {
    display: block;
    text-align: center;
    padding: 14px !important;
    border-radius: 4px;
}


/* ==========================================================================
   BUTTONS
   ========================================================================== */
.or-btn-gold {
    display: inline-block;
    background: var(--gold);
    color: var(--navy) !important;
    font-size: 13px;
    font-weight: 800;
    padding: 10px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    text-decoration: none !important;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
.or-btn-gold:hover {
    background: var(--gold-dark);
    color: var(--navy) !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(201,170,106,0.4);
}
.or-btn-outline {
    display: inline-block;
    background: transparent;
    color: var(--gold) !important;
    border: 2px solid var(--gold);
    font-size: 13px;
    font-weight: 700;
    padding: 8px 22px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    text-decoration: none !important;
}
.or-btn-outline:hover {
    background: var(--gold);
    color: var(--navy) !important;
}
.or-btn-outline-sm {
    display: inline-block;
    background: transparent;
    color: var(--navy);
    border: 2px solid var(--navy);
    font-size: 11px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: all 0.2s;
    text-decoration: none !important;
    margin-top: 10px;
}
.or-btn-outline-sm:hover {
    background: var(--navy);
    color: #fff;
}
.or-btn-lg {
    font-size: 14px;
    padding: 14px 28px;
    border-radius: 5px;
}
.or-btn-full {
    width: 100%;
    text-align: center;
    padding: 14px;
    font-size: 14px;
}
.or-link-gold {
    color: var(--gold-dark);
    font-size: 12px;
    font-weight: 700;
    text-decoration: none !important;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.2s;
}
.or-link-gold:hover { color: var(--navy); }

/* ==========================================================================
   HERO
   ========================================================================== */
.or-hero {
    background: var(--navy) url('../img/callback-background.jpg') center/cover no-repeat;
    position: relative;
    padding: 80px 0 60px;
    overflow: hidden;
}
.or-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(15,20,32,0.92) 45%, rgba(31,41,61,0.75) 100%);
    z-index: 0;
}
.or-hero .container { position: relative; z-index: 1; }
.or-hero-text { padding-right: 30px; }

.or-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(240,215,165,0.12);
    border: 1px solid rgba(240,215,165,0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.or-hero-text h1 {
    font-family: 'Inter', sans-serif;
    font-size: 42px;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}
.or-gold-text { color: var(--gold); }
.or-hero-text p {
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 28px;
}
.or-hero-text p strong { color: var(--gold); }
.or-hero-cta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 36px;
}

/* Stat cards */
.or-stat-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.or-stat-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(240,215,165,0.2);
    border-radius: 6px;
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(4px);
}
.or-stat-value {
    font-size: 16px;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}
.or-stat-label {
    font-size: 10px;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ==========================================================================
   FORMULAIRE RAPPEL
   ========================================================================== */
.or-form-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    padding: 32px;
    border-top: 4px solid var(--gold);
    margin-left: 10px;
}
.or-form-header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
}
.or-form-icon {
    width: 48px;
    height: 48px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--navy);
    flex-shrink: 0;
}
.or-form-header h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin: 0 0 3px;
    letter-spacing: -0.02em;
}
.or-form-header h2 span { color: var(--gold-dark); }
.or-form-header p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}
.or-form { display: flex; flex-direction: column; gap: 24px; }
.or-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.or-form-group { display: flex; flex-direction: column; position: relative; }

/* Empêcher les messages d'erreur de faire bouger la page */
.error-message {
    position: absolute !important;
    top: calc(100% + 2px) !important;
    left: 4px !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 10 !important;
    pointer-events: none !important;
}
.error-message ol, .error-message small {
    margin: 0 !important;
    float: none !important;
    font-size: 11px !important;
    padding: 0 !important;
    line-height: 1.2 !important;
    color: var(--red-down) !important;
    display: block !important;
    text-align: left !important;
}
.or-input, .or-select, .or-textarea {
    border: 1.5px solid #ddd;
    border-radius: 5px;
    padding: 11px 14px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    color: var(--text);
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
    width: 100%;
}
.or-select { height: 44px; appearance: none; cursor: pointer; }
.or-textarea { resize: vertical; min-height: 80px; }
.or-input:focus, .or-select:focus, .or-textarea:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(240,215,165,0.25);
}
.or-form-trust {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}
.or-form-trust span {
    font-size: 11px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 4px;
}
.or-form-trust i { color: var(--gold-dark); }

/* ==========================================================================
   SECTIONS COMMUNES
   ========================================================================== */
.or-section { padding: 80px 0; }
.or-section-white { background: var(--bg-white); }
.or-section-grey { background: var(--bg-grey); }

.or-section-heading {
    text-align: center;
    margin-bottom: 50px;
}
.or-section-heading h2 {
    font-family: 'Inter', sans-serif;
    font-size: 30px;
    font-weight: 900;
    color: var(--navy);
    letter-spacing: -0.03em;
    text-transform: uppercase;
    margin-bottom: 12px;
}
.or-section-heading h2 span { color: var(--gold-dark); }
.or-section-heading p {
    font-size: 15px;
    color: var(--text-muted);
    max-width: 580px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ==========================================================================
   AVANTAGES
   ========================================================================== */
.or-avantages-row .col-md-4,
.or-avantages-row .col-sm-6 { padding: 10px; }

.or-avantage-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
    border-top: 4px solid transparent;
    height: 100%;
}
.or-avantage-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-top-color: var(--gold-dark);
}
.or-avantage-featured {
    border-top-color: var(--gold-dark);
    box-shadow: var(--shadow);
}
.or-avantage-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--navy);
    color: var(--gold);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}
.or-avantage-icon {
    width: 72px;
    height: 72px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    padding: 16px;
}
.or-avantage-icon img { width: 100%; height: 100%; object-fit: contain; }
.or-avantage-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.or-avantage-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 15px;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.or-cta-band {
    background: var(--navy);
    padding: 52px 0;
    border-top: 3px solid var(--gold-dark);
    border-bottom: 3px solid var(--gold-dark);
}
.or-cta-band-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}
.or-cta-band-text h2 {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}
.or-cta-band-text h2 span { color: var(--gold); }
.or-cta-band-text p {
    color: rgba(255,255,255,0.65);
    font-size: 14px;
    margin: 0;
}
.or-cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ==========================================================================
   SERVICES
   ========================================================================== */
.or-services-row .col-md-4,
.or-services-row .col-sm-6 { padding: 10px; }

.or-service-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    position: relative;
    transition: box-shadow 0.25s, transform 0.25s;
    border-top: 4px solid transparent;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.or-service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-top-color: var(--gold-dark);
}
.or-service-featured {
    border-top-color: var(--gold-dark);
    box-shadow: var(--shadow);
}
.or-service-badge {
    position: absolute;
    top: -12px;
    left: 24px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    padding: 3px 14px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.or-service-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 16px;
    background: var(--bg-grey);
    border-radius: 50%;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
}
.or-service-card:hover .or-service-icon { background: var(--gold); }
.or-service-icon img { width: 100%; height: 100%; object-fit: contain; }
.or-service-card h3 {
    font-size: 17px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 10px;
}
.or-service-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 14px;
}
.or-service-list {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    flex: 1;
}
.or-service-list li {
    font-size: 13px;
    color: var(--text);
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.or-service-list li i { color: var(--gold-dark); font-size: 12px; }

/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */
.or-testi-row .col-md-4,
.or-testi-row .col-sm-6 { padding: 10px; }

.or-testi-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    transition: box-shadow 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.or-testi-card:hover { box-shadow: var(--shadow-hover); }
.or-testi-featured {
    border-color: var(--gold-dark);
    box-shadow: var(--shadow);
}
.or-testi-stars {
    color: var(--gold-dark);
    font-size: 16px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}
.or-testi-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.75;
    font-style: italic;
    flex: 1;
    margin-bottom: 20px;
}
.or-testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--border);
    padding-top: 16px;
}
.or-testi-author img {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
}
.or-testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}
.or-testi-author span {
    font-size: 12px;
    color: var(--text-muted);
}

/* ==========================================================================
   BLOG / ACTUALITÉS
   ========================================================================== */
.or-blog-row .col-lg-4,
.or-blog-row .col-sm-6 { padding: 10px; }

.or-blog-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: box-shadow 0.25s, transform 0.25s;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.or-blog-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
}
.or-blog-img {
    position: relative;
    overflow: hidden;
    height: 200px;
}
.or-blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.or-blog-card:hover .or-blog-img img { transform: scale(1.06); }
.or-blog-tag {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--gold);
    color: var(--navy);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 12px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.or-blog-body {
    padding: 20px 20px 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.or-blog-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 5px;
}
.or-blog-body h4 {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 10px;
}
.or-blog-body p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    flex: 1;
    margin-bottom: 16px;
}

/* ==========================================================================
   FOOTER WIDGET
   ========================================================================== */
.or-footer-widget {
    background: var(--navy);
    padding: 64px 0 48px;
    border-top: 3px solid var(--gold-dark);
}
.or-footer-logo {
    max-height: 44px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.or-footer-widget p {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    line-height: 1.7;
    margin-bottom: 18px;
}
.or-footer-trust {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
.or-footer-trust span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.or-footer-trust i { color: var(--gold); }
.or-footer-widget h4 {
    color: var(--gold);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(240,215,165,0.2);
}
.or-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.or-footer-links li { margin-bottom: 9px; }
.or-footer-links a {
    color: rgba(255,255,255,0.6);
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.or-footer-links a:before {
    content: '›';
    color: var(--gold-dark);
    font-weight: 700;
}
.or-footer-links a:hover { color: var(--gold); }
.or-footer-hours {
    margin-top: 14px;
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    display: flex;
    align-items: center;
    gap: 6px;
}
.or-footer-hours i { color: var(--gold-dark); }

/* ==========================================================================
   FOOTER BOTTOM
   ========================================================================== */
.or-footer-bottom {
    background: #121a27;
    padding: 18px 0;
    border-top: 1px solid rgba(240,215,165,0.08);
}
.or-footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.or-footer-bottom-links {
    display: flex;
    gap: 20px;
}
.or-footer-bottom-links a {
    color: rgba(255,255,255,0.4);
    font-size: 12px;
    text-decoration: none;
    transition: color 0.2s;
}
.or-footer-bottom-links a:hover { color: var(--gold); }

/* ==========================================================================
   SCROLL TO TOP
   ========================================================================== */
#scroll-to-top {
    background-color: var(--gold-dark);
    color: var(--navy);
}
#scroll-to-top:hover {
    background-color: var(--navy);
    color: var(--gold);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 991px) {
    .or-hero { padding: 60px 0 40px; }
    .or-hero-text { padding-right: 0; margin-bottom: 30px; }
    .or-hero-text h1 { font-size: 32px; }
    .or-stat-row { grid-template-columns: repeat(2, 1fr); }
    .or-form-card { margin-left: 0; margin-top: 20px; }
    .or-cta-band-inner { flex-direction: column; text-align: center; }
    .or-cta-band-actions { justify-content: center; }
    .or-header-inner { height: 56px; }
}
@media (max-width: 767px) {
    /* Nav : cacher desktop, afficher hamburger */
    .or-nav { display: none; }
    .or-hamburger { display: flex; }
    /* Reste */
    .or-hero-text h1 { font-size: 26px; }
    .or-section { padding: 50px 0; }
    .or-section-heading h2 { font-size: 22px; }
    .or-form-row { grid-template-columns: 1fr; }
    .or-stat-row { grid-template-columns: repeat(2, 1fr); gap: 8px; }
    .or-stat-value { font-size: 14px; }
    .or-ticker-label { display: none; }
    .or-footer-widget { padding: 40px 0 30px; }
    .or-footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ==========================================================================
   MODAL RAPPEL (SLIDING PANEL)
   ========================================================================== */
#modalRappel .modal-dialog {
    position: fixed;
    margin: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: transform 0.3s ease-out;
}
@media (max-width: 767px) {
    #modalRappel .modal-dialog {
        max-width: 100%;
    }
}
#modalRappel.in .modal-dialog,
#modalRappel.show .modal-dialog {
    transform: translateX(0);
}
#modalRappel .modal-content {
    height: 100%;
    border-radius: 0;
    overflow-y: auto;
    background: #fff;
    border: none;
    box-shadow: -5px 0 25px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
}
#modalRappel .or-form-card {
    border-radius: 0;
    margin: auto 0;
    box-shadow: none;
    border-top: none;
    padding: 60px 20px 40px;
    width: 100%;
}
#modalRappel .close {
    position: absolute;
    right: 20px;
    top: 15px;
    z-index: 10;
    font-size: 36px;
    color: var(--navy);
    opacity: 0.8;
    background: none;
    border: none;
    cursor: pointer;
}
#modalRappel .close:hover {
    color: var(--gold-dark);
}
