:root {
    --primary: #FF8200;
    --secondary: #FFFFFF;
    --tertiary: #009A44;
    --dark: #1A1A2E;
    --dark-light: #16213E;
    --accent: #FFD700;
    --text: #333333;
    --text-light: #f5f5f5;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

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

body {
    font-family: 'Poppins', sans-serif;
    background: var(--dark);
    color: var(--text-light);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
    margin-right: 8px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-links .nav-link {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 0;
}

.nav-links .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s;
}

.nav-links .nav-link:hover::after,
.nav-links .nav-link.active::after {
    width: 100%;
}

.nav-links .nav-link:hover,
.nav-links .nav-link.active {
    color: var(--primary);
}

.navbar-toggler {
    border: none;
    padding: 5px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Banner */
.site-banner {
    margin-top: 70px;
    width: 100%;
    min-height: 350px;
    background: url('../images/bannieregs.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.site-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.85) 0%, rgba(22, 33, 62, 0.75) 100%);
}

.banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    padding: 50px 20px;
    color: var(--text-light);
    max-width: 900px;
}

.banner-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
}

.banner-nav a {
    color: var(--secondary);
    text-decoration: none;
    font-weight: 600;
    padding: 10px 25px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    transition: all 0.3s;
    font-size: 0.95rem;
    backdrop-filter: blur(5px);
}

.banner-nav a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--dark);
    transform: translateY(-2px);
}

.banner-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 25px;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 4px;
    text-shadow: 0 4px 20px rgba(255, 130, 0, 0.4);
    line-height: 1.1;
}

.banner-subtitle {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 25px;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
    color: var(--secondary);
}

.banner-theme {
    font-size: 1.4rem;
    font-style: italic;
    color: var(--tertiary);
    font-weight: 600;
    letter-spacing: 1px;
}

/* Responsive Banner */
@media (max-width: 768px) {
    .banner-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }
    .banner-subtitle {
        font-size: 1.2rem;
    }
    .banner-theme {
        font-size: 1.1rem;
    }
    .site-banner {
        min-height: 280px;
    }
}

/* Hero Section */
.hero {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 20px 60px;
}

.hero-info-row {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.hero-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    padding: 15px 25px;
    border-radius: 50px;
    border: 1px solid var(--glass-border);
}

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

.hero-info-text {
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
}

.hero-info-text span {
    color: var(--primary);
}
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 130, 0, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(0, 154, 68, 0.1) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero-badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    margin-bottom: 20px;
    animation: fadeInDown 0.8s ease;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero h1 span {
    color: var(--primary);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-meta {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 40px;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-meta-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--glass);
    padding: 15px 25px;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.hero-meta-item .icon {
    font-size: 1.5rem;
}

.hero-meta-item .text {
    text-align: left;
}

.hero-meta-item .label {
    font-size: 0.8rem;
    opacity: 0.8;
}

.hero-meta-item .value {
    font-weight: 600;
    color: var(--primary);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--dark);
}

.btn-primary:hover {
    background: #ff9f33;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 130, 0, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    color: var(--dark);
    transform: translateY(-3px);
}

/* Sections */
.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
}

/* Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.3s;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

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

.card-img .card-image {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.card-img .card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.card h3 {
    margin-bottom: 15px;
    color: var(--primary);
    text-align: center;
}

.card p {
    opacity: 0.9;
    margin-bottom: 20px;
    text-align: center;
}

.card p {
    opacity: 0.9;
    margin-bottom: 20px;
}

.card ul {
    list-style: none;
}

.card ul li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--tertiary);
    font-weight: bold;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-image {
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-content h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.about-content p {
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Stats */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.stat-item {
    text-align: center;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 30px;
    border-radius: 15px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.stat-label {
    opacity: 0.8;
}

/* Agenda */
.agenda-day {
    margin-bottom: 40px;
}

.day-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding: 20px 30px;
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border-radius: 15px;
    border: 2px solid var(--primary);
    box-shadow: 0 8px 25px rgba(255, 130, 0, 0.2);
    transition: all 0.3s;
}

.day-header:hover {
    transform: scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 130, 0, 0.3);
}

