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

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.scroll-animate {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.animate-in {
    opacity: 1;
}

/* Fade Up Animation */
.animate-fade-up {
    transform: translateY(50px);
}

.animate-fade-up.animate-in {
    transform: translateY(0);
}

/* Fade Down Animation */
.animate-fade-down {
    transform: translateY(-50px);
}

.animate-fade-down.animate-in {
    transform: translateY(0);
}

/* Fade Left Animation */
.animate-fade-left {
    transform: translateX(-50px);
}

.animate-fade-left.animate-in {
    transform: translateX(0);
}

/* Fade Right Animation */
.animate-fade-right {
    transform: translateX(50px);
}

.animate-fade-right.animate-in {
    transform: translateX(0);
}

/* Scale Animation */
.animate-scale {
    transform: scale(0.8);
}

.animate-scale.animate-in {
    transform: scale(1);
}

/* Rotate Animation */
.animate-rotate {
    transform: rotate(-10deg) scale(0.9);
}

.animate-rotate.animate-in {
    transform: rotate(0deg) scale(1);
}

/* Staggered Animation Delays */
.scroll-animate {
    transition-delay: var(--animation-delay, 0ms);
}

/* Additional Impressive Animations */
@keyframes bounce-in {
    0% {
        opacity: 0;
        transform: translateY(50px) scale(0.8);
    }
    50% {
        transform: translateY(-10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes slide-rotate {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotate(-45deg);
    }
    100% {
        opacity: 1;
        transform: translateX(0) rotate(0deg);
    }
}

@keyframes zoom-in {
    0% {
        opacity: 0;
        transform: scale(0.5);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes flip-in {
    0% {
        opacity: 0;
        transform: rotateY(-90deg);
    }
    100% {
        opacity: 1;
        transform: rotateY(0deg);
    }
}

/* Enhanced animations for specific elements */
.stat-box.animate-in {
    animation: bounce-in 0.8s ease-out forwards;
}

.exhibitor-logo-box.animate-in {
    animation: zoom-in 0.6s ease-out forwards;
}

.representative-card.animate-in {
    animation: slide-rotate 0.7s ease-out forwards;
}

.content-box.animate-in {
    animation: flip-in 0.8s ease-out forwards;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    overflow-x: hidden;
}

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

.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 2;
}

/* Header styles are now in header.css */

.hero-content {
    position: relative;
    z-index: 5;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 40px;
    color: #ffffff;
}

.hero-subtitle {
    font-size: 22px;
    font-weight: 300;
    margin-bottom: 30px;
    color: #ffffff;
    position: relative;
    padding-bottom: 15px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(to right, #000000 0%, #1AA45A 50%, #D5373A 100%);
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    line-height: 1.2;
    max-width: 1400px;
    margin: 0 auto;
    color: #ffffff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-bottom {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 30px 40px;
    width: 100%;
}

.sponsor-box {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid #ffffff;
    padding: 18px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.sponsor-flag {
    width: 50px;
    height: 35px;
    border-radius: 4px;
}

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

.sponsor-label {
    font-size: 11px;
    color: #ffffff;
    margin-bottom: 5px;
}

.sponsor-country {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
}

.partner-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #FFD700;
    border: 3px solid #D5373A;
    padding: 18px 25px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.partner-logo-text {
    font-size: 28px;
    font-weight: 900;
    color: #D5373A;
    line-height: 1.1;
    margin-bottom: 8px;
    font-family: 'Arial Black', Arial, sans-serif;
}

.partner-logo-text .fac {
    font-size: 36px;
    font-weight: 900;
}

.partner-label {
    font-size: 10px;
    color: #000;
    font-weight: 600;
    margin-top: 5px;
}

.partner-region {
    font-size: 9px;
    color: #000;
    margin-top: 2px;
}

/* Scroll to Top styles are now in scroll-to-top.css */

/* ============================================
   EVENT INFO SECTION
   ============================================ */

.event-info-section {
    background: #ffffff;
    padding: 80px 20px;
    position: relative;
}

.event-title {
    font-size: 80px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

.dates-container {
    flex-wrap: wrap;
}

.date-box {
    width: 180px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    font-weight: 700;
    color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
    text-transform: uppercase;
}

.date-box.day-1 {
    background: #000000;
}

.date-box.day-2 {
    background: #1AA45A;
}

.date-box.day-3 {
    background: #D5373A;
}

.date-month {
    background: #D5373A;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 48px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(213, 55, 58, 0.3);
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    text-transform: uppercase;
}

.location-icon {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    margin: 0 auto;
}

.location-city {
    font-size: 26px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
}

.location-address {
    font-size: 15px;
    color: #666666;
    line-height: 1.6;
}

.location-box {
    border: 1px solid #1AA45A;
    border-radius: 8px;
    padding: 20px 25px;
    background: #ffffff;
    min-width: 380px;
    max-width: 100%;
    display: inline-block;
    text-align: left;
}


.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 18px;
    letter-spacing: -0.5px;
}

.section-separator {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #000000 0%, #1AA45A 50%, #D5373A 100%);
    margin-bottom: 25px;
    border-radius: 2px;
}

.content-box {
    background: #000000;
    padding: 25px 30px;
    border-radius: 12px;
    min-height: 280px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.content-box:nth-child(2) {
    background: #1AA45A;
    box-shadow: 0 6px 20px rgba(26, 164, 90, 0.25);
}

.content-box:nth-child(3) {
    background: #D5373A;
    box-shadow: 0 6px 20px rgba(213, 55, 58, 0.25);
}

.content-box:nth-child(4) {
    background: #1AA45A;
    box-shadow: 0 6px 20px rgba(26, 164, 90, 0.25);
}

.content-box:hover {
    transform: translateY(-3px);
}

.content-box:nth-child(1):hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
}

.content-box:nth-child(2):hover,
.content-box:nth-child(4):hover {
    box-shadow: 0 8px 30px rgba(26, 164, 90, 0.35);
}

.content-box:nth-child(3):hover {
    box-shadow: 0 8px 30px rgba(213, 55, 58, 0.35);
}

.content-list {
    color: #ffffff;
    font-size: 20px;
    line-height: 1.8;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
}

/* Programme section - items on same line on desktop */
.content-section:first-of-type .content-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

.content-item {
    display: flex;
    align-items: flex-start;
    transition: transform 0.2s ease;
    font-weight: 400;
}

.content-section:first-of-type .content-item {
    align-items: center;
    white-space: nowrap;
}

.content-item:hover {
    transform: translateX(5px);
}

/* ============================================
   PROGRAMME & CIBLES CARDS - GLOSSY STYLE
   ============================================ */

.programme-cibles-row {
    margin-top: 20px;
    gap: 20px;
    display: flex;
    align-items: stretch;
    flex-wrap: nowrap;
}

.programme-cible-col {
    padding: 0 10px;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    flex: 0 0 50%;
    max-width: 50%;
}

.programme-cible-title {
    font-size: 36px;
    margin-bottom: 12px;
}

.programme-cible-separator {
    margin-bottom: 15px;
}

.programme-cible-card {
    position: relative;
    background: linear-gradient(135deg, rgba(45, 45, 50, 0.85) 0%, rgba(35, 35, 40, 0.75) 100%);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    padding: 25px 30px;
    min-height: 400px;
    flex: 1;
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3),
        inset 0 2px 4px rgba(255, 255, 255, 0.15),
        inset 0 -2px 4px rgba(0, 0, 0, 0.3),
        0 0 0 1px rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

/* Effet de brillance glossy */
.programme-cible-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        rgba(255, 255, 255, 0.25) 40%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0.25) 60%,
        transparent 80%,
        transparent 100%
    );
    transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    pointer-events: none;
    transform: skewX(-20deg);
}

.programme-cible-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(
        circle,
        rgba(255, 255, 255, 0.1) 0%,
        transparent 70%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

.programme-cible-card:hover::before {
    left: 100%;
}

.programme-cible-card:hover::after {
    opacity: 1;
}

.programme-cible-card:hover {
    background: linear-gradient(135deg, rgba(50, 50, 55, 0.9) 0%, rgba(40, 40, 45, 0.8) 100%);
    box-shadow: 
        0 30px 80px rgba(0, 0, 0, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4),
        inset 0 3px 6px rgba(255, 255, 255, 0.2),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 0 40px rgba(255, 255, 255, 0.1);
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.3);
}

.programme-cible-list {
    position: relative;
    z-index: 2;
    color: #ffffff;
    font-size: 18px;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 0;
    flex: 1;
}

.programme-cible-card .content-item {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    padding: 8px 0;
    transition: transform 0.2s ease, color 0.2s ease;
}

.programme-cible-card .content-item:hover {
    transform: translateX(5px);
    color: #ffffff !important;
}

.event-footer {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 3px solid;
    border-image: linear-gradient(to right, #000000 0%, #1AA45A 50%, #D5373A 100%) 1;
    position: relative;
}

/* Responsive Programme & Cibles */
@media (max-width: 991px) {
    .programme-cibles-row {
        gap: 15px;
        flex-wrap: nowrap;
    }
    
    .programme-cible-col {
        margin-bottom: 0;
        padding: 0 5px;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .programme-cible-card {
        min-height: 350px;
        padding: 20px 25px;
    }
    
    .programme-cible-list {
        font-size: 16px;
        gap: 8px;
    }
    
    .programme-cible-title {
        font-size: 32px;
    }
}

@media (max-width: 768px) {
    .programme-cibles-row {
        gap: 10px;
        flex-wrap: nowrap;
    }
    
    .programme-cible-col {
        margin-bottom: 0;
        padding: 0 5px;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .programme-cible-card {
        min-height: 300px;
        padding: 18px 20px;
    }
    
    .programme-cible-list {
        font-size: 14px;
        gap: 6px;
    }
    
    .programme-cible-title {
        font-size: 24px;
        margin-bottom: 10px;
    }
    
    .programme-cible-separator {
        margin-bottom: 12px;
    }
}

@media (max-width: 576px) {
    .programme-cibles-row {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .programme-cible-col {
        flex: 0 0 100%;
        max-width: 100%;
        padding: 0;
        margin-bottom: 15px;
    }
    
    .programme-cible-card {
        min-height: auto;
    }
}

/* ============================================
   SIAB VIDEO PRESENTATION SECTION
   ============================================ */

.siab-video-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 20px;
    position: relative;
}

.video-section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
    margin-bottom: 40px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: #000;
}

.siab-presentation-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* Responsive Video Section */
@media (max-width: 991px) {
    .siab-video-section {
        padding: 60px 20px;
    }
    
    .video-section-title {
        font-size: 36px;
        margin-bottom: 30px;
    }
    
    .video-wrapper {
        max-width: 100%;
    }
    
}

@media (max-width: 768px) {
    .siab-video-section {
        padding: 40px 15px;
    }
    
    .video-section-title {
        font-size: 28px;
        margin-bottom: 25px;
    }
    
    .video-wrapper {
        border-radius: 8px;
        max-width: 100%;
    }
    
    .siab-presentation-video {
        border-radius: 8px;
    }
}

.dots-pattern {
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 100%;
    height: 24px;
    background-image: radial-gradient(circle, #000 2.5px, transparent 2.5px);
    background-size: 24px 24px;
    opacity: 0.25;
}

/* ============================================
   COUNTDOWN & STATS SECTION
   ============================================ */

.countdown-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    padding: 80px 40px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.countdown-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?w=1920');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    transform: scale(1.1);
}

.countdown-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    z-index: 1;
}

.countdown-container {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.countdown-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
}

.countdown-headline {
    grid-column: 1 / -1;
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    text-align: center;
    margin-bottom: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.countdown-timer {
    grid-column: 1 / -1;
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    flex-shrink: 0;
    margin-top: 40px;
}

.stat-box {
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-top: 4px solid #000000;
    border-radius: 12px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    grid-column: span 1;
}

.stat-box:nth-child(2) {
    border-top-color: #1AA45A;
}

.stat-box:nth-child(3) {
    border-top-color: #D5373A;
}

.stat-box:nth-child(4) {
    border-top-color: #1AA45A;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-box:nth-child(2) .stat-number,
.stat-box:nth-child(4) .stat-number {
    color: #1AA45A;
}

.stat-box:nth-child(3) .stat-number {
    color: #D5373A;
}

.stat-label {
    font-size: 16px;
    color: #666;
    font-weight: 500;
}


.countdown-box {
    width: 140px;
    padding: 25px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    align-self: stretch;
}

.countdown-box:hover {
    transform: scale(1.05);
}

.countdown-box.days {
    background: #000000;
}

.countdown-box.hours {
    background: #1AA45A;
}

.countdown-box.minutes {
    background: #D5373A;
}

.countdown-box.seconds {
    background: #000000;
}

.countdown-number {
    font-size: 48px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
    font-variant-numeric: tabular-nums;
}

.countdown-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive Countdown Section */
@media (max-width: 1200px) {
    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .countdown-timer {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        margin-top: 30px;
    }

    .countdown-box {
        width: 120px;
    }
}

@media (max-width: 1024px) {
    .countdown-headline {
        font-size: 36px;
    }

    .countdown-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .stat-box {
        grid-column: span 1;
    }

    .countdown-timer {
        grid-column: 1 / -1;
        flex-direction: row;
        justify-content: center;
        margin-top: 30px;
    }

    .countdown-number {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .countdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box {
        grid-column: span 1;
    }

    .countdown-timer {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .countdown-section {
        padding: 60px 20px;
        min-height: auto;
    }

    .countdown-headline {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .stats-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-box {
        padding: 25px 20px;
    }

    .stat-number {
        font-size: 36px;
    }

    .countdown-timer {
        width: 100%;
        justify-content: space-between;
    }

    .countdown-box {
        width: calc(25% - 12px);
        min-width: 70px;
        padding: 20px 10px;
    }

    .countdown-number {
        font-size: 32px;
    }

    .countdown-label {
        font-size: 12px;
    }
}

/* Responsive */
@media (max-width: 1024px) {
    .header {
        padding: 12px 20px;
    }

    .nav-menu {
        gap: 20px;
    }

    .nav-link {
        font-size: 14px;
    }

    .logo {
        height: 40px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .event-header {
        flex-direction: column;
        gap: 30px;
    }

    .location-container {
        align-items: flex-start;
        width: 100%;
    }

    .location-icon {
        width: 100px;
        height: 100px;
    }

    .location-container {
        padding-right: 15px;
        padding-top: 5px;
    }

    .dates-container {
        gap: 10px !important;
    }

    .date-box {
        width: 100px;
        height: 70px;
        font-size: 36px;
    }

    .date-month {
        padding: 12px 25px;
        font-size: 28px;
        height: 70px;
    }

    .location-city {
        font-size: 22px;
    }

    .location-address {
        font-size: 14px;
    }

}

@media (max-width: 768px) {
    .header {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
        padding: 15px;
    }

    .logo {
        height: 40px;
    }

    .nav-menu {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .nav-link {
        font-size: 13px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .hero-bottom {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .sponsor-box,
    .partner-box {
        width: 100%;
        max-width: 300px;
    }

    .event-info-section {
        padding: 40px 20px;
    }


    .content-box {
        padding: 20px;
        min-height: auto;
    }

    .event-title {
        font-size: 36px;
    }

    .dates-container {
        gap: 8px !important;
        flex-wrap: wrap;
    }

    .date-box {
        width: 70px;
        height: 60px;
        font-size: 28px;
    }

    .date-month {
        padding: 10px 15px;
        font-size: 20px;
        height: 60px;
        width: 100%;
        max-width: 300px;
    }

    .location-box {
        min-width: 100%;
        padding: 20px;
    }

    .location-icon {
        width: 85px;
        height: 85px;
    }

    .location-city {
        font-size: 20px;
    }

    .location-address {
        font-size: 13px;
    }


    .section-title {
        font-size: 28px;
    }

    .content-box {
        padding: 25px;
        min-height: auto;
    }

    .content-list {
        font-size: 17px;
        line-height: 1.5;
        gap: 6px;
    }

    /* Programme section - back to column on mobile */
    .content-section:first-of-type .content-list {
        flex-direction: column;
    }

    .content-list li::before {
        font-size: 18px;
        margin-right: 10px;
    }
}

/* ============================================
   EXPERT PANELS SECTION
   ============================================ */

.expert-panels-section {
    width: 100%;
    padding: 100px 40px;
    background: #ffffff;
}

.expert-panels-container {
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}

.expert-panels-title {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    text-align: center;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.expert-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    align-items: stretch;
}

.expert-card {
    position: relative;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.expert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.25);
}

.expert-card-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: blur(4px);
    transform: scale(1.1);
}

.expert-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.expert-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 30px;
    text-align: center;
}

.expert-icon {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.expert-card:hover .expert-icon {
    transform: scale(1.1);
}

.expert-icon svg {
    width: 50px;
    height: 50px;
}

.expert-icon-red {
    background: #e74c3c;
}

.expert-icon-green {
    background: #27ae60;
}

.expert-icon-blue {
    background: #000000;
}

.expert-card-title {
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    line-height: 1.3;
}

/* Responsive adjustments for expert panels */
@media (max-width: 1024px) {
    .expert-panels-section {
        padding: 80px 30px;
    }

    .expert-panels-title {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .expert-cards {
        gap: 25px;
    }

    .expert-card {
        height: 380px;
    }

    .expert-icon {
        width: 90px;
        height: 90px;
        margin-bottom: 25px;
    }

    .expert-icon svg {
        width: 45px;
        height: 45px;
    }

    .expert-card-title {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .expert-panels-section {
        padding: 60px 20px;
    }

    .expert-panels-title {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .expert-cards {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .expert-card {
        height: 350px;
    }

    .expert-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 20px;
    }

    .expert-icon svg {
        width: 40px;
        height: 40px;
    }

    .expert-card-title {
        font-size: 22px;
    }
}

/* ============================================
   PARTICIPATION SECTION
   ============================================ */

.participation-section {
    position: relative;
    width: 100%;
    padding: 100px 40px;
    overflow: hidden;
    background: #000000;
}

.participation-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: 1;
}

.participation-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(74, 140, 210, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(74, 140, 210, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(74, 140, 210, 0.1) 0%, transparent 100%);
    background-size: 100% 100%, 100% 100%, 100% 100%;
    opacity: 0.6;
}

.participation-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
}

.participation-section .container {
    position: relative;
    z-index: 2;
}

.participation-title {
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 60px;
    letter-spacing: -0.5px;
}

.participation-title .title-line-1 {
    display: block;
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 10px;
}

.participation-title .title-line-2 {
    display: block;
    font-size: 40px;
    line-height: 1.2;
}

.participation-cards {
    max-width: 1200px;
    margin: 0 auto;
}

.participation-card-link {
    text-decoration: none !important;
    color: inherit;
    display: block;
    height: 100%;
    border: none;
    outline: none;
}

.participation-card-link:hover {
    text-decoration: none !important;
    color: inherit;
    border: none;
}

.participation-card-link:focus {
    text-decoration: none !important;
    color: inherit;
    outline: none;
    border: none;
}

.participation-card-link:active {
    text-decoration: none !important;
    color: inherit;
    border: none;
}

.participation-card-link:visited {
    text-decoration: none !important;
    color: inherit;
    border: none;
}

.participation-card-link .card-title {
    text-decoration: none !important;
    color: inherit;
}

.participation-card {
    background: linear-gradient(135deg, rgba(45, 45, 50, 0.85) 0%, rgba(35, 35, 40, 0.75) 100%) !important;
    border-radius: 12px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    min-height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.participation-card-link:hover .participation-card {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.25);
}

.participation-card .card-title {
    color: #ffffff !important;
    font-size: 24px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Responsive adjustments for participation section */
@media (max-width: 1024px) {
    .participation-section {
        padding: 80px 30px;
    }

    .participation-title .title-line-1 {
        font-size: 40px;
    }

    .participation-title .title-line-2 {
        font-size: 32px;
    }

    .participation-card {
        padding: 35px 25px;
        min-height: 140px;
    }

    .participation-card .card-title {
        font-size: 22px;
    }
}

@media (max-width: 768px) {
    .participation-section {
        padding: 60px 20px;
    }

    .participation-title {
        margin-bottom: 40px;
    }

    .participation-title .title-line-1 {
        font-size: 32px;
    }

    .participation-title .title-line-2 {
        font-size: 26px;
    }

    .participation-card {
        padding: 30px 20px;
        min-height: 120px;
    }

    .participation-card .card-title {
        font-size: 18px;
    }
}

/* ============================================
   PARTNERS & EXHIBITORS SECTION
   ============================================ */

.partners-exhibitors-section {
    background: #ffffff;
    padding: 100px 40px;
    position: relative;
}

.section-header {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

/* Partners Carousel */
#partnersCarousel {
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
}

.partners-carousel-inner {
    transition: transform 0.6s ease-in-out;
}

.partner-logo-box {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 30px 20px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.partner-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #000000;
}

.partner-logo-placeholder {
    color: #000000;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
}

.carousel-control-prev {
    left: 20px;
    z-index: 10;
}

.carousel-control-next {
    right: 20px;
    z-index: 10;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: #1AA45A;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    margin-bottom: -40px;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #000000;
    opacity: 0.3;
    margin: 0 5px;
}

.carousel-indicators button.active {
    opacity: 1;
    background: #000000;
}

/* Exhibitors Grid */
.exhibitors-grid {
    max-width: 1400px;
    margin: 0 auto;
}

.exhibitor-logo-box {
    background: #f8f9fa;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 25px 15px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.exhibitor-logo-box:nth-child(2n) {
    border-color: #1AA45A;
}

.exhibitor-logo-box:nth-child(3n) {
    border-color: #D5373A;
}

.exhibitor-logo-box:nth-child(5n) {
    border-color: #1AA45A;
}

.exhibitor-logo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.exhibitor-logo-box:nth-child(2n):hover,
.exhibitor-logo-box:nth-child(5n):hover {
    border-color: #1AA45A;
    box-shadow: 0 8px 20px rgba(26, 164, 90, 0.3);
}

.exhibitor-logo-box:nth-child(3n):hover {
    border-color: #D5373A;
    box-shadow: 0 8px 20px rgba(213, 55, 58, 0.3);
}

.exhibitor-logo-box:nth-child(odd):hover {
    border-color: #000000;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.exhibitor-logo-placeholder {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    line-height: 1.4;
}

/* Responsive adjustments for partners & exhibitors */
@media (max-width: 1024px) {
    .partners-exhibitors-section {
        padding: 80px 30px;
    }

    .section-header {
        font-size: 36px;
    }

    #partnersCarousel {
        padding: 30px 80px;
    }

    #partnersCarousel::before,
    #partnersCarousel::after {
        width: 60px;
    }

    #representativesCarousel {
        padding: 40px 80px;
    }

    #representativesCarousel::before,
    #representativesCarousel::after {
        width: 60px;
    }

    .partner-logo-box {
        height: 160px;
        padding: 25px 15px;
    }

    .exhibitor-logo-box {
        height: 140px;
        padding: 20px 10px;
    }

    .carousel-control-prev {
        left: -15px;
    }

    .carousel-control-next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .partners-exhibitors-section {
        padding: 60px 20px;
    }

    .section-header {
        font-size: 28px;
        margin-bottom: 30px !important;
    }

    #partnersCarousel {
        padding: 20px 0;
    }

    .partner-logo-box {
        height: 140px;
        padding: 20px 10px;
    }

    .partner-logo-placeholder {
        font-size: 14px;
    }

    .exhibitor-logo-box {
        height: 120px;
        padding: 15px 10px;
    }

    .exhibitor-logo-placeholder {
        font-size: 12px;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 40px;
        height: 40px;
        z-index: 10;
    }

    .carousel-control-prev {
        left: 10px;
    }

    .carousel-control-next {
        right: 10px;
    }

    #representativesCarousel {
        padding: 40px 60px;
    }

    #representativesCarousel::before,
    #representativesCarousel::after {
        width: 40px;
    }

    .representative-prev {
        left: 10px;
    }

    .representative-next {
        right: 10px;
    }

    .carousel-indicators {
        margin-bottom: -30px;
    }
}

/* ============================================
   CONTACT BANNER SECTION
   ============================================ */

.contact-banner-section {
    position: relative;
    width: 100%;
    padding: 120px 40px;
    overflow: hidden;
    background: #2d2d2d;
}

.contact-banner-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1521791136064-7986c2920216?w=1920');
    background-size: cover;
    background-position: center;
    filter: blur(3px);
    opacity: 0.3;
}

.contact-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(45, 45, 45, 0.8);
    z-index: 1;
}

.contact-banner-section .container {
    position: relative;
    z-index: 2;
}

.contact-banner-title {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    letter-spacing: -0.5px;
}

.contact-btn {
    display: inline-block;
    background: #000000;
    color: #ffffff;
    padding: 18px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none !important;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
    border: none;
    outline: none;
}

.contact-btn:hover {
    background: #1AA45A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(26, 164, 90, 0.5);
    color: #ffffff;
    text-decoration: none !important;
}

.contact-btn:focus {
    text-decoration: none !important;
    outline: none;
}

.contact-btn:active {
    text-decoration: none !important;
}

.contact-btn:visited {
    text-decoration: none !important;
    color: #ffffff;
}

/* ============================================
   REPRESENTATIVES SECTION
   ============================================ */

.representatives-section {
    background: #ffffff;
    padding: 50px 40px 80px 40px;
    position: relative;
}

.representatives-title {
    font-size: 42px;
    font-weight: 700;
    color: #000000;
    letter-spacing: -0.5px;
}

#representativesCarousel {
    padding: 40px 80px;
    position: relative;
}

/* Carousel Fade Transitions */
.carousel-fade .carousel-item {
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
}

.carousel-fade .carousel-item.active {
    opacity: 1;
}

.carousel-fade .carousel-item:not(.active) {
    opacity: 0;
}

/* Partners Carousel - Multiple logos visible, scrolls one by one */
#partnersCarousel {
    overflow: hidden;
    padding: 40px 120px;
    position: relative;
}

#partnersCarousel .carousel-inner {
    overflow: visible;
    transition: transform 0.6s ease-in-out;
}

#partnersCarousel .carousel-item {
    min-height: 200px;
    padding: 20px 0;
}

