:root {
    --orange: #fd7e14;
    --orange-h: #fb923c;
    --orange-lt: #fff4ec;
    --orange-md: rgba(253, 126, 20, .15);
    --blue: #1a4494;
    --blue-deep: #0d2f6b;
    --blue-lt: #eef3fb;
    --blue-md: #d6e4f7;
    --white: #ffffff;
    --g50: #f8fafd;
    --g100: #eef1f7;
    --g200: #dde4ef;
    --g400: #94a3b8;
    --g600: #4b5e7a;
    --g800: #1e2f4a;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0
}

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Open Sans', sans-serif;
    color: var(--g600);
    line-height: 1.75;
    overflow-x: hidden
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    color: var(--g800);
    line-height: 1.2
}

img {
    max-width: 100%;
    display: block
}

a {
    transition: color .25s var(--ease)
}

section {
    padding: 88px 0
}

/* Scroll reveal */
.sr {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.sr.sl {
    transform: translateX(-40px)
}

.sr.sr2 {
    transform: translateX(40px)
}

.sr.in {
    opacity: 1 !important;
    transform: none !important
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .2s
}

.d3 {
    transition-delay: .3s
}

.d4 {
    transition-delay: .4s
}

/* Buttons */
.btn {
    font-family: 'Syne', sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: .05em;
    border-radius: 8px;
    padding: 11px 26px;
    transition: all .25s var(--ease)
}

.btn-primary {
    background: var(--orange) !important;
    border-color: var(--orange) !important;
    color: #fff !important;
    box-shadow: 0 4px 18px rgba(249, 115, 22, .28)
}

.btn-primary:hover {
    background: var(--blue-deep) !important;
    border-color: var(--blue-deep) !important;
    transform: translateY(-2px)
}

.btn-outline-white {
    border: 2px solid rgba(255, 255, 255, .7);
    color: #fff;
    background: transparent
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, .12);
    color: #fff;
    transform: translateY(-2px)
}

/* ── PAGE HERO ── */
.page-hero {
    position: relative;
    min-height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(130deg, var(--blue-deep) 0%, var(--blue) 60%, #2259b8 100%)
}

.page-hero::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, .06);
    pointer-events: none
}

.page-hero::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -60px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .08);
    pointer-events: none
}

.hero-blob {
    position: absolute;
    right: -40px;
    top: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(249, 115, 22, .18) 0%, transparent 70%)
}

.hero-topline {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--blue-deep), var(--orange) 45%, var(--blue))
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .03) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .03) 1px, transparent 1px);
    background-size: 48px 48px
}

.hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 20px
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 100px;
    padding: 6px 18px;
    font-size: 12.5px;
    font-weight: 600;
    color: rgba(255, 255, 255, .8);
    letter-spacing: .08em;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
    animation: fsd .6s var(--ease) .1s both
}

.hero-badge i {
    color: var(--orange)
}

.hero-title {
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 14px;
    animation: fsd .65s var(--ease) .2s both
}

.hero-title .hl {
    color: var(--orange);
    position: relative
}

.hero-title .hl::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    border-radius: 2px;
    transform: scaleX(0);
    transform-origin: left;
    animation: scIn .5s var(--ease) .85s both
}

@keyframes scIn {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

.hero-sub {
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    margin-bottom: 28px;
    animation: fsd .7s var(--ease) .35s both
}

.hero-breadcrumb {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 100px;
    padding: 7px 22px;
    font-size: 13px;
    animation: fsd .7s var(--ease) .45s both;
    backdrop-filter: blur(6px)
}

.hero-breadcrumb a {
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .2s
}

.hero-breadcrumb a:hover {
    color: var(--orange)
}

.hero-breadcrumb .sep {
    color: rgba(255, 255, 255, .3);
    margin: 0 10px;
    font-size: 11px
}

.hero-breadcrumb .cur {
    color: var(--white);
    font-weight: 600
}

@keyframes fsd {
    from {
        opacity: 0;
        transform: translateY(-20px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

/* ── SECTION LABELS ── */
.sec-label {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 14px
}

.sec-label::before,
.sec-label::after {
    content: '';
    height: 2px;
    width: 22px;
    background: var(--orange);
    border-radius: 2px
}

.sec-title {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 800;
    color: var(--g800);
    margin-bottom: 20px
}

/* ── ALERT PERSO ── */
.alert-edv-success {
    background: rgba(34, 197, 94, .08);
    border: 1.5px solid rgba(34, 197, 94, .25);
    border-left: 4px solid #16a34a;
    border-radius: 14px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 14px
}

.alert-edv-success .ai {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(34, 197, 94, .12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #16a34a;
    font-size: 18px;
    flex-shrink: 0
}

.alert-edv-success p {
    margin: 0;
    font-size: 14px;
    color: #166534;
    font-weight: 500
}

.alert-edv-error {
    background: rgba(239, 68, 68, .06);
    border: 1.5px solid rgba(239, 68, 68, .2);
    border-left: 4px solid #dc2626;
    border-radius: 14px;
    padding: 16px 20px
}

.alert-edv-error ul {
    margin: 0;
    padding-left: 18px;
    font-size: 14px;
    color: #991b1b
}

/* ── INFO CARDS ── */
.info-card {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    height: 100%;
    position: relative;
    overflow: hidden;
    transition: all .3s var(--ease);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--blue));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s var(--ease)
}

.info-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(13, 47, 107, .12);
    border-color: rgba(249, 115, 22, .2)
}

.info-card:hover::before {
    transform: scaleX(1)
}

.ic-icon {
    width: 68px;
    height: 68px;
    border-radius: 18px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .22);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 26px;
    color: var(--orange);
    transition: all .35s var(--ease)
}

.info-card:hover .ic-icon {
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    transform: rotate(-8deg) scale(1.08)
}

.info-card h4 {
    font-size: 17px;
    margin-bottom: 10px
}

.info-card p,
.info-card a {
    font-size: 14px;
    color: var(--g400);
    margin: 0;
    line-height: 1.8;
    text-decoration: none;
    transition: color .2s;
    display: block
}

.info-card a:hover {
    color: var(--orange)
}

/* ── FORM SECTION ── */
.form-wrap {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 24px;
    padding: 44px 40px;
    box-shadow: 0 4px 32px rgba(13, 47, 107, .07);
    position: relative;
    overflow: hidden;
}

.form-wrap::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--blue))
}

