/* Palette editoriale */
:root {
    --primary-color: #0b3d91; /* Bleu profond */
    --secondary-color: #1565c0; /* Bleu royal */
    --accent-color: #2aa1e6; /* Bleu lumineux */
    --text-color: #1c2a3a; /* Anthracite bleute */
    --bg-light: #eff5fb; /* Bleu tres pale */
    --border-color: #c7d9ed; /* Bleu doux */
    --white: #ffffff;
    --light-gold: #d8ecff; /* Halo lumineux bleu */
}

/* Polices */
body {
    font-family: 'Montserrat', 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #f5f9ff;
}

.brand-text {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 1.1rem;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent-color);
    margin-bottom: 0.75rem;
}

/* Navigation */
.top-info-bar {
    background: linear-gradient(90deg, rgba(11, 61, 145, 0.95), rgba(42, 161, 230, 0.85));
    color: var(--white);
    font-size: 0.9rem;
    padding: 0.35rem 0;
}

.top-info-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem 1.5rem;
    flex-wrap: wrap;
}

.top-info-stack {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    flex-wrap: wrap;
}

.top-info-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background-color: rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-weight: 500;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.9);
}

.top-info-pill i {
    font-size: 0.85rem;
}

.info-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
}

.info-links a {
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.info-links a:hover {
    opacity: 0.85;
    transform: translateY(-1px);
}


.social-links a {
    color: var(--white);
    opacity: 0.85;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.social-links a:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.site-header {
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 18px 45px rgba(11, 61, 145, 0.08);
    backdrop-filter: blur(6px);
    transition: box-shadow 0.3s ease, background 0.3s ease;
    z-index: 1030;
}

.site-main {
    padding-top: 110px;
    background-color: var(--bg-light);
}

.navbar {
    background-color: rgba(255, 255, 255, 0.96) !important;
    border-bottom: 1px solid rgba(11, 61, 145, 0.08);
    box-shadow: 0 8px 30px rgba(11, 61, 145, 0.08);
    transition: box-shadow 0.3s ease;
    padding: 0.65rem 0;
}

.navbar-brand {
    transition: transform 0.3s ease, color 0.3s ease;
}

.navbar-brand:hover {
    transform: translateY(-2px);
    color: var(--primary-color);
}

.nav-link {
    color: var(--text-color) !important;
    font-weight: 600;
    letter-spacing: 0.01em;
    transition: all 0.3s ease;
    border-radius: 999px;
    margin: 0 4px;
    padding: 0.35rem 0.85rem !important;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
    background-color: rgba(99, 179, 243, 0.15);
    transform: translateY(-1px);
}

.brand-logo {
    height: 44px;
    width: auto;
    display: block;
}

.brand-logo-small {
    height: 36px;
}

.footer-brand {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    box-shadow: 0 -12px 30px rgba(11, 61, 145, 0.2);
}

.footer-brand a:hover {
    color: var(--white) !important;
    text-decoration: underline;
}

.section-soft-blue {
    background: linear-gradient(135deg, rgba(99, 179, 243, 0.14), rgba(11, 61, 145, 0.08));
    backdrop-filter: blur(6px);
}

.stat-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.8rem 1.5rem;
    text-align: center;
    box-shadow: 0 18px 40px rgba(11, 61, 145, 0.12);
    border: 1px solid rgba(11, 61, 145, 0.08);
}

.stat-number {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
}

.stat-label {
    font-weight: 600;
    font-size: 0.95rem;
    color: rgba(28, 42, 58, 0.75);
    letter-spacing: 0.02em;
}

.insight-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.6rem 1.4rem;
    box-shadow: 0 15px 36px rgba(11, 61, 145, 0.1);
    border: 1px solid rgba(11, 61, 145, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.insight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(11, 61, 145, 0.15);
}

.insight-icon {
    width: 50px;
    height: 50px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.12), rgba(42, 161, 230, 0.12));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

@media (max-width: 991.98px) {
    .site-main {
        padding-top: 96px;
    }

    .brand-logo {
        height: 36px;
    }
}

@media (max-width: 575.98px) {
    .brand-logo {
        height: 32px;
    }

    .brand-text {
        font-size: 1.25rem;
    }
}

.mega-nav .dropdown-toggle::after {
    margin-left: 0.35rem;
}

