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

/* Smooth scrolling for the entire page */
html {
    scroll-behavior: smooth;
}

:root {
    --deep-blue: #0056b3;  /* More vibrant blue */
    --sodium-yellow: #00c853;  /* More vibrant green */
    --light-bg: #F8F9FA;
    --white: #ffffff;
    --graphite-gray: #343A40;
    --eco-green: #00c853;  /* Matching the new green */
    --dark-blue: #003d82;  /* Slightly lighter dark blue */
    
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
}

/* Updated typography to use Poppins, Inter, and Montserrat */
body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.7;
    color: var(--graphite-gray);
    overflow-x: hidden;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
}

/* Enhanced two-tiered header with modern design */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 86, 179, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Top Navigation Bar */
.top-nav {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 1rem 0;
    border-bottom: 2px solid rgba(0, 200, 83, 0.1);
    backdrop-filter: blur(25px);
}

.top-nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.top-nav .logo {
    flex-shrink: 0;
}

.top-nav .logo img {
    height: 70px;
    width: auto;
    filter: brightness(1.1) contrast(1.2);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.cta-nav-btn {
    background: var(--deep-blue);
    color: var(--white);
    padding: 0.6rem 1.5rem;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 86, 179, 0.2);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Poppins', sans-serif;
}

.cta-nav-btn:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 86, 179, 0.3);
}

/* Main Navigation Bar */
.main-nav {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    padding: 0.8rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

header.scrolled .top-nav {
    padding: 0.8rem 0;
}

header.scrolled .top-nav .logo img {
    height: 55px;
}

header.scrolled .main-nav {
    padding: 0.6rem 0;
    box-shadow: 0 6px 35px rgba(0, 86, 179, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.main-nav {
    position: relative;
}

.main-nav .container {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 var(--spacing-md);
}

.main-nav .nav-links {
    display: flex;
    list-style: none;
    gap: 1rem;
    align-items: center;
    justify-content: center;
    flex: 1;
    margin: 0;
    max-width: 1000px;
}

.main-nav .nav-links a {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    font-size: 0.8rem;
    position: relative;
    padding: 0.4rem 0.6rem;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--deep-blue);
    letter-spacing: -0.02em;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: transparent;
    padding: 0;
    display: flex;
    align-items: center;
}

.logo img {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 6px rgba(0, 86, 179, 0.15)) brightness(1.05) contrast(1.1);
    background: transparent;
    object-fit: contain;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 10px rgba(0, 86, 179, 0.25)) brightness(1.08) contrast(1.15);
}

header.scrolled .logo img {
    height: 55px;
}

.main-nav .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1.5px;
    background: var(--sodium-yellow);
    transition: all 0.3s ease;
    border-radius: 1px;
}

.main-nav .nav-links a:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.main-nav .nav-links a:hover::after {
    width: 60%;
}

.main-nav .menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    position: absolute;
    right: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
}

/* Enhanced hero with particle animation canvas */
.hero {
    background: url('assets/images/Hero Background.png') center/cover;
    color: var(--deep-blue);
    padding: 200px var(--spacing-md) 120px;
    text-align: center;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}


#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    max-width: 960px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 2.8vw, 1.6rem);
    margin-bottom: 1rem;
    color: var(--deep-blue);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-main-title {
    font-size: clamp(6rem, 16vw, 11rem);
    margin-bottom: 0.5rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 0.95;
    color: var(--deep-blue);
    font-family: 'Montserrat', 'Poppins', sans-serif;
}

.hero-tagline {
    font-size: clamp(1.4rem, 3vw, 1.9rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: var(--graphite-gray);
    font-style: italic;
}

.hero h1 {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-transform: uppercase;
    color: var(--deep-blue);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero .subtitle {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    margin-bottom: 1rem;
    color: var(--deep-blue);
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.6);
}

.hero .tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    margin-bottom: 1rem;
    font-weight: 400;
    opacity: 0.95;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: var(--deep-blue);
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.8), 0 1px 2px rgba(255, 255, 255, 0.6);
}

/* Professional Countdown Timer */
.countdown-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.75rem;
    margin: 1.5rem auto;
    padding: 1.2rem 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0, 86, 179, 0.15);
    max-width: 550px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 86, 179, 0.1);
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 60px;
}

.countdown-number {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--deep-blue);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(0, 86, 179, 0.1);
}

