/* ---------- CTA BANNER (ORLY) ---------- */
.cta {
    min-height: 220px;
    margin: 0px auto 80px;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid #e7e0cd;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 30px 40px;
    background-image: url('/images/orly_parkings.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

    /* voile sombre */
    .cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(0,0,0,0.15);
    }

    .cta > * {
        position: relative;
    }

    /* titre */
    .cta h3 {
        font-size: clamp(26px, 4vw, 42px);
        font-weight: 700;
        color: #fff;
        margin: 0;
    }

    /* bouton large aligné à droite */
    .cta .cta-btn {
        background: #0d615a;
        color: #fff;
        border: 0;
        border-radius: 999px 0 0 999px; /* arrondi à gauche uniquement */
        padding: 55px 40px; /* bouton plus grand */
        font-size: 1.8rem;
        font-weight: 700;
        box-shadow: var(--shadow);
        cursor: pointer;
        transition: background 0.3s ease;
        align-self: stretch; /* occupe la hauteur de la div */
        margin-right: -40px; /* pousse jusqu'au bord droit de .cta */
    }

        .cta .cta-btn:hover {
            background: #0a4a45;
        }

/* Responsive mobile */
@@media (max-width: 768px) {
    .cta {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px;
        margin: 50px 15px 80px;
    }

        .cta h3 {
            margin-bottom: 20px;
            font-size: clamp(22px, 6vw, 32px);
        }

        .cta .cta-btn {
            border-radius: 999px; /* pill complet sur mobile */
            margin-right: 0;
            align-self: center;
            padding: 14px 28px;
            font-size: 1rem;
        }
}

/* ---------- FEATURES ---------- */
.features {
    background: linear-gradient(90deg, rgba(6,147,152,0.08) 0%, rgba(0,212,170,0.08) 100%);
    border-radius: 18px;
    padding: 22px;
    min-height: 250px;
}

    .features h2 {
        text-align: center;
        margin-bottom: 14px;
        font-size: clamp(28px, 4vw, 40px);
        font-weight: 700;
        color: var(--primary-700);
    }

.feat-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 18px
}

@@media(max-width:860px) {
    .feat-grid {
        grid-template-columns: 1fr
    }

    .features {
        background: #f3efe2;
        border: 1px solid #e7e0cd;
        border-radius: 18px;
        padding: 22px;
        margin-bottom: 70px;
        margin-left: 15px;
        margin-right: 15px;
        min-height: 250px;
    }
}

.feat {
    background: #fff;
    border: 2px solid #0f615a35;
    border-radius: 16px;
    padding: 14px;
    gap: 10px;
    align-items: center;
    margin-top: 20px;
    min-height: 120px;
}

    .feat svg {
        width: 28px;
        height: 28px;
        fill: #0f615a
    }

    .feat b {
        display: block
    }

.muted {
    color: var(--muted)
}