.day-header .day-number {
    background: linear-gradient(135deg, var(--primary) 0%, #ff9f33 100%);
    color: var(--dark);
    padding: 12px 25px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(255, 130, 0, 0.4);
}

.day-header h3 {
    flex: 1;
}

.agenda-items {
    display: grid;
    gap: 15px;
}

.agenda-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    animation: slideIn 0.5s ease forwards;
    opacity: 0;
}

.agenda-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary), var(--tertiary));
    transition: width 0.3s;
}

.agenda-item:hover {
    border-color: var(--primary);
    transform: translateX(10px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 130, 0, 0.2);
}

.agenda-item:hover::before {
    width: 6px;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.agenda-day {
    animation: fadeInUp 0.6s ease;
}

.agenda-item.pause {
    background: rgba(0, 154, 68, 0.1);
    border-color: var(--tertiary);
}

.agenda-item.pause .agenda-time {
    color: var(--tertiary);
}

.agenda-item .intervenant {
    font-size: 0.85rem;
    color: var(--primary);
    margin-top: 8px;
    font-style: italic;
}

.agenda-time {
    min-width: 100px;
    font-weight: 600;
    color: var(--primary);
}

.agenda-content h4 {
    margin-bottom: 8px;
}

.agenda-content p {
    opacity: 0.8;
    font-size: 0.9rem;
}

/* Participants */
.participants-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
}

.participant-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s;
}

.participant-card:hover {
    transform: translateY(-5px);
    border-color: var(--tertiary);
}

.participant-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--tertiary));
    border-radius: 50%;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark);
}

.participant-card h4 {
    margin-bottom: 5px;
}

.participant-card .region {
    color: var(--tertiary);
    font-weight: 500;
    margin-bottom: 10px;
}

.participant-card .status {
    display: inline-block;
    background: var(--tertiary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
}

.participant-card .acteurs-list {
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.participant-card .acteur-name {
    font-size: 0.75rem;
    color: var(--text-light);
    opacity: 0.9;
    padding: 4px 8px;
    background: rgba(255, 130, 0, 0.15);
    border-radius: 6px;
    text-align: left;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info-card {
    background: linear-gradient(135deg, var(--dark) 0%, var(--dark-light) 100%);
    border: 2px solid var(--primary);
    border-radius: 25px;
    padding: 40px 30px;
    position: relative;
    overflow: hidden;
}

.contact-info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
}

.contact-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-hero-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 15px;
}

.contact-header h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.contact-header p {
    opacity: 0.8;
    font-size: 0.95rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--glass);
    border-radius: 12px;
    transition: all 0.3s;
}

.detail-item:hover {
    background: rgba(255, 130, 0, 0.1);
    transform: translateX(5px);
}

.detail-icon {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
}

.detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.detail-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.detail-label {
    font-size: 0.8rem;
    color: var(--tertiary);
    font-weight: 600;
}

.detail-value {
    font-size: 0.95rem;
    color: var(--secondary);
}

.contact-form-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 25px;
    padding: 40px;
    transition: all 0.3s;
}

.contact-form-card:hover {
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 130, 0, 0.15);
}

.contact-form-card h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-align: center;
}

.location-card {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    align-items: center;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
}

.location-details {
    text-align: center;
}

.location-details h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.location-details p {
    opacity: 0.8;
    margin-bottom: 20px;
}

@media (max-width: 900px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .location-card {
        grid-template-columns: 1fr;
    }
}

.contact-form {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: var(--text-light);
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

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

.form-group button {
    width: 100%;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.3);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: var(--primary);
    margin-bottom: 20px;
}