.countdown-label {
    font-size: clamp(0.65rem, 1.2vw, 0.75rem);
    font-weight: 600;
    color: var(--graphite-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.3rem;
}

.countdown-separator {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--eco-green);
    line-height: 1;
    margin: 0 0.25rem;
}

.hero .date-location {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
    margin-bottom: var(--spacing-md);
    font-weight: 800;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    color: var(--deep-blue);
}

.cta-button {
    display: inline-block;
    background: var(--sodium-yellow);
    color: var(--graphite-gray);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(245, 197, 24, 0.3);
    margin: 0.5rem;
    position: relative;
    overflow: hidden;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(245, 197, 24, 0.4);
    background: #ffd633;
}

/* Professional Corporate Register Button */
.cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, var(--eco-green) 0%, #00a844 100%);
    color: var(--white);
    padding: 1.2rem 3rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.15rem;
    letter-spacing: 0.5px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(0, 200, 83, 0.3);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    text-transform: uppercase;
    font-family: 'Poppins', sans-serif;
}

.cta-button-primary svg {
    transition: transform 0.3s ease;
}

.cta-button-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.cta-button-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0, 200, 83, 0.4);
    background: linear-gradient(135deg, #00d95f 0%, var(--eco-green) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.cta-button-primary:hover::before {
    left: 100%;
}

.cta-button-primary:hover svg {
    transform: scale(1.1) translateX(2px);
}

.cta-button-primary:active {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 200, 83, 0.3);
}

.cta-button-outline {
    display: inline-block;
    background: transparent;
    color: var(--white);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: var(--radius-md);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-weight: 600;
    font-size: clamp(0.9rem, 2vw, 0.95rem);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    margin: 0.5rem;
    backdrop-filter: blur(10px);
}

.cta-button-outline:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.floating-register {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    background: var(--sodium-yellow);
    color: var(--graphite-gray);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(245, 197, 24, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: translateY(100px);
    backdrop-filter: blur(10px);
}

.floating-register.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.floating-register:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 35px rgba(245, 197, 24, 0.6);
    background: #ffd633;
}

section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.75rem);
    color: var(--eco-green);
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    text-transform: uppercase;
}

.keep-case {
    text-transform: none !important;
}

.section-subtitle {
    text-align: center;
    color: var(--graphite-gray);
    margin-bottom: var(--spacing-lg);
    font-size: clamp(1rem, 2.5vw, 1.15rem);
    opacity: 0.8;
    font-weight: 400;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* About Section */
.about {
    background: var(--white);
    color: var(--graphite-gray);
}

.about .section-title {
    color: var(--eco-green);
}

.about .section-subtitle {
    color: var(--graphite-gray);
    opacity: 0.8;
}

.about-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--graphite-gray);
    font-size: 1.05rem;
}

.about-text ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.about-text li {
    padding: 1rem 0;
    padding-left: 2rem;
    position: relative;
    line-height: 1.7;
}

.about-text li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--eco-green);
    font-weight: bold;
    font-size: 1.2rem;
}

.about-image {
    border-radius: var(--radius-lg);
    overflow: visible;
    box-shadow: none;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.about-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
    filter: brightness(1.05) contrast(1.12) saturate(1.08);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.about-image:hover img {
    transform: scale(1.03);
    filter: brightness(1.08) contrast(1.15) saturate(1.1);
}

/* Goals and Morocco Sections */
.goals-morocco-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

.goals-section, .morocco-section {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: 3px solid var(--eco-green);
}

.section-heading {
    color: var(--eco-green);
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--eco-green);
}

.goal-item, .morocco-item {
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: all 0.3s ease;
}

.goal-item:hover, .morocco-item:hover {
    background: rgba(89, 255, 134, 0.05);
    transform: translateX(5px);
}

.goal-icon, .morocco-icon {
    font-size: 1.5rem;
    min-width: 40px;
    text-align: center;
    margin-top: 0.2rem;
}

.goal-content h4, .morocco-content h4 {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.goal-content p, .morocco-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Why Sodium Section */
.why-sodium {
    background: linear-gradient(135deg, rgba(89, 255, 134, 0.05) 0%, rgba(89, 255, 134, 0.1) 100%);
    position: relative;
    overflow: hidden;
}

.why-sodium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 61, 98, 0.05) 0%, transparent 70%);
    border-radius: 50%;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.advantage-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 61, 98, 0.06);
    border-top: 3px solid var(--eco-green);
    cursor: pointer;
}

.advantage-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
    border-top-color: #4a9d3a;
}

.advantage-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.15rem;
    font-weight: 600;
}