/* Champs */
.form-group {
    margin-bottom: 18px
}

.form-label-custom {
    font-size: 13px;
    font-weight: 600;
    color: var(--g800);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px
}

.form-label-custom i {
    color: var(--orange);
    font-size: 13px
}

.form-control,
.form-select {
    border: 1.5px solid var(--g200);
    border-radius: 12px;
    padding: 12px 16px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 14px;
    color: var(--g800);
    background: var(--g50);
    transition: border-color .2s, box-shadow .2s, background .2s;
    width: 100%;
    outline: none;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, .1);
    background: var(--white);
}

.form-control::placeholder {
    color: var(--g400)
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: #dc2626;
    background: rgba(239, 68, 68, .03)
}

.form-select.is-invalid:not([multiple]):not([size]),
.form-select.is-invalid:not([multiple])[size="1"] {
    padding-right: 16px;
    background-image: none;
    background-repeat: no-repeat
}

.error-js {
    font-size: 12px;
    color: #dc2626;
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px
}

.error-js::before {
    content: '⚠';
    font-size: 11px
}

textarea.form-control {
    resize: vertical;
    min-height: 140px
}

/* Submit btn */
.btn-submit {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--orange), #fb6f20);
    border: none;
    color: #fff;
    font-family: 'Syne', sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .04em;
    cursor: pointer;
    transition: all .25s var(--ease);
    box-shadow: 0 6px 22px rgba(249, 115, 22, .32);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, var(--blue-deep), var(--blue));
    box-shadow: 0 8px 28px rgba(13, 47, 107, .28);
    transform: translateY(-2px)
}

.btn-submit i {
    font-size: 16px
}

/* Map wrap */
.map-wrap {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(13, 47, 107, .14);
    border: 1px solid var(--g100);
}

.map-wrap iframe {
    display: block;
    width: 100%
}

/* Map info badge */
.map-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-top: 16px
}

.minfo {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 14px;
    padding: 16px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all .25s
}

.minfo:hover {
    border-color: rgba(249, 115, 22, .2);
    box-shadow: 0 6px 18px rgba(249, 115, 22, .08)
}

.minfo-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 9px;
    background: var(--orange-lt);
    border: 1.5px solid rgba(249, 115, 22, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 14px
}

.minfo-txt small {
    display: block;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--g400);
    margin-bottom: 2px
}

.minfo-txt span {
    font-size: 13.5px;
    font-weight: 600;
    color: var(--g800)
}

/* ── HORAIRES ── */
.horaire-card {
    background: var(--white);
    border: 1px solid var(--g100);
    border-radius: 16px;
    padding: 28px 20px;
    text-align: center;
    transition: all .3s var(--ease);
    position: relative;
    overflow: hidden;
}

.horaire-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .35s var(--ease)
}

.horaire-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(249, 115, 22, .1);
    border-color: rgba(249, 115, 22, .2)
}

.horaire-card:hover::before {
    transform: scaleX(1)
}

.hor-day {
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--blue-deep);
    margin-bottom: 8px
}

.hor-time {
    font-size: 18px;
    font-weight: 700;
    color: var(--orange);
    font-family: 'Poppins', sans-serif
}

.hor-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 600;
    margin-top: 6px;
    padding: 3px 10px;
    border-radius: 100px
}

.hor-status.open {
    background: rgba(34, 197, 94, .1);
    color: #16a34a;
    border: 1px solid rgba(34, 197, 94, .2)
}

.hor-status.closed {
    background: rgba(239, 68, 68, .08);
    color: #dc2626;
    border: 1px solid rgba(239, 68, 68, .15)
}

.hor-status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor
}

/* ── CTA ── */
.cta-band {
    background: linear-gradient(120deg, var(--blue-deep), var(--blue) 60%, #2259b8 100%);
    border-radius: 24px;
    padding: 56px 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    position: relative;
    overflow: hidden
}

.cta-band::before {
    content: '';
    position: absolute;
    right: -60px;
    top: -60px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: rgba(249, 115, 22, .12)
}

.cta-band::after {
    content: '';
    position: absolute;
    left: 20%;
    bottom: -80px;
    width: 220px;
    height: 220px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .04)
}

.cta-band h2 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 1
}

.cta-band p {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    margin: 0;
    position: relative;
    z-index: 1
}

.cta-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    position: relative;
    z-index: 1
}

@media(max-width:768px) {
    .cta-band {
        flex-direction: column;
        text-align: center;
        padding: 40px 28px
    }

    .cta-actions {
        justify-content: center;
        flex-wrap: wrap
    }

    .map-info-row {
        grid-template-columns: 1fr
    }
}