/* ============================================================
   Pro-Voyance.fr — Modale fullscreen "Revendiquer ma fiche"
   ============================================================ */

:root {
    --rv-purple-deep: #1a0b2e;
    --rv-purple-mid: #4a148c;
    --rv-purple-light: #b39ddb;
    --rv-gold: #ffd700;
    --rv-gold-soft: #ffe066;
    --rv-text: #e0e0e0;
    --rv-text-muted: #a0a0a0;
    --rv-glass: rgba(255, 255, 255, 0.06);
    --rv-glass-border: rgba(255, 255, 255, 0.1);
}

/* ============================================================
   MODAL FULLSCREEN OVERRIDE
   ============================================================ */
#modalRevendiquer .modal-dialog {
    max-width: 100%;
    margin: 0;
    min-height: 100vh;
}

#modalRevendiquer .modal-content {
    border: none;
    border-radius: 0;
    min-height: 100vh;
    background: linear-gradient(160deg, var(--rv-purple-deep) 0%, #2d0a4e 50%, var(--rv-purple-deep) 100%);
    color: var(--rv-text);
}

#modalRevendiquer .modal-body {
    padding: 0;
}

/* Grosse croix de fermeture */
.rv-close-btn {
    position: fixed;
    top: 20px;
    right: 25px;
    z-index: 1060;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.25);
    background: rgba(26, 11, 46, 0.8);
    backdrop-filter: blur(10px);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.rv-close-btn:hover {
    background: rgba(155, 89, 182, 0.4);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* ============================================================
   HERO
   ============================================================ */
.rv-hero {
    position: relative;
    padding: 70px 0 60px;
    overflow: hidden;
    background: linear-gradient(160deg, var(--rv-purple-deep) 0%, #2d0a4e 50%, var(--rv-purple-deep) 100%);
}

.rv-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(124, 67, 189, 0.25) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(255, 215, 0, 0.07) 0%, transparent 50%);
    pointer-events: none;
}

.rv-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.rv-badge {
    display: inline-block;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.2), rgba(255, 215, 0, 0.1));
    color: var(--rv-gold);
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.25);
    margin-bottom: 1.25rem;
}

.rv-hero-title {
    font-family: 'Cinzel', serif;
    font-size: 2.6rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 1rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.rv-gradient-text {
    background: linear-gradient(135deg, var(--rv-purple-light), var(--rv-gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.rv-hero-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ============================================================
   SITE INFO BANNER
   ============================================================ */
.rv-site-banner {
    background: linear-gradient(135deg, rgba(74, 20, 140, 0.35), rgba(26, 11, 46, 0.5));
    border: 1px solid rgba(179, 157, 219, 0.2);
    border-radius: 14px;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.rv-site-banner i {
    font-size: 1.6rem;
    color: var(--rv-gold);
    flex-shrink: 0;
}

.rv-site-name {
    font-family: 'Cinzel', serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ede7f6;
    line-height: 1.3;
}

.rv-site-url {
    font-size: 0.82rem;
    color: var(--rv-text-muted);
    word-break: break-all;
    margin-top: 2px;
}

/* ============================================================
   LAYOUT PRINCIPAL
   ============================================================ */
.rv-main {
    max-width: 1160px;
    margin: 0 auto;
    padding: 3rem 1.5rem 4rem;
}

.rv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* ============================================================
   BÉNÉFICES (colonne gauche)
   ============================================================ */
.rv-section-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.2), rgba(255, 215, 0, 0.1));
    color: var(--rv-gold);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 215, 0, 0.2);
    margin-bottom: 1rem;
}

.rv-col-title {
    font-family: 'Cinzel', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ede7f6;
    line-height: 1.35;
    margin-bottom: 0.5rem;
}

.rv-col-intro {
    color: var(--rv-text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.75rem;
}

.rv-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.rv-benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: var(--rv-glass);
    border: 1px solid var(--rv-glass-border);
    border-radius: 12px;
    padding: 1rem 1.2rem;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.rv-benefit-item:hover {
    border-color: rgba(179, 157, 219, 0.25);
    transform: translateX(4px);
}

.rv-benefit-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, rgba(179, 157, 219, 0.2), rgba(255, 215, 0, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--rv-gold);
    flex-shrink: 0;
}

.rv-benefit-text {
    font-size: 0.92rem;
    color: var(--rv-text-muted);
    line-height: 1.55;
    margin: 0;
    padding-top: 0.6rem;
}

.rv-benefit-text strong {
    color: #ede7f6;
    font-weight: 600;
}

/* ============================================================
   FORMULAIRE (colonne droite)
   ============================================================ */
.rv-form-card {
    background: var(--rv-glass);
    border: 1px solid var(--rv-glass-border);
    border-radius: 16px;
    padding: 2rem;
    backdrop-filter: blur(10px);
}

.rv-form-title {
    font-family: 'Cinzel', serif;
    font-size: 1.35rem;
    color: #ede7f6;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.rv-badge-free {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: rgba(40, 167, 69, 0.15);
    color: #5be08a;
    border: 1px solid rgba(40, 167, 69, 0.2);
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 50px;
    padding: 3px 10px;
    font-family: 'Lato', sans-serif;
    letter-spacing: 0.5px;
}

.rv-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.rv-form-group {
    margin-bottom: 1.1rem;
}

.rv-form-label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 600;
    font-size: 0.82rem;
    color: var(--rv-purple-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.rv-form-hint {
    font-size: 0.78rem;
    color: #707080;
    margin-top: 0.25rem;
    line-height: 1.4;
}

.rv-form-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    font-family: 'Lato', sans-serif;
    font-size: 0.97rem;
    background: rgba(255, 255, 255, 0.04);
    color: var(--rv-text);
    transition: border-color 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.rv-form-input:focus {
    outline: none;
    border-color: rgba(179, 157, 219, 0.5);
    background: rgba(255, 255, 255, 0.07);
    box-shadow: 0 0 0 3px rgba(179, 157, 219, 0.1);
}

.rv-form-input::placeholder {
    color: #505060;
}

/* Submit */
.rv-submit-btn {
    width: 100%;
    margin-top: 1.25rem;
    padding: 0.9rem;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--rv-purple-mid), #7b1fa2);
    color: #fff;
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    box-shadow: 0 5px 20px rgba(74, 20, 140, 0.4);
    letter-spacing: 0.3px;
}

.rv-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(74, 20, 140, 0.6);
    background: linear-gradient(135deg, #5c1c9e, #8c2fc0);
}

.rv-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
    .rv-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .rv-hero-title {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .rv-hero {
        padding: 50px 0 40px;
    }

    .rv-hero-title {
        font-size: 1.6rem;
    }

    .rv-hero-subtitle {
        font-size: 0.95rem;
    }

    .rv-main {
        padding: 2rem 1rem 3rem;
    }

    .rv-form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .rv-form-card {
        padding: 1.5rem;
    }

    .rv-close-btn {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 1.3rem;
    }
}