.advantage-card p {
    line-height: 1.7;
    color: var(--graphite-gray);
    opacity: 0.85;
}

/* Topics Section */
.topics {
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.05) 0%, rgba(10, 61, 98, 0.1) 100%);
    color: var(--graphite-gray);
    position: relative;
    overflow: hidden;
}

.topics::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 10px,
        rgba(255, 255, 255, 0.05) 10px,
        rgba(255, 255, 255, 0.05) 20px
    );
}

.topics .container {
    position: relative;
    z-index: 1;
}

.topics .section-title {
    color: var(--deep-blue);
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.topic-card {
    background: var(--white);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(10, 61, 98, 0.06);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.topic-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: var(--shadow-lg);
    background: linear-gradient(135deg, var(--white) 0%, #f8f9fa 100%);
}

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

.topic-card h3 {
    color: var(--deep-blue);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
    font-weight: 600;
}

.key-dates {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: var(--white);
}

.key-dates .section-title {
    color: var(--eco-green);
}

.key-dates .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.timeline {
    max-width: 900px;
    margin: var(--spacing-lg) auto 0;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--eco-green);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: right;
    padding-right: 3rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: left;
    padding-left: 3rem;
    order: 2;
}

.timeline-content {
    flex: 1;
}

.timeline-content h3 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.timeline-content p {
    color: var(--white);
    opacity: 0.9;
}

.timeline-dot {
    width: 20px;
    height: 20px;
    background: var(--eco-green);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--eco-green);
    z-index: 2;
}

.timeline-item.active .timeline-dot {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 0 4px var(--white), 0 0 0 6px var(--eco-green);
    }
    50% {
        box-shadow: 0 0 0 4px var(--white), 0 0 0 12px rgba(0, 200, 83, 0.3);
    }
}

/* Venue Section */
.venue {
    background: linear-gradient(135deg, var(--deep-blue) 0%, #003366 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
    overflow: hidden;
}

.venue-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 2rem;
}

.venue-info {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.venue-info h3 {
    color: var(--sodium-yellow);
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.venue-info h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--sodium-yellow);
    border-radius: 3px;
}

.venue-info ul {
    list-style: none;
    padding-left: 1.2rem;
}

.venue-info li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--white);
    line-height: 1.6;
}

.venue-info li::before {
    content: '•';
    color: var(--sodium-yellow);
    font-size: 1.5rem;
    position: absolute;
    left: 0;
    top: -0.2rem;
}

.venue-map {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.venue-map:hover {
    transform: translateY(-5px);
}

.visa-info {
    background: rgba(0, 86, 179, 0.2);
    border-left: 4px solid var(--sodium-yellow);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 8px 8px 0;
}

.visa-info h4 {
    color: var(--sodium-yellow);
    margin-top: 0;
    margin-bottom: 1rem;
}

.visa-info p {
    margin: 0.5rem 0;
    color: var(--white);
    line-height: 1.6;
}

.visa-links a {
    color: var(--sodium-yellow);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    margin-right: 1.5rem;
    margin-top: 1rem;
    transition: color 0.3s ease;
}

.visa-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.visa-links i {
    margin-right: 8px;
}

@media (max-width: 992px) {
    .venue-main {
        grid-template-columns: 1fr;
    }
    
    .venue-map {
        height: 400px;
    }
}

.program-overview {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.program-overview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/placeholder.svg?height=600&width=1200') center/cover;
    opacity: 0.1;
}

.program-overview .container {
    position: relative;
    z-index: 1;
}

.program-overview .section-title {
    color: var(--white);
}

.program-overview .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.program-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.program-feature {
    text-align: center;
    padding: var(--spacing-md);
}

.program-feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--sodium-yellow);
}

.program-feature h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.download-program {
    text-align: center;
    margin-top: var(--spacing-lg);
}

.download-program .cta-button {
    background: var(--white);
    color: var(--deep-blue);
}

.download-program .cta-button:hover {
    background: var(--sodium-yellow);
    color: var(--graphite-gray);
}

.speakers {
    background: linear-gradient(135deg, rgba(10, 61, 98, 0.05) 0%, rgba(10, 61, 98, 0.1) 100%);
}

.speakers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.speaker-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(10, 61, 98, 0.06);
    cursor: pointer;
}

.speaker-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.speaker-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--sodium-yellow);
    overflow: hidden;
}

.speaker-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.speaker-info {
    padding: var(--spacing-md);
    text-align: center;
}