#partnersCarousel .row {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
}

#partnersCarousel .col-lg-2 {
    flex: 0 0 auto;
    width: auto;
    padding: 0 20px;
    max-width: 200px;
    min-width: 180px;
}

#partnersCarousel .partner-logo-box {
    width: 180px;
    margin: 0 auto;
}

/* Show partial logos on sides with gradient fade */
#partnersCarousel::before,
#partnersCarousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

#partnersCarousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

#partnersCarousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

/* Representatives Carousel - Show partial cards on sides */
#representativesCarousel {
    overflow: hidden;
    padding: 40px 120px;
    position: relative;
}

#representativesCarousel .carousel-inner {
    overflow: visible;
    transition: transform 0.6s ease-in-out;
}

#representativesCarousel .carousel-item {
    min-height: 400px;
    padding: 20px 0;
}

#representativesCarousel .row {
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: nowrap;
    overflow: visible;
    width: 100%;
}

#representativesCarousel .col-lg-2 {
    flex: 0 0 auto;
    width: auto;
    padding: 0 20px;
    max-width: 280px;
    min-width: 250px;
}

#representativesCarousel .representative-card {
    width: 100%;
    margin: 0 auto;
}

/* Show partial cards on sides with gradient fade */
#representativesCarousel::before,
#representativesCarousel::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 5;
    pointer-events: none;
}