.mega-menu {
    width: min(930px, 92vw);
    border: none;
    border-radius: 22px;
    padding: 0;
    background: var(--white);
    box-shadow: 0 24px 60px rgba(31, 26, 52, 0.18);
    z-index: 1100;
}

.mega-menu::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 22px;
    box-shadow: inset 0 0 0 1px rgba(11, 61, 145, 0.06);
}

.mega-menu-block {
    position: relative;
    border-radius: 16px;
    background: linear-gradient(160deg, rgba(245, 242, 255, 0.55), rgba(255, 255, 255, 0.92));
    height: 100%;
    box-shadow: 0 18px 30px rgba(11, 61, 145, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    backdrop-filter: blur(8px);
    padding: 1.4rem 1.6rem;
    text-align: left;
}

.mega-feature {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.95), rgba(42, 161, 230, 0.85));
    color: var(--white);
    box-shadow: 0 25px 45px rgba(11, 61, 145, 0.25);
}

.mega-feature .mega-text {
    color: rgba(255, 255, 255, 0.85);
}

.mega-feature .mega-eyebrow,
.mega-feature .mega-title {
    color: var(--white);
}

.mega-columns {
    text-align: left;
}

.mega-columns .mega-menu-block {
    height: 100%;
    background: var(--white);
}

.mega-menu-block:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 40px rgba(11, 61, 145, 0.12);
}

.mega-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-color);
    display: block;
    margin-bottom: 0.6rem;
}

.mega-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.4rem;
}

.mega-text {
    color: rgba(43, 38, 66, 0.7);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.mega-list li + li {
    margin-top: 0.5rem;
}

.mega-list a {
    color: var(--text-color);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.mega-list a i {
    color: var(--accent-color);
    font-size: 0.85rem;
    width: 1rem;
    text-align: center;
}

.mega-list a:hover {
    color: var(--primary-color);
    transform: translateX(4px);
}

.mega-menu-block .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.mega-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
}

.mega-link:hover,
.mega-link:focus {
    color: var(--primary-color);
    text-decoration: underline;
}

.mega-mini {
    margin-top: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.9rem;
    color: rgba(43, 38, 66, 0.7);
}

.mega-mini span {
    font-weight: 600;
}


/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="cross" x="0" y="0" width="20" height="20" patternUnits="userSpaceOnUse"><path d="M10 0v20M0 10h20" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23cross)"/></svg>');
    opacity: 0.3;
}

.min-vh-75 {
    min-height: 75vh;
}

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

.hero-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.32em;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    max-width: 520px;
}

.hero-highlight-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
}

.hero-highlight-pills .pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    border-radius: 999px;
    padding: 0.45rem 1.15rem;
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    transition: transform 0.3s ease, background 0.3s ease;
}
.hero-highlight-pills .pill:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}


.hero-highlight-pills .pill i {
    font-size: 0.85rem;
}

.hero-featured {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-featured-card {
    background: var(--white);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 30px 45px rgba(11, 61, 145, 0.18);
    position: relative;
    overflow: hidden;
}

.hero-featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.12), rgba(42, 161, 230, 0.12));
    z-index: 0;
}

.hero-featured-card > * {
    position: relative;
    z-index: 1;
}

.hero-featured-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.hero-featured-card p {
    margin-bottom: 0.5rem;
    color: rgba(43, 38, 66, 0.7);
}

.hero-meta {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    min-width: 150px;
}

.hero-stat-number {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
}

.hero-link {
    font-weight: 600;
    text-decoration: none;
}

.hero-link:hover {
    text-decoration: underline;
    color: var(--white);
}