.speaker-info h3 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.speaker-info p {
    color: var(--graphite-gray);
    opacity: 0.8;
    font-size: 0.95rem;
}

/* Host Institution Section */
.host-institution {
    background: var(--white);
    color: var(--graphite-gray);
}

.host-institution .section-title {
    color: var(--eco-green);
}

.host-institution .section-subtitle {
    color: var(--graphite-gray);
    opacity: 0.8;
}

.host-logo-top {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    padding: 2rem 0;
}

.host-logo-top img {
    max-width: 600px;
    width: 80%;
    height: auto;
    object-fit: contain;
    filter: brightness(1.05) contrast(1.1);
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

.host-text-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.host-text-centered p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: var(--graphite-gray);
    font-size: 1.05rem;
}

.host-text-centered strong {
    color: var(--deep-blue);
    font-weight: 700;
}


/* Gallery Section */
.gallery {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: var(--white);
}

.gallery .section-title {
    color: var(--eco-green);
}

.gallery .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    position: relative;
    height: 280px;
    border: 1px solid rgba(10, 61, 98, 0.06);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 61, 98, 0.95), transparent);
    color: var(--white);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

/* Clean Previous Editions Section with Blue Background */
.previous-edition {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
    color: var(--white);
    padding: var(--spacing-xl) 0;
    position: relative;
}

.previous-edition .section-title {
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.previous-edition .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    opacity: 1;
}

.editions-timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-top: var(--spacing-lg);
}

.edition-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    position: relative;
}

.edition-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.12);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.edition-year {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.year-badge {
    background: var(--sodium-yellow);
    color: var(--deep-blue);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
}

.edition-number {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.9rem;
}

.edition-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
}

.edition-details h3 {
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}

.edition-dates,
.edition-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    margin-bottom: 0.4rem;
    line-height: 1.4;
}

.edition-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
}

.edition-link:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.edition-link i {
    font-size: 0.7rem;
}

.earlier-editions {
    grid-column: 1 / -1;
    background: rgba(0, 200, 83, 0.08);
    border: 1px solid rgba(0, 200, 83, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
}

.earlier-editions-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.earlier-editions-header h3 {
    color: var(--sodium-yellow);
    font-size: 1.3rem;
    font-weight: 600;
    margin: 0;
}

.early-years {
    display: flex;
    gap: 0.5rem;
}

.year-tag {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.early-editions-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.8rem;
}

.early-edition-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0.8rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.early-edition-item .year {
    color: var(--sodium-yellow);
    font-weight: 600;
    font-size: 0.85rem;
}

.early-edition-item .location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.8rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .editions-timeline {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .edition-card {
        padding: 1.2rem;
    }
    
    .edition-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.8rem;
    }
    
    .edition-link {
        width: 100%;
        justify-content: center;
    }
    
    .earlier-editions-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .early-editions-details {
        grid-template-columns: 1fr;
    }
}
.venue {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: var(--white);
}

.venue .section-title {
    color: var(--eco-green);
}

.venue .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.venue-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: stretch;
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-xl);
}

.venue-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.venue-info h3 {
    color: var(--eco-green);
    margin-bottom: 1rem;
    margin-top: var(--spacing-md);
    font-size: 1.3rem;
    font-weight: 600;
}

.venue-info h3:first-child {
    margin-top: 0;
}

.venue-info p, .venue-info ul {
    margin-bottom: 1rem;
    line-height: 1.8;
    font-size: 1.05rem;
    color: var(--white);
}

.venue-info ul {
    list-style: none;
    padding-left: 0;
}

.venue-info li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--white);
}

.venue-info li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--eco-green);
    font-weight: bold;
    font-size: 1.3rem;
}

.venue-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 400px;
    background: transparent;
}

.venue-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.accommodation-section {
    margin: var(--spacing-xxl) auto;
    background: var(--white);
    padding: var(--spacing-xl) 0;
    max-width: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.accommodation-section h3 {
    color: var(--eco-green);
    font-size: 2rem;
    text-align: center;
    margin-bottom: var(--spacing-lg);
    font-weight: 600;
}

.accommodation-section p {
    color: var(--graphite-gray);
}

.accommodation-carousel {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.accommodation-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    transition: none;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    margin: 0 auto;
    transform: none !important;
}

.accommodation-card {
    flex: 0 0 300px;
    max-width: 300px;
    background: var(--white);
    border-radius: var(--radius-lg);
    margin: 0.5rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(10, 61, 98, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    background: #fff;
}

.accommodation-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--deep-blue), var(--dark-blue));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--sodium-yellow);
}