#representativesCarousel::before {
    left: 0;
    background: linear-gradient(to right, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

#representativesCarousel::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 30%, rgba(255, 255, 255, 0) 100%);
}

.representative-card {
    background: #ffffff !important;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    height: 100%;
    border: 3px solid #1AA45A !important; /* Bordure verte par défaut */
}

.representative-card:nth-child(2n) {
    border-color: #1AA45A !important; /* Vert */
}

.representative-card:nth-child(2n+1) {
    border-color: #D5373A !important; /* Rouge */
}

.representative-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.representative-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 4px solid #000000;
}

.photo-placeholder {
    color: #000000;
    font-size: 14px;
    font-weight: 600;
}

.representative-name {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.3;
}

.representative-title {
    font-size: 14px;
    color: #666666;
    margin-bottom: 20px;
    font-weight: 500;
}

.representative-countries {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: center;
}

.country-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #000000;
    font-weight: 500;
}

.country-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 2px;
}

.representative-prev,
.representative-next {
    width: 50px;
    height: 50px;
    background: #000000;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.9;
}

.representative-prev {
    left: 0;
}

.representative-next {
    right: 0;
}

.representative-prev:hover,
.representative-next:hover {
    opacity: 1;
    background: #1AA45A;
}

.representative-prev .carousel-control-prev-icon,
.representative-next .carousel-control-next-icon {
    width: 20px;
    height: 20px;
}

