/* =============================================
   IAIS 2026 - Styles
   ============================================= */

:root {
    --gold: #C9A962;
    --gold-light: #E5D4A1;
    --navy: #1A2847;
    --navy-light: #2A3A5C;
    --cream: #FAF8F5;
    --terracotta: #C66B3D;
    --teal: #1E6B6B;
    --white: #FFFFFF;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--navy);
    background: var(--cream);
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* =============================================
   HEADER
   ============================================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 40, 71, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.2);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    text-decoration: none;
}

.logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    color: var(--white);
}

.logo-subtitle {
    font-size: 10px;
    letter-spacing: 1.5px;
    opacity: 0.8;
    font-family: 'Inter', sans-serif;
}

.logo-title {
    font-weight: 600;
    font-size: 16px;
    color: var(--gold);
}
.nav {
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    padding: 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.btn-register {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--navy);
    padding: 0.7rem 1.5rem;
    text-decoration: none;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
}

.lang-switcher {
    display: flex;
    gap: 0.5rem;
    margin-left: 0.5rem;
}

.lang-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.25rem 0.6rem;
    cursor: pointer;
    font-size: 11px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
    border-radius: 2px;
    font-weight: 500;
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
}

/* =============================================
   HERO
   ============================================= */

.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    position: relative;
}

.hero-background {
    position: absolute;
    inset: 0;
    background-image: url('../images/hero-dakar.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(26, 40, 71, 0.85) 0%,
        rgba(26, 40, 71, 0.75) 50%,
        rgba(26, 40, 71, 0.95) 100%
    );
}