.accommodation-info {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.accommodation-info h4 {
    color: var(--deep-blue);
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.accommodation-info p {
    color: var(--graphite-gray);
    margin: 0.25rem 0;
    font-size: 0.95rem;
    line-height: 1.5;
}

.accommodation-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background: var(--sodium-yellow);
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.2s ease;
    align-self: flex-start;
}

.accommodation-link:hover {
    background: var(--deep-blue);
    transform: translateY(-1px);
}

/* Hover effect for cards */
.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.05);
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-info h4 {
    color: var(--deep-blue);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.accommodation-info p {
    color: var(--graphite-gray);
    opacity: 0.8;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

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

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    border: 2px solid var(--deep-blue);
    color: var(--deep-blue);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: none;
}

.carousel-btn:hover {
    background: var(--deep-blue);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.carousel-btn.prev {
    left: 0;
}

.carousel-btn.next {
    right: 0;
}

.cultural-events {
    background: var(--deep-blue);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cultural-events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/placeholder.svg?height=600&width=1200') center/cover;
    opacity: 0.08;
}

.cultural-events .container {
    position: relative;
    z-index: 1;
}

.cultural-events .section-title {
    color: var(--white);
}

.cultural-events .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.cultural-content {
    max-width: 800px;
    margin: 0 auto var(--spacing-lg);
    text-align: center;
}

.cultural-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cultural-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.cultural-highlight {
    background: rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cultural-highlight-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--sodium-yellow);
}

.cultural-highlight h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cultural-mosaic {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.cultural-mosaic-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 250px;
    box-shadow: var(--shadow-lg);
}

.cultural-mosaic-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.sponsors {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: var(--white);
}

.sponsors .section-title {
    color: var(--eco-green);
}

.sponsors .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.sponsors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    align-items: center;
}

.sponsor-logo {
    background: var(--light-bg);
    padding: var(--spacing-md);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 150px;
    transition: all 0.3s ease;
    border: 1px solid rgba(10, 61, 98, 0.06);
}

.sponsor-logo:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    background: var(--white);
}

.sponsor-logo img {
    max-width: 80%;
    max-height: 80%;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

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

/* Accommodation Carousel */
.accommodation-section {
    padding: 5rem 2rem;
    background-color: #f9fafb;
    position: relative;
    overflow: hidden;
}

.accommodation-section h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--deep-blue);
}

.accommodation-carousel {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem 0;
}

.accommodation-track {
    display: flex;
    gap: 2rem;
    padding: 1rem 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.accommodation-track::-webkit-scrollbar {
    display: none;
}

.accommodation-card {
    flex: 0 0 350px;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    scroll-snap-align: start;
    position: relative;
}

.accommodation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.accommodation-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.accommodation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.accommodation-card:hover .accommodation-image img {
    transform: scale(1.05);
}

.accommodation-info {
    padding: 1.5rem;
}

.accommodation-info h4 {
    color: var(--deep-blue);
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    line-height: 1.3;
}

.accommodation-info p {
    color: #4b5563;
    font-size: 0.95rem;
    margin: 0.25rem 0;
    line-height: 1.5;
}

.accommodation-link {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1.25rem;
    background-color: var(--sodium-yellow);
    color: #000;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.accommodation-link:hover {
    background-color: #00b34a;
    transform: translateY(-2px);
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: white;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--deep-blue);
}

.carousel-btn:hover {
    background: var(--deep-blue);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: -25px;
}

.carousel-btn.next {
    right: -25px;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .accommodation-card {
        flex: 0 0 320px;
    }
}