.footer-section p {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul a {
    color: var(--text-light);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-section ul a:hover {
    opacity: 1;
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--glass-border);
    opacity: 0.7;
}

.footer-bottom p {
    margin: 5px 0;
}

/* Alert */
.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.alert-success {
    background: rgba(0, 154, 68, 0.2);
    border: 1px solid var(--tertiary);
    color: var(--tertiary);
}

.alert-error {
    background: rgba(231, 76, 60, 0.2);
    border: 1px solid #e74c3c;
    color: #e74c3c;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 991px) {
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar-collapse {
        width: 100%;
        padding: 15px 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
    }

    .nav-links .nav-link {
        padding: 12px 0;
        border-bottom: 1px solid var(--glass-border);
        display: block;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-meta {
        flex-direction: column;
        gap: 15px;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .agenda-item {
        flex-direction: column;
        gap: 10px;
    }

    .agenda-time {
        min-width: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .stats {
        grid-template-columns: 1fr;
    }

    .btn {
        padding: 12px 25px;
    }
}

/* Map Styles */
.map-container {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: #0d1321;
}

.map-image {
    width: 100%;
    height: auto;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.map-point {
    position: absolute;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #FF8200;
    border: 2px solid #fff;
    color: #1A1A2E;
    font-weight: 700;
    font-size: 0.75rem;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-point:hover {
    transform: translate(-50%, -50%) scale(1.4);
    background: #009A44;
    box-shadow: 0 0 15px #FF8200;
    z-index: 20;
}

.point-label {
    line-height: 1;
}

.map-tooltip {
    position: fixed;
    background: var(--dark);
    border: 2px solid var(--primary);
    border-radius: 12px;
    padding: 15px 20px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    min-width: 180px;
}

.map-tooltip.active {
    opacity: 1;
}

.map-tooltip h4 {
    color: var(--primary);
    margin-bottom: 10px;
    font-size: 1.1rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 8px;
}

.map-tooltip p {
    margin: 6px 0;
    font-size: 0.95rem;
}

.map-tooltip p strong {
    color: var(--tertiary);
}

.map-info {
    text-align: center;
    margin-top: 15px;
    padding: 12px;
    background: var(--glass);
    border-radius: 10px;
}

.map-info p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Geographic Distribution Grid */
.geo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.geo-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.geo-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.geo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--glass-border);
}

.geo-region {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary);
}

.geo-count {
    background: var(--tertiary);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.geo-drenaet {
    font-size: 0.9rem;
    color: var(--text-light);
    opacity: 0.8;
    margin-bottom: 12px;
}

.geo-gestionnaires {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.gestionnaire-tag {
    font-size: 0.8rem;
    padding: 6px 10px;
    background: rgba(255, 130, 0, 0.1);
    border-left: 3px solid var(--primary);
    border-radius: 0 6px 6px 0;
    color: var(--text-light);
}

/* Practical Info */
.practical-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.practical-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.practical-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 15px 40px rgba(255, 130, 0, 0.2);
}

.practical-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.practical-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.practical-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.practical-detail {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 5px;
}

.practical-sub {
    font-size: 0.9rem;
    opacity: 0.7;
}

.hotel-location {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
}

.location-map {
    border-radius: 15px;
    overflow: hidden;
}

.location-info h4 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.location-info p {
    opacity: 0.9;
    margin-bottom: 20px;
    line-height: 1.6;
}

.location-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.location-features span {
    background: rgba(255, 130, 0, 0.15);
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--secondary);
    border: 1px solid var(--primary);
}

@media (max-width: 768px) {
    .hotel-location {
        grid-template-columns: 1fr;
    }
}

/* Documents Section */
.documents-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.document-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.document-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
}

.document-card:hover {
    transform: translateY(-10px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 130, 0, 0.25);
}

.doc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
}

.doc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.document-card h4 {
    color: var(--primary);
    font-size: 1.2rem;
    margin-bottom: 12px;
}

.document-card p {
    font-size: 0.9rem;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.5;
}

.doc-status {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
}

.doc-status.coming {
    background: rgba(255, 130, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.doc-status.available {
    background: rgba(0, 154, 68, 0.2);
    color: var(--tertiary);
    border: 1px solid var(--tertiary);
    cursor: pointer;
}

.doc-status.available:hover {
    background: var(--tertiary);
    color: white;
}

/* Gallery Styles */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 130, 0, 0.3);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay span {
    color: white;
    font-weight: 600;
}

/* Videos Grid */
.videos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.video-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.video-card:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.video-thumbnail {
    position: relative;
}

.video-thumbnail img {
    width: 100%;
    height: 170px;
    object-fit: cover;
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.8);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
}

.video-card h4 {
    color: var(--primary);
    padding: 15px 15px 10px;
    font-size: 1.1rem;
}

.video-card p {
    padding: 0 15px 15px;
    font-size: 0.9rem;
    opacity: 0.8;
}

.coming-soon-card {
    text-align: center;
    padding: 60px 40px;
    background: var(--glass);
    border: 2px dashed var(--glass-border);
    border-radius: 20px;
    max-width: 500px;
    margin: 40px auto;
}

.coming-soon-card img {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
}

.coming-soon-card h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.coming-soon-card p {
    opacity: 0.8;
}

/* Quiz Styles */
.quiz-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.quiz-card {
    background: var(--glass);
    border: 2px solid var(--glass-border);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.quiz-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--tertiary));
}