.hero-pattern {
    position: absolute;
    inset: 0;
   /* background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Cdefs%3E%3Cpattern id='p' width='20' height='20' patternUnits='userSpaceOnUse'%3E%3Cpath d='M10 0L20 10L10 20L0 10Z' fill='none' stroke='rgba(201,169,98,0.08)' stroke-width='0.5'/%3E%3C/pattern%3E%3C/defs%3E%3Crect fill='url(%23p)' width='100' height='100'/%3E%3C/svg%3E");*/
    pointer-events: none;
    z-index: 1;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 8rem 2rem 4rem;
    text-align: center;
    position: relative;
    z-index: 2;
}
.hero-subtitle {
    color: var(--gold);
    letter-spacing: 4px;
    font-size: 11px;
    margin-bottom: 1.5rem;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.hero-title {
    color: var(--white);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 0.5rem;
}

.hero-region {
    color: var(--gold);
    font-size: clamp(1.25rem, 3.5vw, 2.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 2.5rem;
}

.hero-year {
    color: var(--white);
}

.hero-info {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--white);
    font-size: 17px;
}

.hero-info-item svg {
    opacity: 0.8;
}

.hero-ctas {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2.5rem;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn:hover {
    transform: translateY(-2px);
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border: none;
    color: var(--navy);
    box-shadow: 0 4px 20px rgba(201,169,98,0.3);
}

.btn-secondary {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
}

/* =============================================
   STATS BAR
   ============================================= */

.stats-bar {
    background: rgba(201,169,98,0.1);
    border-top: 1px solid rgba(201,169,98,0.2);
    position: relative;
    z-index: 1;
}

.stats-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-value {
    color: var(--gold);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 300;
}

.stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-family: 'Inter', sans-serif;
}

/* =============================================
   ORGANIZERS BAR
   ============================================= */

.organizers-bar {
    background: #0F1829;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(201,169,98,0.1);
}

.organizers-label {
    color: var(--gold);
    font-size: 11px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.organizers-text {
    color: var(--white);
    font-size: 15px;
}

/* =============================================
   ABOUT SECTION
   ============================================= */

.about-section {
    padding: 6rem 2rem;
    background: var(--cream);
}

.section-title {
    color: var(--navy);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    color: var(--gold);
    font-size: 17px;
    font-style: italic;
    max-width: 600px;
    margin: 0 auto 3rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 17px;
    line-height: 1.8;
}

/* =============================================
   FOOTER - PREMIUM DESIGN
   ============================================= */

.footer {
    background: linear-gradient(135deg, #1A2847 0%, #0D1528 100%);
    color: #FFFFFF;
    padding: 4rem 0 2rem;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand {
    max-width: 300px;
}

.footer-logo {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 60px;
    width: auto;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h4 {
    color: #C9A962;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 1.25rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}

.footer-column ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.footer-column ul li a:hover {
    color: #C9A962;
    padding-left: 5px;
}

.footer-column ul li:not(:has(a)) {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom {
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    margin: 0.25rem 0;
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-brand {
        max-width: 100%;
        text-align: center;
    }
    
    .footer-logo {
        display: flex;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-column ul li a:hover {
        padding-left: 0;
    }
}

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 768px) {
    .header-container {
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav {
        order: 3;
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .stats-container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-info {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-ctas {
        flex-direction: column;
        width: 100%;
        padding: 0 2rem;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}
/* =============================================
   PAGES INTERNES
   ============================================= */

.page-content {
    padding-top: 80px;
    min-height: 100vh;
    background: var(--cream);
}

.page-content-dark {
    background: var(--navy);
}

.page-hero {
    background: var(--navy);
    padding: 4rem 2rem;
    text-align: center;
}

.page-title {
    color: var(--white);
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 300;
    margin-bottom: 0.5rem;
}

.page-subtitle {
    color: var(--gold);
    font-size: 1.1rem;
    font-style: italic;
}

.section {
    padding: 4rem 2rem;
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    line-height: 1.8;
    text-align: center;
}

/* Objectifs */
.objectives-section {
    margin: 3rem 0;
}

.objectives-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.objective-item {
    background: var(--navy);
    padding: 1.5rem;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.objective-number {
    min-width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--navy);
    font-weight: 700;
    font-size: 14px;
}

.objective-text {
    color: var(--white);
    margin: 0;
    line-height: 1.5;
}

/* Session Types */
.session-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.session-type {
    background: rgba(201, 169, 98, 0.1);
    border: 1px solid rgba(201, 169, 98, 0.2);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
}

.session-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
}

.session-type.closed .session-icon {
    background: linear-gradient(135deg, var(--terracotta) 0%, #E88B5D 100%);
}

.session-type.open .session-icon {
    background: linear-gradient(135deg, var(--teal) 0%, #2E9B9B 100%);
}

.session-type h3 {
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.session-type p {
    color: #666;
    font-size: 0.9rem;
}

.session-days {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 0.5rem;
    display: block;
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 50px;
    margin-top: 3rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--gold) 0%, rgba(201, 169, 98, 0.2) 100%);
}

.timeline-day {
    position: relative;
    margin-bottom: 2rem;
}

.timeline-marker {
    position: absolute;
    left: -34px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 14px;
}

.timeline-marker.closed {
    background: linear-gradient(135deg, var(--terracotta) 0%, #E88B5D 100%);
}

.timeline-marker.open {
    background: linear-gradient(135deg, var(--teal) 0%, #2E9B9B 100%);
}

.timeline-date {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.timeline-events {
    list-style: none;
    padding: 0;
    margin: 0;
}

.timeline-events li {
    color: var(--navy);
    padding: 0.3rem 0 0.3rem 1rem;
    border-left: 2px solid rgba(201, 169, 98, 0.25);
    font-size: 0.95rem;
}

/* Info Cards */
.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: 10px;
    padding: 2rem;
    box-shadow: 0 8px 30px rgba(26, 40, 71, 0.05);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h3 {
    color: var(--navy);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.venue-name {
    color: var(--gold);
    font-weight: 500;
}

.info-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Map Section */
.map-section {
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--navy);
    border-radius: 10px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
}

.map-placeholder svg {
    margin-bottom: 1rem;
}

.map-address {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-info {
    color: var(--white);
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h4 {
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.contact-item p {
    font-size: 1.1rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
}

.contact-item a:hover {
    color: var(--gold);
}

.contact-form-wrapper {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    padding: 2rem;
}

.contact-form-wrapper h3 {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    border: none;
    cursor: pointer;
}
/* =============================================
   REGISTRATION
   ============================================= */

.registration-section {
    max-width: 700px;
    margin: 0 auto;
}

/* Steps Progress */
.steps-progress {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    color: #999;
    transition: all 0.3s ease;
}

.step-item.active .step-number {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    border-color: var(--gold);
    color: var(--navy);
}

.step-item.completed .step-number {
    background: var(--teal);
    border-color: var(--teal);
    color: var(--white);
}

.step-label {
    font-size: 0.85rem;
    color: #999;
}

.step-item.active .step-label {
    color: var(--navy);
    font-weight: 500;
}

.step-line {
    width: 60px;
    height: 2px;
    background: #ddd;
    margin: 0 1rem;
    margin-bottom: 1.5rem;
}

.step-line.active {
    background: var(--gold);
}

/* Registration Card */
.registration-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.1);
}

.registration-title {
    text-align: center;
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

/* Participant Types */
.participant-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.type-option input {
    display: none;
}

.type-card {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.type-option input:checked + .type-card {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.type-icon {
    font-size: 2.5rem;
}

.type-info h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.type-info p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.type-price {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

.type-price.free {
    color: var(--teal);
}

/* Form Styles */
.registration-form .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.registration-form .form-group {
    margin-bottom: 1.25rem;
}

.registration-form .form-group.small {
    max-width: 120px;
}

.registration-form label {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

.registration-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.registration-form .form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.form-errors {
    background: #fee;
    border: 1px solid #fcc;
    border-radius: 6px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.form-errors .error {
    color: #c00;
    margin: 0;
    font-size: 0.9rem;
}

.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.form-actions .btn {
    flex: 1;
    text-align: center;
}

/* Summary Card */
.summary-card {
    background: var(--cream);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-card h3 {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(26, 40, 71, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.95rem;
}

.summary-row.total {
    border-top: 1px solid rgba(26, 40, 71, 0.1);
    margin-top: 0.5rem;
    padding-top: 1rem;
    font-weight: 600;
}

.summary-row .price {
    color: var(--gold);
    font-size: 1.25rem;
}

/* Payment Methods */
.payment-title {
    color: var(--navy);
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.payment-option input {
    display: none;
}

.payment-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.payment-option input:checked + .payment-card {
    border-color: var(--gold);
    background: rgba(201, 169, 98, 0.05);
}

.payment-icon {
    font-size: 1.5rem;
}

.payment-name {
    font-weight: 500;
    color: var(--navy);
    font-size: 0.9rem;
}

.payment-brands {
    font-size: 0.75rem;
    color: #999;
}

.free-notice {
    background: rgba(30, 107, 107, 0.1);
    color: var(--teal);
    padding: 1rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 1.5rem;
}

.secure-notice {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.btn-pay {
    background: linear-gradient(135deg, var(--teal) 0%, #2E9B9B 100%) !important;
}

/* Success Page */
.success-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.success-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.1);
}

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

.success-card h1 {
    color: var(--navy);
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.success-message {
    color: #666;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--cream);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(26, 40, 71, 0.05);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: #666;
    font-size: 0.9rem;
}

.detail-row .value {
    color: var(--navy);
    font-weight: 500;
}

.email-notice {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
/* =============================================
   REGISTRATION FORM - CORRECTIONS
   ============================================= */

.registration-form .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 2px solid #e8e8e8;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--navy);  /* Texte sombre */
    background-color: var(--white);
    transition: border-color 0.3s ease;
}

.registration-form .form-control:focus {
    outline: none;
    border-color: var(--gold);
}

.registration-form .form-control::placeholder {
    color: #999;
}

/* Select dropdowns */
.registration-form select.form-control {
    color: var(--navy);
    background-color: var(--white);
    cursor: pointer;
}

.registration-form select.form-control option {
    color: var(--navy);
    background-color: var(--white);
}

/* Textarea */
.registration-form textarea.form-control {
    color: var(--navy);
    background-color: var(--white);
    resize: vertical;
    min-height: 80px;
}

/* Labels */
.registration-form label {
    display: block;
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-family: 'Inter', sans-serif;
}

/* Form rows - meilleure disposition */
.registration-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.registration-form .form-row-3 {
    display: grid;
    grid-template-columns: 100px 1fr 1fr;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.registration-form .form-group {
    margin-bottom: 1.25rem;
}

.registration-form .form-group.small {
    max-width: 120px;
}

/* Responsive */
@media (max-width: 600px) {
    .registration-form .form-row,
    .registration-form .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .registration-form .form-group.small {
        max-width: 100%;
    }
}
/* =============================================
   PAYMENT PENDING
   ============================================= */

.pending-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: var(--cream);
}

.pending-card {
    background: var(--white);
    border-radius: 12px;
    padding: 3rem;
    max-width: 500px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.1);
}

.pending-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.pending-card h1 {
    color: var(--navy);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.pending-message {
    color: #666;
    margin-bottom: 2rem;
}

.pending-details {
    background: var(--cream);
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.status-pending {
    color: var(--gold);
    font-weight: 600;
}

.pending-note {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* =============================================
   PARTNERS SECTION
   ============================================= */

.partners-section {
    background: var(--white);
    padding: 4rem 0;
    overflow: hidden;
}

.partners-title {
    text-align: center;
    color: var(--navy);
    font-size: 1.75rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
}

.partners-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
    -webkit-mask-image: linear-gradient(
        to right,
        transparent,
        black 10%,
        black 90%,
        transparent
    );
}

.partners-track {
    display: flex;
    gap: 3rem;
    animation: scroll 30s linear infinite;
    width: max-content;
}

.partners-track:hover {
    animation-play-state: paused;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.partner-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
    min-width: 150px;
    padding: 0 1rem;
}

.partner-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.partner-item a:hover {
    transform: scale(1.1);
}

.partner-item img {
    max-height: 60px;
    max-width: 140px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

.partner-item:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.partner-name {
    color: var(--navy);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}

/* Responsive */
@media (max-width: 768px) {
    .partners-track {
        gap: 2rem;
        animation-duration: 20s;
    }
    
    .partner-item {
        min-width: 120px;
    }
    
    .partner-item img {
        max-height: 50px;
        max-width: 100px;
    }
}
/* =============================================
   SPEAKERS PAGE
   ============================================= */

.speakers-section {
    margin-bottom: 4rem;
}

.speakers-section .section-title {
    color: var(--navy);
    font-size: 1.75rem;
    margin-bottom: 2rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid var(--gold);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
}

.speakers-featured {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.speaker-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 40, 71, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 40, 71, 0.15);
}

.speaker-featured {
    display: flex;
    flex-direction: row;
}

.speaker-featured .speaker-photo {
    width: 200px;
    flex-shrink: 0;
}

.speaker-featured .speaker-info {
    padding: 1.5rem;
}

.speaker-photo {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--navy) 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.speaker-placeholder span {
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold);
}

.speaker-type-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--navy);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.speaker-info {
    padding: 1.25rem;
}

.speaker-name {
    color: var(--navy);
    font-size: 1.2rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.speaker-title {
    color: var(--gold);
    font-size: 0.9rem;
    margin: 0 0 0.25rem;
    font-weight: 500;
}

.speaker-org {
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}

.speaker-country {
    color: #999;
    font-size: 0.8rem;
    margin: 0 0 0.75rem;
}

.speaker-bio {
    color: #555;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0.75rem 0;
}

.speaker-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--cream);
    color: var(--navy);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--navy);
    color: var(--gold);
}

.intro-text {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
    color: #555;
    font-size: 1.1rem;
    line-height: 1.8;
}

.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--cream);
    border-radius: 12px;
    color: #666;
}

/* Responsive */
@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: 1fr;
    }
    
    .speakers-featured {
        grid-template-columns: 1fr;
    }
    
    .speaker-featured {
        flex-direction: column;
    }
    
    .speaker-featured .speaker-photo {
        width: 100%;
    }
}
/* =============================================
   PROGRAM PAGE - PREMIUM DESIGN
   ============================================= */

.program-page .page-content {
    background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 100%);
    padding-bottom: 5rem;
}

/* Session Legend Cards */
.session-legend {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.legend-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.1);
    overflow: hidden;
    transition: all 0.4s ease;
}

.legend-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(26, 40, 71, 0.15);
}

.legend-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
}

.legend-card.closed::before {
    background: linear-gradient(90deg, #C66B3D 0%, #E88B5D 100%);
}

.legend-card.open::before {
    background: linear-gradient(90deg, #1E6B6B 0%, #2E9B9B 100%);
}

.legend-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1.25rem;
}

.legend-card.closed .legend-icon {
    background: linear-gradient(135deg, #C66B3D 0%, #E88B5D 100%);
    box-shadow: 0 10px 30px rgba(198, 107, 61, 0.3);
}

.legend-card.open .legend-icon {
    background: linear-gradient(135deg, #1E6B6B 0%, #2E9B9B 100%);
    box-shadow: 0 10px 30px rgba(30, 107, 107, 0.3);
}

.legend-card h3 {
    color: #1A2847;
    font-size: 1.4rem;
    margin: 0 0 0.5rem;
    font-weight: 600;
}

.legend-card p {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 1rem;
    line-height: 1.5;
}

.legend-days {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.legend-card.closed .legend-days {
    background: rgba(198, 107, 61, 0.1);
    color: #C66B3D;
}

.legend-card.open .legend-days {
    background: rgba(30, 107, 107, 0.1);
    color: #1E6B6B;
}

/* Program Days */
.program-days {
    max-width: 1000px;
    margin: 0 auto;
}

.program-day {
    margin-bottom: 4rem;
}

/* Day Header */
.day-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.2);
}

.day-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1A2847;
    flex-shrink: 0;
}

.day-info {
    color: #FFFFFF;
}

.day-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}

.day-date {
    color: #C9A962;
    font-size: 0.95rem;
    margin-top: 0.25rem;
}

/* Sessions Container */
.day-sessions {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    padding-left: 3rem;
}

.day-sessions::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #C9A962 0%, #E5D4A1 100%);
    border-radius: 3px;
}

/* Session Card */
.session-card {
    position: relative;
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(26, 40, 71, 0.08);
    transition: all 0.4s ease;
}

.session-card:hover {
    box-shadow: 0 15px 50px rgba(26, 40, 71, 0.15);
    transform: translateX(10px);
}

.session-card::before {
    content: '';
    position: absolute;
    left: -3rem;
    top: 2rem;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 3px solid #FFFFFF;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.session-card.closed::before {
    background: #C66B3D;
}

.session-card.open::before {
    background: #1E6B6B;
}

/* Session Status Header */
.session-status {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.session-card.closed .session-status {
    background: linear-gradient(135deg, #C66B3D 0%, #E88B5D 100%);
    color: #FFFFFF;
}

.session-card.open .session-status {
    background: linear-gradient(135deg, #1E6B6B 0%, #2E9B9B 100%);
    color: #FFFFFF;
}

.status-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.session-type-badge {
    background: rgba(255,255,255,0.2);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
}

/* Session Body */
.session-body {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 2rem;
    padding: 2rem;
}

/* Time Block */
.time-block {
    text-align: center;
    padding: 1.5rem;
    background: #FAF8F5;
    border-radius: 16px;
}

.time-main {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1A2847;
    line-height: 1;
}

.time-end {
    font-size: 1rem;
    color: #888;
    margin-top: 0.5rem;
}

.time-duration {
    display: inline-block;
    margin-top: 0.75rem;
    padding: 0.3rem 0.75rem;
    background: #1A2847;
    color: #C9A962;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.session-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: #888;
}

/* Session Content */
.session-content h3 {
    color: #1A2847;
    font-size: 1.4rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
    line-height: 1.3;
}

.session-description {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 1.5rem;
}

/* Speakers Section */
.speakers-section {
    padding-top: 1.5rem;
    border-top: 2px solid #FAF8F5;
}

.speakers-group {
    margin-bottom: 1.5rem;
}

.speakers-group:last-child {
    margin-bottom: 0;
}

.speakers-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: #1A2847;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 1rem;
}

.speakers-title .icon {
    font-size: 1.1rem;
}

.speakers-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Speaker Card */
.speaker-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: linear-gradient(135deg, #FAF8F5 0%, #FFFFFF 100%);
    border-radius: 12px;
    border: 1px solid #E8E8E8;
    min-width: 280px;
    transition: all 0.3s ease;
}

.speaker-card:hover {
    border-color: #C9A962;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.15);
    transform: translateY(-3px);
}

.speaker-card.moderator {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-color: #C9A962;
}

.speaker-photo {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #C9A962;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.speaker-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.speaker-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    font-weight: 700;
    font-size: 1.1rem;
}

.speaker-info {
    min-width: 0;
}

.speaker-name {
    font-weight: 600;
    color: #1A2847;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.speaker-title {
    color: #C9A962;
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.speaker-org {
    color: #888;
    font-size: 0.75rem;
}

/* Program Empty State */
.program-page .empty-state {
    text-align: center;
    padding: 5rem 2rem;
    background: #FFFFFF;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.program-page .empty-icon {
    font-size: 5rem;
    margin-bottom: 1.5rem;
}

.program-page .empty-state h3 {
    color: #1A2847;
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
}

.program-page .empty-state p {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Program Page Responsive */
@media (max-width: 992px) {
    .session-legend {
        grid-template-columns: 1fr;
        max-width: 450px;
    }
}

@media (max-width: 768px) {
    .day-header {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .session-body {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .time-block {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 1rem;
        padding: 1rem;
    }
    
    .time-end {
        margin-top: 0;
    }
    
    .time-end::before {
        content: '→ ';
    }
    
    .time-duration {
        margin-top: 0;
    }
    
    .session-location {
        margin-top: 0;
    }
    
    .day-sessions {
        padding-left: 2rem;
    }
    
    .day-sessions::before {
        left: 8px;
    }
    
    .session-card::before {
        left: -2rem;
    }
    
    .speakers-grid {
        flex-direction: column;
    }
    
    .speaker-card {
        min-width: auto;
    }
}

/* =============================================
   SUCCESS PAGE - ENHANCED
   ============================================= */

.success-section {
    min-height: calc(100vh - 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 100%);
}

.success-card {
    background: var(--white);
    border-radius: 20px;
    padding: 3rem;
    max-width: 550px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(26, 40, 71, 0.1);
}

.success-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--teal) 0%, #2E9B9B 100%);
    color: white;
    font-size: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(30, 107, 107, 0.3);
}

.success-card h1 {
    color: var(--navy);
    font-size: 1.75rem;
    margin: 0 0 1rem;
}

.success-message {
    color: #666;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.confirmation-details {
    background: var(--cream);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    text-align: left;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(26, 40, 71, 0.1);
}

.detail-row:last-child {
    border-bottom: none;
}

.detail-row .label {
    color: #888;
    font-size: 0.9rem;
}

.detail-row .value {
    color: var(--navy);
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-row .value.highlight {
    color: var(--gold);
    font-weight: 700;
}

.email-notice {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(30, 107, 107, 0.1);
    border-radius: 8px;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.btn-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-badge svg {
    flex-shrink: 0;
}

@media (max-width: 480px) {
    .success-card {
        padding: 2rem 1.5rem;
    }
    
    .detail-row {
        flex-direction: column;
        gap: 0.25rem;
    }
}
/* =============================================
   LANGUAGE SWITCHER - ENHANCED
   ============================================= */

.lang-switcher {
    display: flex;
    gap: 0.25rem;
    margin-left: 1rem;
}

.lang-btn {
    padding: 0.4rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.lang-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.5);
}

.lang-btn.active {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
    font-weight: 600;
}
/* =============================================
   REGISTRATION PAGE - PREMIUM DESIGN
   ============================================= */

.registration-page {
    background: linear-gradient(180deg, #FAF8F5 0%, #FFFFFF 100%);
}

.registration-main {
    min-height: 100vh;
}

/* Hero */
.registration-hero {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    padding: 3rem 0;
    text-align: center;
}

.registration-hero h1 {
    color: #FFFFFF;
    font-size: 2rem;
    margin: 0 0 0.5rem;
}

.registration-hero p {
    color: #C9A962;
    font-size: 1rem;
    margin: 0;
}

/* Content */
.registration-content {
    padding: 3rem 0 5rem;
}

/* Steps Progress */
.steps-wrapper {
    max-width: 500px;
    margin: 0 auto 3rem;
}

.steps-progress {
    display: flex;
    align-items: center;
    justify-content: center;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.step-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: #888;
    transition: all 0.3s ease;
}

.step-circle svg {
    width: 24px;
    height: 24px;
}

.step.active .step-circle {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    color: #C9A962;
    box-shadow: 0 5px 20px rgba(26, 40, 71, 0.3);
}

.step.completed .step-circle {
    background: linear-gradient(135deg, #1E6B6B 0%, #2E9B9B 100%);
    color: #FFFFFF;
}

.step-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.step.active .step-label {
    color: #1A2847;
}

.step-line {
    width: 80px;
    height: 3px;
    background: #E8E8E8;
    margin: 0 0.5rem;
    margin-bottom: 1.5rem;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.step-line.active {
    background: linear-gradient(90deg, #1E6B6B 0%, #2E9B9B 100%);
}

/* Registration Card */
.registration-card {
    max-width: 700px;
    margin: 0 auto;
    background: #FFFFFF;
    border-radius: 24px;
    box-shadow: 0 10px 50px rgba(26, 40, 71, 0.1);
    padding: 2.5rem;
    overflow: hidden;
}

.card-header {
    text-align: center;
    margin-bottom: 2rem;
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.card-header h2 {
    color: #1A2847;
    font-size: 1.75rem;
    margin: 0 0 0.5rem;
}

.card-subtitle {
    color: #666;
    font-size: 1rem;
    margin: 0;
}

/* Participant Type Cards */
.participant-types {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.type-card {
    cursor: pointer;
}

.type-card input {
    display: none;
}

.type-card-inner {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.25rem 1.5rem;
    background: #FAF8F5;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s ease;
}

.type-card:hover .type-card-inner {
    border-color: #C9A962;
    transform: translateX(5px);
}

.type-card.selected .type-card-inner,
.type-card input:checked + .type-card-inner {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-color: #C9A962;
}

.type-icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.type-icon {
    font-size: 1.75rem;
}

.type-content {
    flex: 1;
}

.type-content h3 {
    color: #1A2847;
    font-size: 1.1rem;
    margin: 0 0 0.25rem;
    font-weight: 600;
}

.type-content p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
}

.type-check {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.type-check svg {
    width: 16px;
    height: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.type-card.selected .type-check,
.type-card input:checked + .type-card-inner .type-check {
    background: #C9A962;
    border-color: #C9A962;
}

.type-card.selected .type-check svg,
.type-card input:checked + .type-card-inner .type-check svg {
    opacity: 1;
    color: #FFFFFF;
}

/* Other Field */
.other-field {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #FAF8F5;
    border-radius: 12px;
}

.other-field label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1A2847;
}

/* Price Banner */
.price-banner {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    border-radius: 16px;
    margin-bottom: 2rem;
}

.price-icon {
    font-size: 2rem;
}

.price-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.price-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
}

.price-amount {
    color: #C9A962;
    font-size: 1.5rem;
    font-weight: 700;
}

.price-note {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.8rem;
}

/* Form Sections */
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #EEE;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.section-title {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #1A2847;
    font-size: 1.1rem;
    margin: 0 0 1.5rem;
    font-weight: 600;
}

.section-icon {
    font-size: 1.25rem;
}

.section-optional {
    font-weight: 400;
    color: #888;
    font-size: 0.9rem;
}

/* Form Elements */
.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-row-3 {
    grid-template-columns: 100px 1fr 1fr;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #1A2847;
    font-size: 0.9rem;
}

.form-group .required {
    color: #C66B3D;
}

.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
}

.form-control:focus {
    outline: none;
    border-color: #C9A962;
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
}

.form-control::placeholder {
    color: #AAA;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 0.75rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 2.5rem;
}

/* Summary Section */
.summary-section {
    margin-bottom: 2rem;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.summary-item {
    padding: 1rem;
    background: #FAF8F5;
    border-radius: 12px;
}

.summary-label {
    display: block;
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 0.25rem;
}

.summary-value {
    font-weight: 600;
    color: #1A2847;
}

.summary-value.highlight {
    color: #C9A962;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    border-radius: 12px;
}

.total-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
}

.total-amount {
    color: #C9A962;
    font-size: 1.5rem;
    font-weight: 700;
}

/* Payment Methods */
.payment-section {
    margin-bottom: 2rem;
}

.payment-methods {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.payment-card {
    cursor: pointer;
}

.payment-card input {
    display: none;
}

.payment-card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem 1rem;
    background: #FAF8F5;
    border: 2px solid transparent;
    border-radius: 16px;
    transition: all 0.3s ease;
    position: relative;
}

.payment-card:hover .payment-card-inner {
    border-color: #C9A962;
}

.payment-card.selected .payment-card-inner,
.payment-card input:checked + .payment-card-inner {
    background: linear-gradient(135deg, rgba(201, 169, 98, 0.1) 0%, rgba(201, 169, 98, 0.05) 100%);
    border-color: #C9A962;
}

.payment-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.75rem;
    font-size: 1.5rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.payment-name {
    font-weight: 600;
    color: #1A2847;
    font-size: 0.95rem;
    margin-bottom: 0.25rem;
}

.payment-desc {
    font-size: 0.8rem;
    color: #888;
}

.payment-check {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #DDD;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.payment-check svg {
    width: 14px;
    height: 14px;
    opacity: 0;
}

.payment-card.selected .payment-check,
.payment-card input:checked + .payment-card-inner .payment-check {
    background: #C9A962;
    border-color: #C9A962;
}

.payment-card.selected .payment-check svg,
.payment-card input:checked + .payment-card-inner .payment-check svg {
    opacity: 1;
    color: #FFFFFF;
}

/* Security Notice */
.security-notice {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: rgba(30, 107, 107, 0.1);
    border-radius: 12px;
    margin-bottom: 2rem;
}

.security-icon {
    font-size: 1.5rem;
}

.security-text {
    display: flex;
    flex-direction: column;
}

.security-text strong {
    color: #1E6B6B;
    font-size: 0.9rem;
}

.security-text span {
    color: #666;
    font-size: 0.8rem;
}

/* Form Actions */
.form-actions {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 2rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    color: #1A2847;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201, 169, 98, 0.4);
}

.btn-secondary {
    background: #FAF8F5;
    color: #1A2847;
    border: 2px solid #E8E8E8;
}

.btn-secondary:hover {
    border-color: #C9A962;
    background: #FFFFFF;
}

.btn-lg {
    width: 100%;
    padding: 1.25rem 2rem;
    font-size: 1.1rem;
}

.btn-pay {
    flex: 1;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.alert-error {
    background: rgba(198, 107, 61, 0.1);
    color: #C66B3D;
    border: 1px solid rgba(198, 107, 61, 0.2);
}

.alert-success {
    background: rgba(30, 107, 107, 0.1);
    color: #1E6B6B;
    border: 1px solid rgba(30, 107, 107, 0.2);
}

/* Responsive */
@media (max-width: 768px) {
    .registration-card {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .form-row,
    .form-row-3 {
        grid-template-columns: 1fr;
    }
    
    .summary-grid {
        grid-template-columns: 1fr;
    }
    
    .payment-methods {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column-reverse;
    }
    
    .btn {
        width: 100%;
    }
    
    .steps-progress {
        transform: scale(0.9);
    }
    
    .step-line {
        width: 40px;
    }
}
/* =============================================
   REGISTRATION FORM - WIDE LAYOUT
   ============================================= */

.registration-card-wide {
    max-width: 900px;
}

/* Phone input avec indicatif */
.phone-input-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.phone-prefix {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    padding: 0.875rem 1rem;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    color: #C9A962;
    font-weight: 600;
    font-size: 0.9rem;
    border: 2px solid #1A2847;
    border-right: none;
    border-radius: 12px 0 0 12px;
    white-space: nowrap;
}

.phone-input-group .form-control {
    border-radius: 0 12px 12px 0;
    flex: 1;
}

/* Améliorer la largeur des champs */
.registration-card-wide .form-row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.registration-card-wide .form-row-3 {
    grid-template-columns: 120px 1fr 1fr;
    gap: 1.5rem;
}

.registration-card-wide .form-group {
    margin-bottom: 1.25rem;
}

.registration-card-wide .form-control {
    padding: 1rem 1.25rem;
    font-size: 1rem;
}

/* Select stylisé */
select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
}

/* Sections du formulaire */
.registration-card-wide .form-section {
    margin-bottom: 2.5rem;
    padding-bottom: 2.5rem;
}

.registration-card-wide .section-title {
    font-size: 1.15rem;
    margin-bottom: 1.75rem;
}

/* Responsive pour formulaire large */
@media (max-width: 900px) {
    .registration-card-wide {
        max-width: 100%;
        margin: 0 1rem;
    }
    
    .registration-card-wide .form-row,
    .registration-card-wide .form-row-3 {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .phone-prefix {
        min-width: 60px;
        padding: 0.875rem 0.75rem;
        font-size: 0.85rem;
    }
}

/* =============================================
   SPEAKERS PAGE - PREMIUM DESIGN
   ============================================= */

.speakers-page {
    background: #FAF8F5;
}

.speakers-main {
    min-height: 100vh;
}

/* Hero Section */
.speakers-hero {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    padding: 4rem 0;
    text-align: center;
}

.speakers-hero h1 {
    color: #FFFFFF;
    font-size: 3rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.speakers-hero .hero-subtitle {
    color: #C9A962;
    font-size: 1.2rem;
    font-style: italic;
    margin: 0;
}

/* Introduction */
.speakers-intro {
    padding: 3rem 0;
    background: #FFFFFF;
    border-bottom: 1px solid #EEE;
}

.speakers-intro .intro-text {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    line-height: 1.8;
}

/* Sections */
.speakers-section {
    padding: 4rem 0;
}

.speakers-keynote {
    background: #FFFFFF;
}

.speakers-all {
    background: #FAF8F5;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    border-radius: 50%;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.section-header h2 {
    color: #1A2847;
    font-size: 2rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 0 0 1rem;
}

.section-line {
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #C9A962 0%, #E5D4A1 100%);
    margin: 0 auto;
    border-radius: 3px;
}

/* Keynote Grid */
.keynote-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

/* Keynote Card */
.keynote-card {
    display: flex;
    gap: 1.5rem;
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.08);
    border: 1px solid #EEE;
    transition: all 0.4s ease;
}

.keynote-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(26, 40, 71, 0.12);
    border-color: #C9A962;
}

.keynote-image-wrapper {
    position: relative;
    flex-shrink: 0;
}

.keynote-photo {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    object-fit: cover;
    border: 3px solid #C9A962;
    box-shadow: 0 5px 20px rgba(201, 169, 98, 0.3);
}

.keynote-photo-placeholder {
    width: 150px;
    height: 150px;
    border-radius: 20px;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    font-size: 2.5rem;
    font-weight: 600;
    border: 3px solid #C9A962;
}

.keynote-badge {
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    color: #1A2847;
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 3px 10px rgba(201, 169, 98, 0.4);
}

.keynote-info {
    flex: 1;
}

.keynote-name {
    color: #1A2847;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.keynote-title {
    color: #C9A962;
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 0.25rem;
}

.keynote-org {
    color: #666;
    font-size: 0.95rem;
    margin: 0 0 0.75rem;
}

.keynote-country {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0.75rem;
    background: rgba(30, 107, 107, 0.1);
    color: #1E6B6B;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 1rem;
}

.keynote-bio {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 1rem;
}

.keynote-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #0077B5;
    color: #FFFFFF;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.keynote-linkedin:hover {
    background: #005885;
    transform: scale(1.1);
}

/* Filters */
.speakers-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: #FFFFFF;
    border: 2px solid #E8E8E8;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover {
    border-color: #C9A962;
    color: #C9A962;
}

.filter-btn.active {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    border-color: #1A2847;
    color: #C9A962;
}

/* Speakers Grid */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Speaker Card */
.speaker-card {
    display: flex;
    flex-direction: column;
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 40, 71, 0.05);
    border: 1px solid #EEE;
    transition: all 0.3s ease;
    position: relative;
}

.speaker-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 40, 71, 0.1);
    border-color: #C9A962;
}

.speaker-image-wrapper {
    text-align: center;
    margin-bottom: 1rem;
}

.speaker-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #C9A962;
    box-shadow: 0 5px 15px rgba(201, 169, 98, 0.2);
}

.speaker-photo-placeholder {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: #C9A962;
    font-size: 2rem;
    font-weight: 600;
    border: 3px solid #C9A962;
}

.speaker-info {
    text-align: center;
    flex: 1;
}

.speaker-name {
    color: #1A2847;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0 0 0.35rem;
}

.speaker-title {
    color: #C9A962;
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0 0 0.25rem;
}

.speaker-org {
    color: #666;
    font-size: 0.85rem;
    margin: 0 0 0.5rem;
}

.speaker-country {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.8rem;
    color: #888;
}

.speaker-actions {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #EEE;
}

.speaker-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #F5F5F5;
    border: none;
    border-radius: 10px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.speaker-link:hover {
    background: #1A2847;
    color: #C9A962;
}

/* Bio Modal */
.speaker-bio-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 40, 71, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 2rem;
}

.speaker-bio-modal.active {
    opacity: 1;
    visibility: visible;
}

.bio-content {
    background: #FFFFFF;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 100%;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
}

.speaker-bio-modal.active .bio-content {
    transform: scale(1);
}

.bio-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: #F5F5F5;
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
}

.bio-close:hover {
    background: #1A2847;
    color: #FFFFFF;
}

.bio-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #EEE;
}

.bio-photo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #C9A962;
}

.bio-header h4 {
    color: #1A2847;
    font-size: 1.2rem;
    margin: 0 0 0.25rem;
}

.bio-header p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.bio-text {
    color: #555;
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0;
}

/* Stats Section */
.speakers-stats {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    padding: 4rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.stat-item {
    padding: 2rem;
}

.stat-number {
    display: block;
    color: #C9A962;
    font-size: 3.5rem;
    font-weight: 700;
    font-family: 'Cormorant Garamond', serif;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .speakers-hero h1 {
        font-size: 2rem;
    }
    
    .keynote-grid {
        grid-template-columns: 1fr;
    }
    
    .keynote-card {
        flex-direction: column;
        text-align: center;
    }
    
    .keynote-info {
        text-align: center;
    }
    
    .speakers-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .stat-item {
        padding: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .stat-item:last-child {
        border-bottom: none;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .speakers-filters {
        gap: 0.5rem;
    }
    
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}
/* Speaker Type Badges */
.speaker-type-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.75rem;
}

.speaker-type-keynote {
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    color: #1A2847;
}

.speaker-type-panelist {
    background: rgba(30, 107, 107, 0.15);
    color: #1E6B6B;
}

.speaker-type-moderator {
    background: rgba(26, 40, 71, 0.1);
    color: #1A2847;
}

.speaker-type-presenter {
    background: rgba(198, 107, 61, 0.15);
    color: #C66B3D;
}

/* Featured Badge */
.speaker-featured-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    color: #1A2847;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    box-shadow: 0 2px 8px rgba(201, 169, 98, 0.4);
}

.speaker-image-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 1rem;
}

/* Keynote Social Links */
.keynote-social {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.social-link.linkedin {
    background: #0077B5;
    color: #FFFFFF;
}

.social-link.linkedin:hover {
    background: #005885;
    transform: scale(1.1);
}

.social-link.twitter {
    background: #000000;
    color: #FFFFFF;
}

.social-link.twitter:hover {
    background: #333333;
    transform: scale(1.1);
}

.social-link.website {
    background: #1E6B6B;
    color: #FFFFFF;
}

.social-link.website:hover {
    background: #155555;
    transform: scale(1.1);
}

/* Bio Modal Enhancements */
.bio-photo-placeholder {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #C9A962;
    font-size: 1.5rem;
    font-weight: 600;
}

.bio-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #EEE;
}

.bio-social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #F5F5F5;
    color: #1A2847;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.bio-social-link:hover {
    background: #1A2847;
    color: #C9A962;
}
/* ============================================
   MENU MOBILE RESPONSIVE - IAIS 2026
   À ajouter à votre style.css
   ============================================ */

/* ============================================
   BOUTON HAMBURGER
   ============================================ */
.mobile-menu-toggle {
    display: none; /* Caché par défaut sur desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: rgba(201, 162, 39, 0.1);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px;
    gap: 5px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
}

.hamburger-line {
    width: 22px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Animation hamburger → croix */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ============================================
   OVERLAY SOMBRE
   ============================================ */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 40, 71, 0.85);
    backdrop-filter: blur(5px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 998;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   PANEL MENU MOBILE
   ============================================ */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh; /* Pour les navigateurs mobiles modernes */
    background: linear-gradient(180deg, var(--navy) 0%, #0f1829 100%);
    z-index: 999;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.mobile-menu.active {
    right: 0;
}

/* Header du menu mobile */
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid rgba(201, 162, 39, 0.2);
    flex-shrink: 0;
}

.mobile-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    text-decoration: none;
}

.mobile-logo-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.mobile-logo span {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 16px;
    font-weight: 600;
}

.mobile-menu-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background: rgba(201, 162, 39, 0.3);
    color: var(--gold);
    transform: rotate(90deg);
}

/* Contenu du menu */
.mobile-menu-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* Liens de navigation */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(201, 162, 39, 0.1);
    color: var(--gold);
    padding-left: 30px;
}

.mobile-nav-link .nav-icon {
    font-size: 20px;
    width: 30px;
    text-align: center;
}

/* Footer du menu mobile */
.mobile-menu-footer {
    padding: 25px;
    border-top: 1px solid rgba(201, 162, 39, 0.2);
    flex-shrink: 0;
}

.mobile-register-btn {
    display: block;
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--gold) 0%, #e8c547 100%);
    color: var(--navy);
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 5px 20px rgba(201, 162, 39, 0.3);
    transition: all 0.3s ease;
}

.mobile-register-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 162, 39, 0.4);
}

.mobile-lang-switcher {
    display: flex;
    gap: 10px;
}

.mobile-lang-btn {
    flex: 1;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 162, 39, 0.3);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.mobile-lang-btn.active,
.mobile-lang-btn:hover {
    background: rgba(201, 162, 39, 0.2);
    border-color: var(--gold);
    color: var(--gold);
}

/* Body class quand menu ouvert */
body.mobile-menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Tablette - Cacher nav desktop, afficher hamburger */
@media (max-width: 992px) {
    .header .nav,
    .header .lang-switcher {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
}

/* Mobile petit écran */
@media (max-width: 480px) {
    .header-container {
        padding: 12px 15px;
    }
    
    .logo-img {
        width: 40px;
        height: 40px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
    }
    
    .mobile-nav-link {
        padding: 16px 20px;
        font-size: 15px;
    }
    
    .mobile-menu-footer {
        padding: 20px;
    }
}
/* =============================================
   CONTACT PAGE - PREMIUM DESIGN
   ============================================= */

.contact-page {
    background: #FAF8F5;
}

.contact-main {
    min-height: 100vh;
}

/* Hero */
.contact-hero {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    padding: 4rem 0;
    text-align: center;
}

.contact-hero h1 {
    color: #fff;
    font-size: 2.75rem;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    margin: 0 0 0.5rem;
}

.contact-hero .hero-subtitle {
    color: #C9A962;
    font-size: 1.15rem;
    margin: 0;
    font-style: italic;
}

/* Content Grid */
.contact-content {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Form Card */
.form-card {
    background: #fff;
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(26, 40, 71, 0.08);
}

.form-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
}

.form-header h2 {
    color: #1A2847;
    font-size: 1.5rem;
    font-family: 'Cormorant Garamond', serif;
    margin: 0 0 0.5rem;
}

.form-header p {
    color: #666;
    margin: 0;
    font-size: 0.95rem;
}

/* Form */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form .form-group.full-width {
    grid-column: 1 / -1;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #1A2847;
    font-size: 0.9rem;
}

.contact-form label .required {
    color: #C62828;
}

.contact-form .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #E8E8E8;
    border-radius: 10px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #FFFFFF;
    color: #333333;
}

.contact-form .form-control::placeholder {
    color: #999999;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: #C9A962;
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(201, 169, 98, 0.1);
    color: #333333;
}

.contact-form select.form-control {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 1rem center;
    background-repeat: no-repeat;
    background-size: 1.5em 1.5em;
    padding-right: 3rem;
    background-color: #FFFFFF;
    color: #333333;
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 150px;
    background-color: #FFFFFF;
    color: #333333;
}

/* Fix pour les inputs */
.contact-form input.form-control,
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea,
.contact-form select {
    background-color: #FFFFFF !important;
    color: #333333 !important;
    -webkit-text-fill-color: #333333;
    opacity: 1;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #999999 !important;
    -webkit-text-fill-color: #999999;
    opacity: 1;
}

.error-text {
    display: block;
    color: #C62828;
    font-size: 0.8rem;
    margin-top: 0.35rem;
}

/* Submit Button */
.btn-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #C9A962 0%, #E5D4A1 100%);
    color: #1A2847;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(201, 169, 98, 0.4);
}

.btn-submit:active {
    transform: translateY(0);
}

/* Info Cards */
.contact-info-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 5px 20px rgba(26, 40, 71, 0.05);
    transition: all 0.3s ease;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(26, 40, 71, 0.1);
}

.info-icon {
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.info-card h3 {
    color: #1A2847;
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}

.info-card p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.info-card a {
    color: #1A2847;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: #C9A962;
}

/* Social Card */
.social-card {
    background: linear-gradient(135deg, #1A2847 0%, #2A3A5C 100%);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
}

.social-card h3 {
    color: #C9A962;
    font-size: 1rem;
    margin: 0 0 1rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #C9A962;
    color: #1A2847;
    transform: translateY(-3px);
}

/* Messages */
.messages-container {
    margin-bottom: 1.5rem;
}

.alert {
    padding: 1rem 1.25rem;
    border-radius: 10px;
    margin-bottom: 0.75rem;
    font-size: 0.9rem;
}

.alert-success {
    background: #E8F5E9;
    color: #2E7D32;
    border-left: 4px solid #4CAF50;
}

.alert-error {
    background: #FFEBEE;
    color: #C62828;
    border-left: 4px solid #F44336;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-wrapper {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .social-card {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-card {
        padding: 1.5rem;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .contact-info-wrapper {
        grid-template-columns: 1fr;
    }
}