/* Responsive adjustments for contact banner and representatives */
@media (max-width: 1024px) {
    .contact-banner-section {
        padding: 100px 30px;
    }

    .contact-banner-title {
        font-size: 40px;
    }

    .contact-btn {
        padding: 16px 40px;
        font-size: 16px;
    }

    .representatives-section {
        padding: 60px 30px;
    }

    .representatives-title {
        font-size: 36px;
    }

    #representativesCarousel {
        padding: 30px 60px;
    }
}

@media (max-width: 768px) {
    .contact-banner-section {
        padding: 80px 20px;
    }

    .contact-banner-title {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .contact-btn {
        padding: 14px 35px;
        font-size: 14px;
    }

    .representatives-section {
        padding: 30px 20px 50px 20px;
    }

    .representatives-title {
        font-size: 28px;
        margin-bottom: 30px !important;
    }

    #representativesCarousel {
        padding: 20px 50px;
    }

    .representative-card {
        padding: 25px 15px;
    }

    .representative-photo {
        width: 100px;
        height: 100px;
    }

    .representative-name {
        font-size: 18px;
    }

    .representative-title {
        font-size: 13px;
    }

    .representative-prev,
    .representative-next {
        width: 40px;
        height: 40px;
    }

    .representative-prev {
        left: -10px;
    }

    .representative-next {
        right: -10px;
    }
}