.badge-soft-primary {
    display: inline-flex;
    align-items: center;
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    background: rgba(11, 61, 145, 0.18);
    color: var(--primary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
}

.hero-featured-card--alt {
    background: linear-gradient(135deg, rgba(99, 179, 243, 0.18), rgba(42, 161, 230, 0.18));
    border: 1px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 25px 40px rgba(11, 61, 145, 0.16);
}

.hero-featured-card--alt h3 {
    color: var(--primary-color);
}

.hero-featured-card--alt p {
    color: rgba(43, 38, 66, 0.75);
}

.hero-newsletter .input-group {
    border-radius: 999px;
    background: var(--white);
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(11, 61, 145, 0.15);
}

.hero-newsletter .form-control {
    border: none;
    padding: 0.75rem 1.2rem;
    font-size: 0.95rem;
}

.hero-newsletter .form-control:focus {
    box-shadow: none;
}

.hero-newsletter .btn {
    border-radius: 0;
    font-weight: 600;
}

.hero-cross {
    font-size: 15rem;
    color: rgba(255, 255, 255, 0.2);
    animation: glow 3s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
    to { text-shadow: 0 0 40px rgba(255, 255, 255, 0.6); }
}

/* Editorial intro */
.editorial-intro {
    background: var(--white);
}

.intro-badge {
    display: inline-flex;
    align-items: center;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 600;
    font-size: 0.8rem;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
    background: rgba(42, 161, 230, 0.12);
    color: var(--accent-color);
    margin-bottom: 1rem;
}

.intro-title {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    font-size: 2rem;
    line-height: 1.35;
    margin-bottom: 1rem;
}

.intro-text {
    font-size: 1.05rem;
    color: rgba(43, 38, 66, 0.72);
    max-width: 560px;
}

.intro-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(11, 61, 145, 0.1);
    box-shadow: 0 20px 45px rgba(11, 61, 145, 0.12);
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
}

.intro-card,
.sidebar-card,
.cta-section {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover,
.sidebar-card:hover,
.cta-section:hover {
    transform: translateY(-4px);
    box-shadow: 0 28px 45px rgba(11, 61, 145, 0.16);
}

.intro-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.intro-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-top: 0.3rem;
}

.intro-item h5 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 0.35rem;
    color: var(--primary-color);
}

.intro-item p {
    margin-bottom: 0;
    color: rgba(43, 38, 66, 0.65);
    font-size: 0.95rem;
}

/* Feature Cards */
.features-section {
    background: var(--bg-light);
}

.feature-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.1);
    transition: all 0.3s ease;
    border: 1px solid var(--border-color);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(11, 61, 145, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--white);
    font-size: 2rem;
}

.feature-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Ressources récentes */
.recent-content-section {
    background: #f9f6ff;
    border-top: 1px solid rgba(11, 61, 145, 0.08);
}

/* Content Cards */
.content-card {
    background: var(--white);
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(11, 61, 145, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
}

.content-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(11, 61, 145, 0.2);
}

.content-thumbnail {
    height: 200px;
    background: linear-gradient(135deg, var(--bg-light), var(--light-gold));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary-color);
    position: relative;
}

.content-type-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* Sidebar / newsletter */
.section-heading {
    max-width: 620px;
}

.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(11, 61, 145, 0.1);
    padding: 1.8rem;
    box-shadow: 0 18px 40px rgba(11, 61, 145, 0.12);
}

.sidebar-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.sidebar-card p {
    color: rgba(43, 38, 66, 0.7);
    margin-bottom: 0;
}

.sidebar-card ul li + li {
    margin-top: 0.75rem;
}

.sidebar-card a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.sidebar-card a:hover {
    color: var(--primary-color);
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.92), rgba(99, 179, 243, 0.85));
    color: var(--white);
    border: none;
}

.newsletter-card p {
    color: rgba(255, 255, 255, 0.85);
}

.newsletter-card .form-control {
    border-radius: 999px 0 0 999px;
    border: none;
}

.newsletter-card .btn {
    border-radius: 0 999px 999px 0;
    font-weight: 600;
}

.topic-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
}

.chip {
    border: none;
    border-radius: 999px;
    background: rgba(11, 61, 145, 0.1);
    color: var(--primary-color);
    padding: 0.35rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.chip:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-1px);
}

.featured-highlight {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.95), rgba(42, 161, 230, 0.75));
    border-radius: 20px;
    padding: 2.2rem;
    margin-bottom: 2rem;
    color: var(--white);
    box-shadow: 0 25px 40px rgba(31, 26, 52, 0.25);
}

.featured-eyebrow {
    display: inline-block;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    font-size: 0.75rem;
    margin-bottom: 0.6rem;
    color: rgba(255, 255, 255, 0.8);
}

.featured-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    margin-bottom: 0.75rem;
}

.featured-text {
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 1.2rem;
    max-width: 560px;
}

/* Communauté */
.community-section {
    background: var(--bg-light);
    border-top: 1px solid var(--border-color);
}

.verse-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.1);
    border: 1px solid var(--border-color);
}

.cta-section {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.1);
    border: 1px solid var(--border-color);
}

.cta-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
    color: rgba(43, 38, 66, 0.72);
}

.cta-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
}