.quiz-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 20px 50px rgba(255, 130, 0, 0.25);
}

.quiz-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.quiz-number {
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--dark);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.quiz-difficulty {
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.quiz-difficulty.facile {
    background: rgba(0, 154, 68, 0.2);
    color: var(--tertiary);
    border: 1px solid var(--tertiary);
}

.quiz-difficulty.moyen {
    background: rgba(255, 130, 0, 0.2);
    color: var(--primary);
    border: 1px solid var(--primary);
}

.quiz-difficulty.avancé {
    background: rgba(231, 76, 60, 0.2);
    color: #e74c3c;
    border: 1px solid #e74c3c;
}

.quiz-card h3 {
    color: var(--primary);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.quiz-card p {
    font-size: 0.95rem;
    opacity: 0.85;
    margin-bottom: 20px;
    line-height: 1.5;
}

.quiz-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--glass-border);
}

.quiz-questions {
    font-size: 0.85rem;
    opacity: 0.7;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin-top: 30px;
}

.info-card {
    text-align: center;
    padding: 30px 20px;
    background: var(--glass);
    border-radius: 15px;
    transition: all 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
}

.info-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 10px;
}

.info-card p {
    font-size: 0.9rem;
    opacity: 0.85;
}

/* Docs Grid for Public Page */
.docs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.docs-grid .doc-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s;
}

.docs-grid .doc-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.docs-grid .doc-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.docs-grid .doc-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.docs-grid .doc-info h4 {
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.docs-grid .doc-info p {
    font-size: 0.85rem;
    opacity: 0.7;
}

.docs-grid .doc-card.doc-coming {
    opacity: 0.6;
    cursor: default;
}

.docs-grid .doc-card.doc-coming:hover {
    transform: none;
}

/* ============================================
   RESPONSIVE - Sans débordement
   ============================================ */
@media (max-width: 768px) {
    * { max-width: 100%; }
    
    .container {
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
    }
    
    .navbar .container {
        flex-wrap: wrap;
    }
    
    .navbar-collapse {
        width: 100%;
    }
    
    .nav-links {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section {
        padding: 40px 15px;
        max-width: 100%;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .cards-grid,
    .quiz-grid,
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 30px;
    }
    
    .footer-section {
        width: 100%;
        text-align: center;
    }
    
    .site-banner {
        padding: 20px;
    }
    
    .banner-title,
    .banner-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-info-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .form-card,
    .badge-card,
    .scanner-card {
        padding: 20px;
        max-width: 100%;
    }
    
    .form-grid,
    .badge-form-grid,
    .options-grid,
    .stats-grid,
    .scanner-grid {
        grid-template-columns: 1fr;
    }
    
    .admin-container {
        flex-direction: column;
    }
    
    .sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
    }
    
    .main-content {
        padding: 20px;
        max-width: 100%;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .quiz-modal-content {
        width: 95%;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    table {
        font-size: 0.8rem;
        display: block;
        overflow-x: auto;
    }
    
    th, td {
        padding: 8px 4px;
        white-space: nowrap;
    }
    
    img, iframe {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .section-title h2 {
        font-size: 1.4rem;
    }
    
    .card {
        padding: 15px;
    }
    
    .quiz-counter {
        font-size: 0.8rem;
    }
    
    .btn-nav {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 10px 15px;
    }
}