/* ============================================
   FOOTER SECTION
   ============================================ */

.footer-section {
    background: #000000;
    color: #ffffff;
    position: relative;
}

.flags-row {
    background: rgba(0, 0, 0, 0.2);
    padding: 25px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 20px;
}

.flag-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    cursor: pointer;
    transition: transform 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.flag-icon:hover {
    transform: scale(1.2);
    border-color: #1AA45A;
}

.footer-main {
    padding: 60px 40px;
}

.footer-logo {
    margin-bottom: 20px;
}

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

.footer-tagline {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    margin-bottom: 30px;
}

.social-icons {
    display: flex;
    gap: 12px;
    margin-bottom: 30px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.social-icon:hover {
    background: #1AA45A;
    transform: translateY(-3px);
    color: #ffffff;
}

.footer-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.footer-location .location-icon {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.footer-heading {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #1AA45A;
    display: inline-block;
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: #1AA45A;
    padding-left: 5px;
}

.footer-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.footer-contacts li {
    margin-bottom: 12px;
}

.footer-contacts a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s ease;
    display: inline-block;
}

.footer-contacts a:hover {
    color: #1AA45A;
}

.footer-legal {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: #1AA45A;
}

.footer-copyright {
    background: rgba(0, 0, 0, 0.3);
    padding: 20px 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0;
}

/* Responsive adjustments for footer */
@media (max-width: 1024px) {
    .footer-main {
        padding: 50px 30px;
    }

    .footer-logo-img {
        height: 70px;
    }
}

@media (max-width: 768px) {
    .footer-main {
        padding: 40px 20px;
    }

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

    .footer-tagline {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .footer-links a,
    .footer-contacts a {
        font-size: 14px;
    }

    .social-icon {
        width: 35px;
        height: 35px;
    }

    .flag-icon {
        width: 35px;
        height: 35px;
    }

    .footer-copyright {
        padding: 15px 20px;
    }

    .copyright-text {
        font-size: 12px;
    }
}

/* ============================================
   PARTICIPATION HERO SECTION
   ============================================ */

.participation-hero-section {
    position: relative;
    width: 100%;
    min-height: 500px;
    padding: 100px 40px;
    background: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.participation-hero-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    z-index: 2;
}

.participation-shapes {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.shape-red {
    position: absolute;
    left: 0;
    width: 45%;
    height: 250px;
    background: #D5373A;
    border-radius: 20px 0 0 20px;
    z-index: 1;
}

.shape-green {
    position: absolute;
    right: 0;
    width: 45%;
    height: 250px;
    background: #1AA45A;
    border-radius: 0 20px 20px 0;
    z-index: 1;
}

.shape-blue {
    position: relative;
    z-index: 2;
    background: #000000;
    padding: 50px 80px;
    border-radius: 30px;
    text-align: center;
    width: 90%;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.participation-main-title {
    font-size: 72px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: 4px;
    text-transform: uppercase;
    line-height: 1.2;
}

.participation-subtitle {
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin: 0;
    letter-spacing: 1px;
}

/* Responsive adjustments for participation hero */
@media (max-width: 1024px) {
    .participation-hero-section {
        padding: 80px 30px;
        min-height: 400px;
    }

    .participation-shapes {
        height: 250px;
    }

    .shape-red,
    .shape-green {
        height: 200px;
    }

    .shape-blue {
        padding: 40px 60px;
        width: 95%;
    }

    .participation-main-title {
        font-size: 56px;
    }

    .participation-subtitle {
        font-size: 20px;
    }
}

/* ============================================
   TOMBOLA PREVIEW SECTION
   ============================================ */

.tombola-preview-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.tombola-preview-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(26, 164, 90, 0.05)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.tombola-preview-title {
    font-family: 'Poppins', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: #1AA45A;
    margin-bottom: 15px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.tombola-preview-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: #666;
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.lot-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 3px solid transparent;
}

.lot-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.lot-card.lot-1 {
    border-color: #1AA45A;
}

.lot-card.lot-1:hover {
    border-color: #158a4f;
}

.lot-card.lot-2 {
    border-color: #D5373A;
}

.lot-card.lot-2:hover {
    border-color: #b82d30;
}

.lot-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1AA45A 0%, #158a4f 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.lot-card.lot-2 .lot-badge {
    background: linear-gradient(135deg, #D5373A 0%, #b82d30 100%);
}

.lot-icon {
    font-size: 64px;
    margin: 20px 0;
    line-height: 1;
}

.lot-title {
    font-family: 'Poppins', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #2d2d2d;
    margin: 20px 0 15px 0;
}

.lot-description {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.lot-price {
    font-family: 'Poppins', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #1AA45A;
    margin: 20px 0;
}

.lot-card.lot-2 .lot-price {
    color: #D5373A;
}

.lot-btn {
    display: inline-block;
    background: linear-gradient(135deg, #1AA45A 0%, #158a4f 100%);
    color: #ffffff;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(26, 164, 90, 0.3);
}

.lot-card.lot-2 .lot-btn {
    background: linear-gradient(135deg, #D5373A 0%, #b82d30 100%);
    box-shadow: 0 4px 15px rgba(213, 55, 58, 0.3);
}

.lot-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 164, 90, 0.4);
    color: #ffffff;
    text-decoration: none;
}

.lot-card.lot-2 .lot-btn:hover {
    box-shadow: 0 6px 20px rgba(213, 55, 58, 0.4);
}

/* Responsive adjustments for tombola preview */
@media (max-width: 768px) {
    .tombola-preview-section {
        padding: 60px 0;
    }

    .tombola-preview-title {
        font-size: 32px;
    }

    .tombola-preview-subtitle {
        font-size: 16px;
        margin-bottom: 40px;
    }

    .lot-card {
        padding: 30px 20px;
        margin-bottom: 20px;
    }

    .lot-title {
        font-size: 20px;
    }

    .lot-icon {
        font-size: 48px;
    }

    .lot-price {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .participation-hero-section {
        padding: 60px 20px;
        min-height: 350px;
    }

    .participation-shapes {
        height: 200px;
    }

    .shape-red,
    .shape-green {
        height: 160px;
        width: 40%;
    }

    .shape-blue {
        padding: 30px 30px;
        width: 100%;
        border-radius: 20px;
    }

    .participation-main-title {
        font-size: 40px;
        letter-spacing: 2px;
        margin-bottom: 15px;
    }

    .participation-subtitle {
        font-size: 16px;
        letter-spacing: 0.5px;
    }
}