.verse-quote {
    font-size: 3rem;
    color: var(--secondary-color);
    opacity: 0.7;
    margin-bottom: 1rem;
}

.verse-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    line-height: 1.4;
    color: var(--primary-color);
}

.verse-reference {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
}

/* Questions */
.question-card {
    background: var(--white);
    border-left: 4px solid var(--secondary-color);
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(11, 61, 145, 0.1);
    transition: all 0.3s ease;
}

.question-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(11, 61, 145, 0.15);
}

/* Boutons */
.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border: none;
    border-radius: 25px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.3);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    padding: 0.7rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(11, 61, 145, 0.3);
}

/* Modales */
.modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(11, 61, 145, 0.2);
}

.modal-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 15px 15px 0 0;
    border-bottom: none;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Formulaires */
.form-control {
    border: 2px solid var(--border-color);
    border-radius: 10px;
    padding: 0.8rem 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(11, 61, 145, 0.25);
}

.form-label {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Alertes */
.alert {
    border: none;
    border-radius: 12px;
    padding: 1rem 1.5rem;
    font-weight: 500;
}

.alert-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: var(--white);
}

.alert-danger {
    background: linear-gradient(135deg, var(--accent-color), #dc3545);
    color: var(--white);
}

/* Responsive */
@media (max-width: 992px) {
    .site-main {
        margin-top: 170px;
    }

    .top-info-bar .container {
        flex-direction: column;
        align-items: center;
    }

    .top-info-stack {
        justify-content: center;
        text-align: center;
    }

    .top-info-pill {
        justify-content: center;
    }

    .info-links {
        width: 100%;
        justify-content: center;
    }

    .hero-meta {
        flex-wrap: wrap;
    }

    .mega-menu-block {
        text-align: center;
    }

    .mega-menu-block .btn {
        width: 100%;
        justify-content: center;
    }

    .mega-nav .dropdown-menu {
        position: static;
        transform: none !important;
        margin-top: 0.75rem;
        box-shadow: none;
        width: 100%;
    }

    .mega-menu {
        padding: 1.25rem;
        background: rgba(11, 61, 145, 0.08);
        border-radius: 18px;
    }

    .mega-menu .container {
        padding: 0;
    }

    .mega-menu::before {
        display: none;
    }
}

@media (max-width: 768px) {
    .hero-fullscreen {
        min-height: auto;
        padding: 5rem 0 3rem;
        text-align: center;
    }

    .top-info-stack,
    .top-info-pill {
        justify-content: center;
        text-align: center;
    }

    .info-links {
        justify-content: center;
    }

    .hero-highlight-pills {
        justify-content: center;
    }

    .hero-featured {
        margin-top: 2.5rem;
    }

    .hero-featured-card {
        padding: 1.7rem;
    }

    .hero-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.6rem;
    }

    .intro-card {
        padding: 1.6rem 1.4rem;
    }

    .sidebar-card {
        padding: 1.5rem;
    }

    .verse-text {
        font-size: 1.25rem;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn {
        width: 100%;
        margin: 0 !important;
    }

    .section-heading {
        text-align: center;
        margin: 0 auto 2rem;
    }

    .info-links {
        justify-content: center;
    }

    .featured-highlight {
        text-align: center;
        padding: 1.8rem;
    }

    .featured-highlight .btn {
        width: 100%;
        justify-content: center;
    }

    .cta-list li {
        justify-content: center;
        text-align: center;
    }

    .cta-list li i {
        display: none;
    }

    .mega-menu {
        width: calc(100vw - 2rem);
        border-radius: 18px;
    }

    .mega-menu-block {
        padding: 1.25rem;
    }

    .mega-title {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .site-main {
        margin-top: 190px;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
        width: 100%;
    }

    .hero-stat-number {
        font-size: 1.15rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibilité */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Focus visible */
*:focus-visible {
    outline: 2px solid var(--secondary-color);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color);
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: var(--white);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* User Avatar */
.user-avatar {
    color: var(--primary-color);
}

/* Dropdown */
.dropdown-menu {
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(11, 61, 145, 0.2);
    padding: 0.5rem 0;
}

.dropdown-item {
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background: var(--bg-light);
    color: var(--primary-color);
}

.resource-section {
    padding: 5rem 0;
    background: var(--white);
}
.resource-section--alt {
    background: var(--bg-light);
}
.resource-intro {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.resource-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: 0.75rem;
    color: var(--accent-color);
}
.resource-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
}
.resource-text {
    color: rgba(43, 38, 66, 0.72);
    font-size: 1.05rem;
}
.resource-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}
.resource-card {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(11, 61, 145, 0.08);
    box-shadow: 0 20px 45px rgba(11, 61, 145, 0.1);
    padding: 2rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.resource-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: var(--primary-color);
}
.resource-list {
    margin: 0;
    padding-left: 1rem;
    color: rgba(43, 38, 66, 0.75);
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.resource-link {
    font-weight: 700;
    color: var(--accent-color);
    text-decoration: none;
}

.resource-link:hover {
    text-decoration: underline;
    color: var(--primary-color);
}

.newsletter-form .form-control-lg {
    border-radius: 999px;
    border: 2px solid rgba(11, 61, 145, 0.12);
}

.newsletter-form .btn-lg {
    border-radius: 999px;
}
@media (min-width: 992px) {
    .mega-nav .dropdown-menu {
        left: 50%;
        transform: translateX(-50%);
    }
}
.content-actions {
    margin-bottom: 2.5rem;
}

.content-action-card {
    display: block;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(245, 242, 255, 0.65), rgba(255, 255, 255, 0.9));
    border: 1px solid rgba(11, 61, 145, 0.1);
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.1);
    padding: 1.6rem;
    text-decoration: none;
    color: var(--text-color);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}

.content-action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 35px rgba(11, 61, 145, 0.18);
}