@media (max-width: 992px) {
    .accommodation-section {
        padding: 4rem 1.5rem;
    }
    
    .accommodation-card {
        flex: 0 0 300px;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .carousel-btn.prev {
        left: -15px;
    }
    
    .carousel-btn.next {
        right: -15px;
    }
}

@media (max-width: 768px) {
    .accommodation-section h3 {
        font-size: 2rem;
    }
    
    .accommodation-carousel {
        padding: 1rem 0;
    }
    
    .accommodation-track {
        gap: 1.5rem;
    }
    
    .accommodation-card {
        flex: 0 0 280px;
    }
    
    .carousel-btn {
        display: none;
    }
}

@media (max-width: 480px) {
    .accommodation-section {
        padding: 3rem 1rem;
    }
    
    .accommodation-section h3 {
        font-size: 1.75rem;
    }
    
    .accommodation-track {
        gap: 1rem;
    }
    
    .accommodation-card {
        flex: 0 0 260px;
    }
    
    .accommodation-info {
        padding: 1.25rem;
    }
    
    .accommodation-info h4 {
        font-size: 1.1rem;
    }
    
    .accommodation-info p {
        font-size: 0.9rem;
    }
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: var(--white);
    text-align: center;
}

.stats .section-title {
    color: var(--eco-green);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: calc(var(--spacing-lg) * 0.85);
    margin-top: calc(var(--spacing-lg) * 0.85);
}

.stat-item {
    padding: calc(var(--spacing-md) * 0.85);
}

.stat-number {
    font-size: 3.1rem;
    font-weight: 700;
    color: var(--sodium-yellow);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
    font-family: 'Montserrat', sans-serif;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
    font-weight: 400;
}

/* Contact Section */
.contact {
    background: var(--deep-blue);
    color: var(--white);
    text-align: center;
}

.contact .section-title {
    color: var(--eco-green);
}

.contact .section-subtitle {
    color: var(--white);
    opacity: 0.8;
}

.contact-info {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
    line-height: 1.7;
}

.contact-email {
    color: var(--sodium-yellow);
    font-weight: 600;
    text-decoration: none;
    font-size: 1.4rem;
}

.contact-email:hover {
    text-decoration: underline;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
    flex-wrap: wrap;
}

.contact-item {
    text-align: center;
}

.contact-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--sodium-yellow);
}

/* Key Topics Section */
.topics {
    padding: 5rem 0;
    background-color: var(--white);
}

/* Emphasis styling for About section */
.about-text strong {
    color: var(--deep-blue);
}

/* Committee preview page */
.committee-hero {
    background: linear-gradient(135deg, rgba(0, 80, 158, 0.9), rgba(0, 35, 74, 0.95)), url('assets/images/Hero Background.png') center/cover;
    color: var(--white);
    padding: 140px var(--spacing-md) 120px;
    text-align: center;
}

.committee-hero-content {
    max-width: 1000px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--sodium-yellow);
    padding: 0.35rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-highlight-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2.5rem;
}

.hero-highlight-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 1.25rem;
    backdrop-filter: blur(6px);
}

.hero-highlight-card h3 {
    color: var(--sodium-yellow);
    margin-bottom: 0.35rem;
}

.hero-highlight-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
}

.committee-overview {
    padding: 4rem 0;
    background: #f5f8fb;
}

.committee-topics {
    background: linear-gradient(180deg, #f5f8fb 0%, #ebf3fb 100%);
    padding: 5rem 0;
}

.committee-topics .topic-card {
    text-align: left;
    border-radius: 18px;
    border: 1px solid rgba(10, 61, 98, 0.08);
    box-shadow: 0 18px 35px rgba(8, 41, 77, 0.08);
    padding: 2rem;
}

.committee-topics .topic-icon {
    background: rgba(12, 65, 122, 0.08);
    width: 56px;
    height: 56px;
    display: inline-flex;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    color: var(--eco-green);
    margin-bottom: 1.5rem;
}

.committee-topics .topic-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.committee-topics .topic-card p {
    font-size: 0.95rem;
}

.overview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-lg);
    margin-top: 2.5rem;
}

.overview-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 20px 40px rgba(14, 54, 92, 0.08);
    border: 1px solid rgba(10, 61, 98, 0.08);
}

.committee-section {
    padding: 5.5rem 0;
    background: var(--white);
}

.committee-section.light-bg {
    background: #f8fafc;
}

.section-header {
    max-width: 760px;
    margin: 0 auto 3rem;
    text-align: center;
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem 2.5rem;
    justify-content: center;
    justify-items: center;
}

.committee-card {
    background: var(--white);
    border-radius: 16px;
    padding: 0;
    border: 1px solid rgba(10, 61, 98, 0.1);
    box-shadow: 0 10px 30px rgba(8, 41, 77, 0.1);
    position: relative;
    overflow: hidden;
    height: auto;
    min-height: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
}

.committee-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(8, 41, 77, 0.15);
}

.committee-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-top: 4px solid var(--eco-green);
    border-radius: 16px 16px 0 0;
    opacity: 0.8;
}

.committee-card > * {
    position: relative;
}

.committee-avatar {
    width: 100%;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    position: relative;
    background: #f8f9fa;
    overflow: hidden;
    flex-shrink: 0;
    box-sizing: border-box;
}

.committee-avatar img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    padding: 20px;
    box-sizing: border-box;
}