.content-action-card h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.content-action-card small {
    color: rgba(43, 38, 66, 0.65);
    display: block;
}

.content-section {
    padding: 5rem 0;
    background: var(--white);
}

.content-section--alt {
    background: var(--bg-light);
}

.content-section .resource-card {
    margin-top: 1.5rem;
}

.resource-section,
.content-section {
    scroll-margin-top: 140px;
}


.questions-hero {
    background: linear-gradient(135deg, rgba(11, 61, 145, 0.95), rgba(42, 161, 230, 0.8));
    padding: 4.5rem 0;
    color: var(--white);
}


.questions-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    margin-bottom: 1rem;
}


.questions-intro {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.85);
}


.questions-pills span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    padding: 0.35rem 0.85rem;
    margin-right: 0.5rem;
    font-weight: 600;
    font-size: 0.85rem;
}


.questions-actions {
    margin-top: 1.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}


.questions-card {
    background: var(--white);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 22px 40px rgba(31, 26, 52, 0.25);
    color: var(--text-color);
    height: 100%;
}


.questions-card ul {
    margin: 0;
    padding-left: 1rem;
}


.questions-body {
    background: var(--white);
    padding: 3.5rem 0;
}


.questions-shortcuts {
    margin-bottom: 2rem;
}


.question-shortcut {
    display: block;
    background: linear-gradient(135deg, rgba(245, 242, 255, 0.65), rgba(255, 255, 255, 0.9));
    border-radius: 16px;
    padding: 1.6rem;
    text-decoration: none;
    color: var(--text-color);
    box-shadow: 0 15px 30px rgba(11, 61, 145, 0.1);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    height: 100%;
}


.question-shortcut:hover {
    transform: translateY(-4px);
    box-shadow: 0 22px 35px rgba(11, 61, 145, 0.18);
}


.question-shortcut i {
    font-size: 1.5rem;
    color: var(--accent-color);
}

.question-shortcut span {
    display: block;
    font-weight: 700;
    margin-top: 0.75rem;
}

.question-shortcut small {
    display: block;
    color: rgba(43, 38, 66, 0.65);
    margin-top: 0.35rem;
}

.questions-list-wrapper {
    background: var(--white);
    border-radius: 18px;
    border: 1px solid rgba(11, 61, 145, 0.08);
    box-shadow: 0 18px 35px rgba(11, 61, 145, 0.12);
    padding: 2rem;
}

.questions-list-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
}

.questions-filters .btn {
    border-radius: 999px;
    font-weight: 600;
}

.questions-list {
    margin-top: 2rem;
}

@media (max-width: 768px) {
    .questions-actions,
    .questions-pills {
        justify-content: center;
    }

    .question-shortcut {
        text-align: center;
    }
}
@media (max-width: 768px) {
    .resource-buttons {
        justify-content: center;
    }

    .resource-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    .resource-card {
        text-align: center;
    }

    .resource-card ul {
        text-align: left;
    }
}