.committee-card:hover .committee-avatar img {
    transform: scale(1.05);
}

.committee-avatar img {
    width: 100%;
    height: 100%;
    border-radius: inherit;
    object-fit: cover;
    display: block;
}

.committee-card-content {
    padding: 1.2rem 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 140px;
    box-sizing: border-box;
}

.committee-card h3 {
    margin: 0 0 0.3rem 0;
    color: var(--deep-blue);
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1.3;
    position: relative;
}

.committee-card h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--sodium-yellow);
    border-radius: 2px;
}

.committee-card p {
    color: var(--graphite-gray);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    line-clamp: 4;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Role badges removed as requested */

/* Tags removed as requested */

.logistics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.logistics-card {
    background: #0a3d62;
    color: var(--white);
    border-radius: 18px;
    padding: 1.8rem;
    box-shadow: 0 22px 40px rgba(6, 22, 46, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.logistics-card h3 {
    margin-bottom: 1rem;
    color: var(--sodium-yellow);
}

.logistics-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.logistics-card li {
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}

.next-step-card {
    background: var(--white);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid rgba(10, 61, 98, 0.08);
    box-shadow: 0 16px 30px rgba(8, 41, 77, 0.07);
}

.step-number {
    display: inline-flex;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    background: var(--eco-green);
    color: var(--white);
    font-weight: 600;
    margin-bottom: 0.9rem;
}

.committee-contact {
    padding: 4rem 0;
    background: linear-gradient(120deg, #0a3d62, #031d36);
}

.section-divider {
    width: 90%;
    max-width: 960px;
    height: 1px;
    margin: 0 auto;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0), rgba(10, 61, 98, 0.2), rgba(0, 0, 0, 0));
}

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

.topic-card {
    background: #fff;
    border-radius: 12px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    text-align: center;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.topic-icon {
    font-size: 2.8rem;
    color: var(--eco-green);
    margin-bottom: 1.8rem;
    transition: transform 0.3s ease;
}

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

.topic-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
    font-weight: 700;
}

.topic-card p {
    color: var(--graphite-gray);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* Topics Section */
.topics {
    padding: 6rem 0;
    background-color: var(--white);
}

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

.topic-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.topic-icon {
    font-size: 2.5rem;
    color: var(--sodium-yellow);
    margin-bottom: 1.5rem;
}

.topic-card h3 {
    color: var(--deep-blue);
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

.topic-card ul {
    list-style: none;
    padding-left: 0;
}

.topic-card li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--graphite-gray);
}

.topic-card li:before {
    content: '•';
    color: var(--sodium-yellow);
    font-weight: bold;
    display: inline-block;
    width: 1.5rem;
    margin-left: -1.5rem;
}

/* Scientific Committee Section */
.committee {
    padding: 6rem 0;
    background-color: var(--white);
}

.committee-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    align-items: stretch;
}

.committee-member {
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    height: 100%;
}

.committee-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.member-photo {
    width: 100%;
    height: 180px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.committee-member:hover .member-photo img {
    transform: scale(1.05);
}

.member-role {
    display: inline-block;
    background-color: var(--sodium-yellow);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    margin: 1rem 1rem 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.committee-member h3 {
    color: var(--deep-blue);
    margin: 0 1rem 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-affiliation {
    color: var(--graphite-gray);
    font-size: 0.9rem;
    margin: 0 1rem 1rem;
    line-height: 1.5;
}

.member-expertise {
    display: inline-block;
    background-color: #f0f4f8;
    color: var(--deep-blue);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    margin: 0 1rem 1.5rem;
    border: 1px solid #e0e6ed;
}

/* Registration Section */
.registration-section {
    background: linear-gradient(135deg, var(--dark-blue) 0%, var(--deep-blue) 100%);
    padding: 4rem 0;
    color: var(--white);
}

.registration-section .section-title {
    color: var(--white);
    text-align: center;
    margin-bottom: 0.5rem;
}

.registration-section .section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 3rem;
    font-size: 1.1rem;
}

.registration-container {
    max-width: 800px;
    margin: 0 auto;
}

.registration-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.registration-form-wrapper .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

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

.registration-form-wrapper .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 0.95rem;
}

.registration-form-wrapper .form-group label.required::after {
    content: " *";
    color: #e74c3c;
}

.registration-form-wrapper .form-group input,
.registration-form-wrapper .form-group select {
    width: 100%;
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.registration-form-wrapper .form-group input:focus,
.registration-form-wrapper .form-group select:focus {
    outline: none;
    border-color: var(--eco-green);
}

.registration-form-wrapper .file-upload {
    border: 2px dashed #e0e0e0;
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.registration-form-wrapper .file-upload:hover {
    border-color: var(--eco-green);
    background: #f8f9fa;
}

.registration-form-wrapper .file-upload input[type="file"] {
    display: none;
}

.registration-form-wrapper .file-upload-label {
    color: #666;
    font-size: 0.95rem;
}

.registration-form-wrapper .file-upload-label i {
    font-size: 2rem;
    color: var(--eco-green);
    margin-bottom: 0.5rem;
    display: block;
}

.registration-form-wrapper .file-info {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #999;
}

.registration-form-wrapper .submit-btn {
    width: 100%;
    padding: 1rem;
    background: linear-gradient(135deg, var(--eco-green) 0%, #2e7d32 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.2);
}

.registration-form-wrapper .submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(46, 125, 50, 0.3);
}

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

.registration-form-wrapper .success-message {
    display: none;
    background: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

.registration-form-wrapper .error-message {
    display: none;
    background: #f8d7da;
    color: #721c24;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    text-align: center;
}

@media (max-width: 768px) {
    .registration-form-wrapper .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-form-wrapper {
        padding: 1.5rem;
    }
}

/* Footer */
footer {
    background: var(--dark-blue);
    color: var(--white);
    text-align: center;
    padding: var(--spacing-md);
}

footer p {
    margin: 0.5rem 0;
    opacity: 0.9;
    font-size: 0.95rem;
}

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

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

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

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 var(--spacing-sm);
    }
    
    .hero {
        padding: 160px var(--spacing-sm) 80px;
    }
    
    .about-content,
    .venue-main,
    .host-content {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .goals-morocco-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }
    
    .accommodation-carousel {
        padding: 0 2rem;
    }
    
    .accommodation-card {
        flex: 0 0 calc(50% - 2rem);
        max-width: calc(50% - 2rem);
    }
}

@media (max-width: 1200px) {
    .accommodation-carousel {
        padding: 0 2rem;
    }
    
    .accommodation-card {
        flex: 0 0 calc(33.333% - 2rem);
        max-width: calc(33.333% - 2rem);
    }
}

@media (max-width: 992px) {
    .accommodation-card {
        flex: 0 0 calc(50% - 1.5rem);
        max-width: calc(50% - 1.5rem);
    }
}

@media (max-width: 768px) {
    .main-nav .menu-toggle {
        display: block;
    }

    .top-nav-content {
        padding: 0 var(--spacing-sm);
    }

    .top-nav .logo img {
        height: 50px;
    }

    .cta-buttons {
        gap: 0.5rem;
    }

    .cta-nav-btn {
        padding: 0.5rem 1rem;
        font-size: 0.8rem;
    }

    .main-nav .nav-links {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: linear-gradient(135deg, var(--deep-blue) 0%, var(--dark-blue) 100%);
        flex-direction: column;
        padding: var(--spacing-md);
        gap: 0.8rem;
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: all 0.3s ease;
        box-shadow: 0 8px 32px rgba(0, 86, 179, 0.3);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin: 0;
        justify-content: flex-start;
        max-width: none;
    }

    .main-nav .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .hero {
        padding: 120px var(--spacing-sm) 60px;
        min-height: 80vh;
    }

    .about-content,
    .venue-main,
    .host-content {
        grid-template-columns: 1fr;
    }

    .goals-morocco-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
    }

    .venue-image {
        position: relative;
        top: 0;
        height: 300px;
    }

    section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 3rem;
    }

    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        text-align: left;
        padding: 0;
        order: 1;
    }

    .timeline-dot {
        left: 20px;
    }

    .floating-register {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .accommodation-carousel {
        padding: 0 1rem;
    }
    
    .cta-button,
    .cta-button-outline {
        padding: 0.8rem 1.5rem;
        margin: 0.3rem;
        display: block;
        width: 100%;
        text-align: center;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 100px var(--spacing-xs) 40px;
        min-height: 70vh;
    }
    
    section {
        padding: var(--spacing-md) var(--spacing-xs);
    }
    
    .container {
        padding: 0 var(--spacing-xs);
    }
    
    .floating-register {
        bottom: 0.5rem;
        right: 0.5rem;
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 25px;
    }
}

/* Utility: preserve original casing for acronyms like ICNaB */
.keep-case {
    text-transform: none !important;
}
