/* ============================================
   Global Styles & Reset
============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Primary colors from settings - will be overridden by app.blade.php */
    --primary-color: var(--primary-light-color, #1a5490);
    --secondary-color: var(--primary-dark-color, #00a8e8);
    --accent-color: #ff6b35;
    --dark-color: #0f1419;
    --light-color: #f8f9fa;
    --text-color: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, var(--primary-light-color, #1a5490) 0%, var(--primary-dark-color, #00a8e8) 100%);
    --gradient-2: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-3: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Dark Mode Variables */
body.dark-mode {
    --primary-color: var(--primary-light-color, #1a5490);
    --secondary-color: var(--primary-dark-color, #00a8e8);
    --dark-color: #ffffff;
    --light-color: #1a1a2e;
    --text-color: #ffffff;
    --text-light: #e0e0e0;
    --white: #16213e;
    --gradient-1: linear-gradient(135deg, var(--primary-light-color, #1a5490) 0%, var(--primary-dark-color, #00a8e8) 100%);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body.dark-mode {
    background-color: #0f0f23;
    color: #ffffff;
}

body.dark-mode .header {
    background: rgba(22, 33, 62, 0.98);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

body.dark-mode .nav-link {
    color: #ffffff;
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: var(--secondary-color);
}

body.dark-mode .footer,
body.dark-mode .modern-footer {
    background: #0a0a15;
}

body.dark-mode .event-card,
body.dark-mode .feature-card,
body.dark-mode .partner-card,
body.dark-mode .offer-card,
body.dark-mode .testimonial-card,
body.dark-mode .info-card,
body.dark-mode .mv-card,
body.dark-mode .office-card,
body.dark-mode .virtual-event-card,
body.dark-mode .social-card,
body.dark-mode .contact-method-card {
    background: #16213e;
    color: #ffffff;
}

body.dark-mode .section-title,
body.dark-mode h1, body.dark-mode h2, 
body.dark-mode h3, body.dark-mode h4,
body.dark-mode h5, body.dark-mode h6 {
    color: #ffffff !important;
}

body.dark-mode p,
body.dark-mode span,
body.dark-mode div,
body.dark-mode a,
body.dark-mode li,
body.dark-mode label,
body.dark-mode td,
body.dark-mode th {
    color: #ffffff;
}

body.dark-mode .section-description,
body.dark-mode .event-description,
body.dark-mode .event-meta,
body.dark-mode .slide-subtitle,
body.dark-mode .page-subtitle,
body.dark-mode .feature-card p,
body.dark-mode .offer-content p,
body.dark-mode .about-block p,
body.dark-mode .testimonial-text,
body.dark-mode .member-bio,
body.dark-mode .info-item span,
body.dark-mode .faq-item p,
body.dark-mode .event-description-detailed,
body.dark-mode .schedule-content p,
body.dark-mode .audience-card p,
body.dark-mode .price-features li,
body.dark-mode .benefits-list li,
body.dark-mode .footer-description,
body.dark-mode .newsletter-text {
    color: #e0e0e0 !important;
}

body.dark-mode .logo-img {
    filter: brightness(1.2);
}

/* Dark mode button */
body.dark-mode .btn-primary {
    background: var(--primary-dark-color);
    color: var(--white);
}

body.dark-mode .btn-primary:hover {
    background: var(--primary-light-color);
}

body.dark-mode .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
}

body.dark-mode .btn-outline:hover {
    background: #ffffff;
    color: var(--primary-color);
}

/* Dark mode form elements */
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
    background: #1a1a2e;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Dark mode links */
body.dark-mode a:not(.btn) {
    color: #ffffff;
}

body.dark-mode a:not(.btn):hover {
    color: var(--secondary-color);
}

/* Dark mode tables and other elements */
body.dark-mode .stat-label,
body.dark-mode .stat-number {
    color: #ffffff !important;
}

body.dark-mode .event-title,
body.dark-mode .partner-logo,
body.dark-mode .member-title,
body.dark-mode .category-title,
body.dark-mode .footer-title,
body.dark-mode .footer-logo {
    color: #ffffff !important;
}

/* ============================================
   Additional Mobile Optimizations
============================================ */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }

    /* Better touch targets */
    a, button {
        min-height: 44px;
        min-width: 44px;
    }

    /* Improve readability */
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }

    /* Better image handling */
    img {
        max-width: 100%;
        height: auto;
    }

    /* Prevent text overflow */
    h1, h2, h3, h4, h5, h6 {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    /* Better card spacing */
    .event-card,
    .feature-card,
    .partner-card,
    .offer-card,
    .mv-card {
        margin-bottom: 1.5rem;
    }

    /* Improve button accessibility */
    .btn {
        display: inline-block;
        text-align: center;
        white-space: nowrap;
    }

    /* Better form fields */
    input, select, textarea {
        font-size: 16px; /* Prevents zoom on iOS */
        width: 100%;
    }

    /* Stack event meta */
    .event-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    /* Better slideshow dots */
    .slide-dots {
        bottom: 1rem;
    }

    .dot {
        width: 10px;
        height: 10px;
    }

    /* Improve testimonial cards */
    .testimonial-card {
        padding: 1.5rem;
    }

    .testimonial-author img {
        width: 50px;
        height: 50px;
    }

    /* Better pricing display */
    .event-pricing {
        flex-direction: column;
        gap: 1rem;
    }

    .price-tag {
        width: 100%;
    }

    /* Improve info cards */
    .info-card {
        padding: 1.5rem;
    }

    /* Better schedule display */
    .schedule-time {
        font-size: 0.9rem;
    }

    .schedule-content h4 {
        font-size: 1.1rem;
    }

    /* Improve audience cards */
    .audience-icon {
        font-size: 2.5rem;
    }

    /* Better share buttons */
    .share-btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Fix navigation overlap */
    .hamburger {
        position: relative;
        z-index: 1002;
    }
}

@media (max-width: 390px) {
    /* iPhone 12 Pro and similar */
    .container {
        padding: 0 12px;
    }

    .logo-img {
        height: 32px;
    }

    .slide-title {
        font-size: 1.35rem;
    }

    .page-title {
        font-size: 1.6rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .btn {
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .event-content {
        padding: 1.25rem;
    }

    .footer-logo {
        font-size: 1.1rem;
    }

    .social-link {
        width: 36px;
        height: 36px;
    }

    .social-link svg {
        width: 18px;
        height: 18px;
    }
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
    padding: 0;
    width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-fluid {
    width: 100%;
    padding-left: 20px;
    padding-right: 20px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .container-fluid {
        padding-left: 15px;
        padding-right: 15px;
    }
}

/* ============================================
   Header & Navigation
============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar {
    padding: 0.75rem 0;
}

.navbar > .container,
.navbar > .container-fluid,
.navbar > .container-lg,
.navbar > .container-md,
.navbar > .container-sm,
.navbar > .container-xl,
.navbar > .container-xxl {
    display: flex;
    flex-wrap: inherit;
    justify-content: space-evenly;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.5rem 0;
    }
    
    .navbar > .container,
    .navbar > .container-fluid,
    .navbar > .container-lg,
    .navbar > .container-md,
    .navbar > .container-sm,
    .navbar > .container-xl,
    .navbar > .container-xxl {
        justify-content: space-between;
    }
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo h1 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.logo h1 span {
    color: var(--accent-color);
}

/* Dark Mode Toggle */
.dark-mode-toggle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--primary-color);
    background: transparent;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    color: var(--primary-color);
    margin-right: 1rem;
}

.dark-mode-toggle:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(180deg);
}

.dark-mode-toggle .sun-icon {
    display: block;
    font-size: 1.25rem;
}

.dark-mode-toggle .moon-icon {
    display: none;
    font-size: 1.25rem;
}

body.dark-mode .dark-mode-toggle .sun-icon {
    display: none;
}

body.dark-mode .dark-mode-toggle .moon-icon {
    display: block;
}

.nav-menu-footer .dark-mode-toggle .sun-icon,
.nav-menu-footer .dark-mode-toggle .moon-icon {
    font-size: 1.75rem;
}

/* Language Selector Dropdown */
.language-selector {
    position: relative;
}

.language-selector-mobile {
    display: none;
}

.language-dropdown {
    position: relative;
}

.language-dropdown-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    font-weight: 500;
}

.language-dropdown-btn:hover {
    background: var(--primary-color);
    color: var(--white);
}

.language-icon::before {
    content: "🌐";
    font-size: 1.2rem;
}

.language-text {
    text-transform: uppercase;
    font-weight: 600;
}

.language-arrow {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.language-dropdown.active .language-arrow {
    transform: rotate(180deg);
}

.language-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.language-dropdown.active .language-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: var(--light-color);
}

.language-option.active {
    background: var(--primary-color);
    color: var(--white);
}

.language-flag {
    width: 24px;
    height: 18px;
    object-fit: cover;
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.language-option span {
    flex: 1;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 0.9rem;
}

.language-check {
    color: var(--white);
    font-size: 0.875rem;
}

/* Dark mode styles for language dropdown */
body.dark-mode .language-dropdown-btn {
    border-color: var(--secondary-color);
    color: var(--white);
}

body.dark-mode .language-dropdown-btn:hover {
    background: var(--secondary-color);
}

body.dark-mode .language-dropdown-menu {
    background: #16213e;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
}

body.dark-mode .language-option {
    color: var(--white);
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .language-option:hover {
    background: rgba(255, 255, 255, 0.1);
}

body.dark-mode .language-option.active {
    background: var(--secondary-color);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu-footer {
    display: none;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

@media (min-width: 769px) {
    .nav-menu-footer {
        display: none !important;
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 8px;
    z-index: 1002;
    background: transparent;
    border: none;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: all 0.3s ease;
    display: block;
}

body.dark-mode .hamburger span {
    background: var(--white);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* ============================================
   Buttons
============================================ */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--primary-light-color);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

.btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1rem;
}

.btn-block {
    width: 100%;
}

/* ============================================
   Hero Slideshow Section
============================================ */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 600px;
    max-height: 900px;
    margin-top: 70px;
    overflow: hidden;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
        min-height: 500px;
        max-height: 700px;
        margin-top: 60px;
    }
}

.slideshow-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s;
    z-index: 0;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85) contrast(1.1);
}

.slide-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
}

.slide-bg-1 {
    background-image: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?w=1920&h=1080&fit=crop&q=85');
}

.slide-bg-2 {
    background-image: url('https://images.unsplash.com/photo-1505373877841-8d25f7d46678?w=1920&h=1080&fit=crop&q=85');
}

.slide-bg-3 {
    background-image: url('https://images.unsplash.com/photo-1511578314322-379afb476865?w=1920&h=1080&fit=crop&q=85');
}

.slide-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 2rem;
}

.slide-content .container {
    max-width: 900px;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
    line-height: 1.2;
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -0.5px;
}

.slide-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.98;
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.6;
}

.slide-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.slide-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 3;
}

.slide-btn {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.6);
    color: var(--white);
    font-size: 1.5rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.slide-btn:hover {
    background: rgba(255, 255, 255, 0.35);
    border-color: rgba(255, 255, 255, 0.9);
    transform: scale(1.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.slide-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.dot.active {
    background: var(--white);
    transform: scale(1.4);
    box-shadow: 0 3px 12px rgba(255, 255, 255, 0.5);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

/* Animations */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-up {
    animation: fadeUp 0.8s ease-out forwards;
}

.delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
}

.delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
}

/* Hero Section with Home Post (when display == 1) */
.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.85) contrast(1.1);
    animation: zoomIn 20s ease-in-out infinite alternate;
}

@keyframes zoomIn {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.1);
    }
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    filter: brightness(0.85) contrast(1.1);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    width: 100%;
    padding: 0 2rem;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    color: var(--white);
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.8;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-large i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.btn-large:hover i {
    transform: translateX(5px);
}

body[dir="rtl"] .btn-large:hover i {
    transform: translateX(-5px);
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.btn-white:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive Design for Hero */
@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-description {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-large {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .hero-description {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-content {
        padding: 0 1rem;
    }
}

/* ============================================
   Stats Section
============================================ */
.stats-section {
    padding: 4rem 0;
    background: var(--gradient-1);
    color: var(--white);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

.stat-item {
    text-align: center;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    font-size: 3rem;
    opacity: 0.9;
    margin-bottom: 0.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   Section Headers
============================================ */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: color-mix(in srgb, var(--primary-light-color) 10%, transparent);
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   About Section
============================================ */
.about-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
}

.about-block {
    margin-bottom: 2.5rem;
}

.about-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about-block p {
    color: var(--text-light);
    line-height: 1.8;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.8rem;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

@media (max-width: 768px) {
    .about-features {
        grid-template-columns: 1fr;
    }
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.feature-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ============================================
   Events Section
============================================ */
.events-section {
    padding: 6rem 0;
    background: var(--white);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .events-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .events-grid {
        grid-template-columns: 1fr;
    }
}

/* Events Showcase Grid - Like Business Show Design */
.events-showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    width: 100%;
}

@media (max-width: 1200px) {
    .events-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .events-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

.event-showcase-card {
    background: var(--white);
    border-radius: 0;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
    display: flex;
    flex-direction: column;
}

.event-showcase-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.event-showcase-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: var(--gradient-1);
    min-height: 300px;
}

.event-showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.event-showcase-card:hover .event-showcase-image img {
    transform: scale(1.1);
}

.event-showcase-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.event-showcase-banner {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    color: var(--white);
    padding: 0;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.event-showcase-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.event-showcase-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    flex: 1;
    line-height: 1.3;
}

.event-showcase-chevron {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
    flex-shrink: 0;
    margin-left: 1rem;
}

.event-showcase-chevron i {
    font-size: 0.9rem;
    color: var(--primary-light-color);
    transition: transform 0.3s ease;
}

.event-showcase-card.active .event-showcase-chevron {
    background: var(--primary-light-color);
}

.event-showcase-card.active .event-showcase-chevron i {
    transform: rotate(180deg);
}

.event-showcase-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
    padding: 0 2rem;
}

.event-showcase-card.active .event-showcase-content {
    max-height: 1000px;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.event-showcase-banner {
    display: flex;
    flex-direction: column-reverse;
}

.event-showcase-card.active .event-showcase-banner {
    flex-direction: column;
}

.event-showcase-meta {
    margin-bottom: 1.5rem;
}

.event-showcase-date {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.event-showcase-date i {
    color: var(--primary-color);
    font-size: 1rem;
}

.event-showcase-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.event-showcase-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--primary-light-color);
    color: var(--white) !important;
    text-decoration: none;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
    cursor: pointer;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.event-showcase-btn:hover {
    background: var(--primary-dark-color);
    color: var(--white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-dark-color) 40%, transparent);
}

body.dark-mode .event-showcase-btn {
    background: var(--primary-dark-color);
    color: var(--white) !important;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-dark-color) 30%, transparent);
}

body.dark-mode .event-showcase-btn:hover {
    background: var(--primary-light-color);
    color: var(--white) !important;
    box-shadow: 0 6px 20px color-mix(in srgb, var(--primary-light-color) 40%, transparent);
}

/* Dark Mode Support */
body.dark-mode .event-showcase-card {
    background: #16213e;
}

body.dark-mode .event-showcase-chevron i {
    color: var(--primary-dark-color);
}

body.dark-mode .event-showcase-card.active .event-showcase-chevron {
    background: var(--primary-dark-color);
}

body.dark-mode .event-showcase-banner {
    background: linear-gradient(135deg, #0a0a15 0%, #1a1a2e 100%);
}

/* ============================================
   Event Detail Page (eventreadmore)
============================================ */
.event-detail-section {
    padding: 4rem 0;
    background: var(--white);
}

.event-detail-content {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.event-detail-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.event-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-detail-body {
    padding: 3rem;
}

.event-detail-subtitle {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.event-detail-text {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.1rem;
    white-space: pre-wrap;
}

.event-detail-sidebar {
    position: sticky;
    top: 100px;
}

.event-detail-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    margin-bottom: 2rem;
}

.event-detail-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--dark-color);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.event-detail-info {
    margin-bottom: 2rem;
}

.event-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.event-info-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.event-info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.event-info-item strong {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.event-info-item p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.event-register-btn {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--primary-light-color);
    color: var(--white);
    border: none;
    border-radius: 8px;
    transition: var(--transition);
}

.event-register-btn:hover {
    background: var(--primary-dark-color);
    transform: translateY(-2px);
}

body.dark-mode .event-register-btn {
    background: var(--primary-dark-color);
    color: var(--white);
}

body.dark-mode .event-register-btn:hover {
    background: var(--primary-light-color);
}

/* Dark Mode */
body.dark-mode .event-detail-content,
body.dark-mode .event-detail-card {
    background: #16213e;
}

body.dark-mode .event-detail-subtitle,
body.dark-mode .event-detail-card-title,
body.dark-mode .event-info-item p {
    color: var(--white);
}

body.dark-mode .event-detail-text {
    color: rgba(255, 255, 255, 0.85);
}

body.dark-mode .event-info-item {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 992px) {
    .event-detail-sidebar {
        position: static;
        margin-top: 2rem;
    }
    
    .event-detail-image {
        height: 300px;
    }
    
    .event-detail-body {
        padding: 2rem;
    }
}

.event-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.event-image {
    position: relative;
    height: 200px;
    background: var(--gradient-1);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.event-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.event-date-badge {
    background: rgba(255, 255, 255, 0.95);
    padding: 1rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-md);
}

.date-month {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
}

.event-content {
    padding: 2rem;
}

.event-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
}

.event-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    display: none; /* Hidden in grid view */
}

.event-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.highlight-tag {
    padding: 0.4rem 1rem;
    background: color-mix(in srgb, var(--primary-light-color) 10%, transparent);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* ============================================
   Modern Contact Section
============================================ */
.modern-contact-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.contact-header {
    max-width: 700px;
    margin: 0 auto;
}

.modern-contact-form {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.modern-contact-form:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.form-icon i {
    font-size: 2rem;
    color: var(--white);
}

.form-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.form-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.modern-form-group {
    margin-bottom: 1.5rem;
}

.modern-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.modern-form-label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.required-star {
    color: #ef4444;
}

.modern-form-input {
    width: 100%;
    padding: 0.875rem 1.25rem;
    border: 2px solid #e5e7eb;
    border-radius: 10px;
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: 'Poppins', sans-serif;
    background: var(--white);
}

.modern-form-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px color-mix(in srgb, var(--primary-light-color) 10%, transparent);
}

.modern-form-textarea {
    resize: vertical;
    min-height: 140px;
}

.modern-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--primary-light-color);
    color: var(--white);
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.modern-submit-btn:hover {
    background: var(--primary-dark-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px color-mix(in srgb, var(--primary-light-color) 40%, transparent);
}

body.dark-mode .modern-submit-btn {
    background: var(--primary-dark-color);
    color: var(--white);
}

body.dark-mode .modern-submit-btn:hover {
    background: var(--primary-light-color);
}

.modern-submit-btn .btn-text {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modern-submit-btn .btn-icon {
    transition: transform 0.3s ease;
}

.modern-submit-btn:hover .btn-icon {
    transform: translateX(5px);
}

/* Modern Contact Info */
.modern-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-header {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    color: var(--white);
}

.contact-info-header h3 {
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
    color: var(--white);
}

.contact-info-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
}

.contact-info-items {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.modern-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.75rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.modern-contact-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.contact-item-icon {
    width: 55px;
    height: 55px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    flex-shrink: 0;
}

.address-icon {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.phone-icon {
    background: linear-gradient(135deg, #10b981, #059669);
}

.email-icon {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
}

.contact-item-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.contact-item-content p {
    color: var(--text-light);
    margin: 0;
    font-size: 0.9rem;
}

.contact-item-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item-content a:hover {
    color: var(--secondary-color);
}

/* Social Media Section */
.contact-social-section {
    padding: 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.contact-social-section h4 {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 600;
}

.modern-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.modern-social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.2rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.modern-social-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.modern-social-link.facebook {
    background: #1877f2;
}

.modern-social-link.twitter {
    background: #1da1f2;
}

.modern-social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.modern-social-link.linkedin {
    background: #0077b5;
}

.modern-social-link.youtube {
    background: #ff0000;
}

.modern-social-link.tiktok {
    background: #000000;
}

.modern-social-link.telegram {
    background: #0088cc;
}

.modern-social-link.whatsapp {
    background: #25d366;
}

/* Quick Response Card */
.quick-response-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.75rem;
    background: linear-gradient(135deg, #f0fdf4, #dcfce7);
    border-radius: 16px;
    border-left: 4px solid #10b981;
}

.quick-response-icon {
    width: 55px;
    height: 55px;
    background: #10b981;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.quick-response-content h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #047857;
    margin-bottom: 0.25rem;
}

.quick-response-content p {
    color: #065f46;
    font-size: 0.9rem;
    margin: 0;
}

/* Dark Mode Styles */
body.dark-mode .modern-contact-form {
    background: #16213e;
}

body.dark-mode .form-header h3,
body.dark-mode .modern-form-label,
body.dark-mode .contact-item-content h4 {
    color: var(--white);
}

body.dark-mode .modern-form-input {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

body.dark-mode .modern-form-input:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
}

body.dark-mode .modern-contact-item {
    background: #16213e;
}

body.dark-mode .contact-social-section {
    background: #16213e;
}

body.dark-mode .quick-response-card {
    background: linear-gradient(135deg, #064e3b, #065f46);
    border-left-color: #10b981;
}

body.dark-mode .quick-response-content h5 {
    color: #6ee7b7;
}

body.dark-mode .quick-response-content p {
    color: #a7f3d0;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-contact-section {
        padding: 4rem 0;
    }

    .modern-contact-form,
    .contact-info-header {
        padding: 2rem;
    }
}

@media (max-width: 576px) {
    .modern-contact-form {
        padding: 1.5rem;
    }

    .form-icon {
        width: 60px;
        height: 60px;
    }

    .form-icon i {
        font-size: 1.5rem;
    }

    .modern-social-links {
        gap: 0.75rem;
    }

    .modern-social-link {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }

    .modern-contact-item {
        padding: 1.25rem;
    }

    .contact-item-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

/* ============================================
   Modern Map Section
============================================ */
.modern-map-section {
    padding: 6rem 0;
    background: var(--white);
}

body.dark-mode .modern-map-section {
    background: #0f0f23;
}

.map-header {
    max-width: 700px;
    margin: 0 auto 3rem;
}

.modern-map-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.map-frame {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 1rem;
    transition: var(--transition);
}

.map-frame:hover {
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.2);
    transform: translateY(-5px);
}

body.dark-mode .map-frame {
    background: #16213e;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.map-overlay-top,
.map-overlay-bottom {
    position: absolute;
    left: 0;
    right: 0;
    height: 30px;
    pointer-events: none;
    z-index: 1;
}

.map-overlay-top {
    top: 1rem;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9), transparent);
}

.map-overlay-bottom {
    bottom: 1rem;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.9), transparent);
}

body.dark-mode .map-overlay-top {
    background: linear-gradient(to bottom, rgba(22, 33, 62, 0.9), transparent);
}

body.dark-mode .map-overlay-bottom {
    background: linear-gradient(to top, rgba(22, 33, 62, 0.9), transparent);
}

.modern-google-map {
    width: 100%;
    height: 500px;
    border-radius: 16px;
    display: block;
}

/* Map Info Card */
.map-info-card {
    position: absolute;
    bottom: 3rem;
    left: 3rem;
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-width: 350px;
    z-index: 10;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

body.dark-mode .map-info-card {
    background: rgba(22, 33, 62, 0.98);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.map-info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    box-shadow: 0 4px 20px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.map-info-icon i {
    font-size: 1.75rem;
    color: var(--white);
}

.map-info-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.map-info-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.map-directions-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    box-shadow: 0 4px 16px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.map-directions-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px color-mix(in srgb, var(--primary-light-color) 40%, transparent);
    color: var(--white);
}

.map-directions-btn i {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 991px) {
    .modern-map-section {
        padding: 4rem 0;
    }

    .map-frame {
        padding: 0.75rem;
    }

    .modern-google-map {
        height: 400px;
    }

    .map-info-card {
        position: relative;
        bottom: auto;
        left: auto;
        margin-top: 2rem;
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .map-frame {
        padding: 0.5rem;
        border-radius: 16px;
    }

    .modern-google-map {
        height: 350px;
        border-radius: 12px;
    }

    .map-info-card {
        padding: 1.5rem;
    }

    .map-info-icon {
        width: 50px;
        height: 50px;
    }

    .map-info-icon i {
        font-size: 1.5rem;
    }
}

/* ============================================
   Partners Section (Carousel)
============================================ */
.partners-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

body.dark-mode .partners-section {
    background: var(--dark-bg);
}

.partners-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.partners-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

body.dark-mode .partners-section-title {
    color: #ffffff;
}

.partners-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-light-color);
}

body.dark-mode .partners-section-title::after {
    background: var(--primary-dark-color);
}

.partners-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.partners-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.partner-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    justify-content: center;
    min-height: 200px;
}

body.dark-mode .partner-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.partner-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.dark-mode .partner-card::after {
    background: linear-gradient(90deg, transparent, var(--primary-dark-color), transparent);
}

.partner-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

body.dark-mode .partner-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.partner-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.25rem;
}

.partner-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-6px);
}

.partner-card-link:hover .partner-card {
    transform: translateY(0);
}

.partner-card-link:hover .partner-card::after {
    opacity: 1;
}

.partner-card-link:hover .partner-name {
    color: var(--primary-light-color);
}

body.dark-mode .partner-card-link:hover .partner-name {
    color: var(--primary-dark-color);
}

.partner-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-card-link:hover .partner-image-container {
    transform: scale(1.03);
}

.partner-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.partner-card-link:hover .partner-image {
    transform: scale(1.05);
}

.partner-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

body.dark-mode .partner-image-placeholder {
    background: linear-gradient(135deg, #2d2d44 0%, #252538 100%);
}

.partner-image-placeholder i {
    font-size: 3.5rem;
    color: #adb5bd;
    transition: all 0.3s ease;
}

body.dark-mode .partner-image-placeholder i {
    color: #6c757d;
}

.partner-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: -0.02em;
}

body.dark-mode .partner-name {
    color: #f8f9fa;
}

.partners-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.partner-carousel-btn {
    background: #ffffff;
    color: var(--primary-light-color);
    border: 1.5px solid #e9ecef;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.95rem;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
}

.partner-carousel-btn:hover {
    background: var(--primary-light-color);
    color: #ffffff;
    border-color: var(--primary-light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.partner-carousel-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body.dark-mode .partner-carousel-btn {
    background: #1a1a2e;
    color: var(--primary-dark-color);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .partner-carousel-btn:hover {
    background: var(--primary-dark-color);
    color: #ffffff;
    border-color: var(--primary-dark-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.partners-carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.partner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.partner-dot.active {
    background: var(--primary-light-color);
    width: 24px;
    height: 8px;
    border-radius: 4px;
}

.partner-dot:hover {
    background: var(--primary-light-color);
    opacity: 0.7;
}

body.dark-mode .partner-dot {
    background: #495057;
}

body.dark-mode .partner-dot.active {
    background: var(--primary-dark-color);
}

body.dark-mode .partner-dot:hover {
    background: var(--primary-dark-color);
    opacity: 0.7;
}

/* Partner Detail Page */
.partner-detail-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

body.dark-mode .partner-detail-section {
    background: var(--dark-bg);
}

.partner-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.partner-detail-main {
    justify-items: center;
    text-align: center;
}

.partner-detail-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
    max-width: 400px;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-detail-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    display: block;
    position: relative;
    z-index: 1;
}

.partner-detail-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    border-radius: 12px;
    position: relative;
    z-index: 1;
}

body.dark-mode .partner-detail-image-placeholder {
    background: linear-gradient(135deg, #2d2d44 0%, #252538 100%);
}

.partner-detail-image-placeholder i {
    font-size: 5rem;
    color: #adb5bd;
}

body.dark-mode .partner-detail-image-placeholder i {
    color: #6c757d;
}

.partner-detail-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

body.dark-mode .partner-detail-name {
    color: #ffffff;
}

.partner-detail-bio {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.partner-detail-bio p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

body.dark-mode .partner-detail-bio p {
    color: #e0e0e0;
}

/* Responsive */
@media (min-width: 1025px) {
    .partner-card {
        padding: 0 1rem;
    }
    
    .partner-image-container {
        height: 140px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .partner-card {
        padding: 0 0.75rem;
    }
    
    .partner-image-container {
        height: 120px;
    }
    
    .partner-name {
        font-size: 1rem;
    }
    
    .partners-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .partners-section {
        padding: 3rem 0 4rem;
    }
    
    .partner-card {
        padding: 1.5rem 1rem;
    }
    
    .partner-image-container {
        height: 100px;
    }
    
    .partner-name {
        font-size: 0.95rem;
    }
    
    .partners-section-title {
        font-size: 1.75rem;
    }
    
    .partners-carousel-controls {
        margin-top: 2rem;
    }
    
    .partner-detail-image-container {
        height: 200px;
    }
    
    .partner-detail-name {
        font-size: 1.75rem;
    }
    
    .partner-detail-bio {
        text-align: center;
    }
    
    .partner-detail-bio p {
        font-size: 0.9rem;
    }
}

/* Old Partners Section Styles (kept for backward compatibility) */
.partners-categories {
    margin-bottom: 4rem;
}

.partners-categories {
    margin-bottom: 4rem;
}

.partner-category {
    margin-bottom: 3rem;
}

.category-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--dark-color);
    font-weight: 600;
    text-align: center;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: stretch;
    justify-items: stretch;
    width: 100%;
}

@media (max-width: 1200px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 576px) {
    .partners-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 1rem;
    }
}

.partners-grid.platinum {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.partners-grid.gold {
    grid-template-columns: repeat(6, 1fr);
    gap: 2.5rem;
}

.partners-grid.media {
    grid-template-columns: repeat(8, 1fr);
    gap: 2rem;
}

@media (max-width: 1400px) {
    .partners-grid.gold {
        grid-template-columns: repeat(4, 1fr);
    }
    .partners-grid.media {
        grid-template-columns: repeat(6, 1fr);
    }
}

@media (max-width: 1200px) {
    .partners-grid.platinum {
        grid-template-columns: repeat(3, 1fr);
    }
    .partners-grid.gold {
        grid-template-columns: repeat(3, 1fr);
    }
    .partners-grid.media {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partners-grid.platinum {
        grid-template-columns: repeat(2, 1fr);
    }
    .partners-grid.gold {
        grid-template-columns: repeat(3, 1fr);
    }
    .partners-grid.media {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .partners-grid.platinum,
    .partners-grid.gold,
    .partners-grid.media {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

.partner-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.partner-logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.partner-type {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Partner Logo Grid Cards */
.partner-logo-card {
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 120px;
    width: 100%;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

@media (max-width: 768px) {
    .partner-logo-card {
        padding: 1.5rem 1rem;
        min-height: 100px;
    }
}

@media (max-width: 576px) {
    .partner-logo-card {
        padding: 1rem;
        min-height: 80px;
    }
}

.partner-logo-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

body.dark-mode .partner-logo-card {
    background: #16213e;
    border-color: rgba(255, 255, 255, 0.1);
}

body.dark-mode .partner-logo-card:hover {
    border-color: var(--secondary-color);
}

.partner-logo-img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%) opacity(0.7);
    transition: all 0.3s ease;
}

.partner-logo-card:hover .partner-logo-img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.05);
}

body.dark-mode .partner-logo-img {
    filter: grayscale(100%) opacity(0.8) brightness(1.5);
}

body.dark-mode .partner-logo-card:hover .partner-logo-img {
    filter: grayscale(0%) opacity(1) brightness(1.2);
}

/* ============================================
   Speakers Section
============================================ */
.speakers-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.speakers-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.speakers-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

body.dark-mode .speakers-section-title {
    color: #ffffff;
}

.speakers-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-light-color);
}

body.dark-mode .speakers-section-title::after {
    background: var(--primary-dark-color);
}

.speakers-carousel-wrapper {
    position: relative;
    overflow: hidden;
    padding: 1rem 0 2rem;
    margin: 0 auto;
    width: 100%;
}

.speakers-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.speaker-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

body.dark-mode .speaker-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.speaker-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.dark-mode .speaker-card::after {
    background: linear-gradient(90deg, transparent, var(--primary-dark-color), transparent);
}

.speaker-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

body.dark-mode .speaker-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.speaker-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.25rem;
}

.speaker-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-6px);
}

.speaker-card-link:hover .speaker-card {
    transform: translateY(0);
}

.speaker-card-link:hover .speaker-card::after {
    opacity: 1;
}

.speaker-card-link:hover .speaker-name {
    color: var(--primary-light-color);
}

body.dark-mode .speaker-card-link:hover .speaker-name {
    color: var(--primary-dark-color);
}

.speaker-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.speaker-card-link:hover .speaker-image-container {
    transform: scale(1.03);
}

.speaker-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .speaker-image {
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.speaker-card-link:hover .speaker-image {
    border-color: var(--primary-light-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body.dark-mode .speaker-card-link:hover .speaker-image {
    border-color: var(--primary-dark-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.speaker-image-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f8f9fa;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .speaker-image-placeholder {
    background: linear-gradient(135deg, #2d2d44 0%, #252538 100%);
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.speaker-image-placeholder i {
    font-size: 3.5rem;
    color: #adb5bd;
    transition: all 0.3s ease;
}

body.dark-mode .speaker-image-placeholder i {
    color: #6c757d;
}

.speaker-card-link:hover .speaker-image-placeholder {
    border-color: var(--primary-light-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body.dark-mode .speaker-card-link:hover .speaker-image-placeholder {
    border-color: var(--primary-dark-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.speaker-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    text-align: center;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: -0.02em;
}

body.dark-mode .speaker-name {
    color: #f8f9fa;
}

.speaker-position {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    transition: color 0.4s ease;
}

body.dark-mode .speaker-position {
    color: #adb5bd;
}

.speaker-card-link:hover .speaker-position {
    color: #495057;
}

body.dark-mode .speaker-card-link:hover .speaker-position {
    color: #ced4da;
}

.speakers-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.speaker-carousel-btn {
    background: #ffffff;
    color: var(--primary-light-color);
    border: 1.5px solid #e9ecef;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.95rem;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
}

.speaker-carousel-btn:hover {
    background: var(--primary-light-color);
    color: #ffffff;
    border-color: var(--primary-light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.speaker-carousel-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body.dark-mode .speaker-carousel-btn {
    background: #1a1a2e;
    color: var(--primary-dark-color);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .speaker-carousel-btn:hover {
    background: var(--primary-dark-color);
    color: #ffffff;
    border-color: var(--primary-dark-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.speakers-carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.speaker-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.speaker-dot.active {
    background: var(--primary-light-color);
    width: 24px;
    height: 8px;
    border-radius: 4px;
}

.speaker-dot:hover {
    background: var(--primary-light-color);
    opacity: 0.7;
}

body.dark-mode .speaker-dot {
    background: #495057;
}

body.dark-mode .speaker-dot.active {
    background: var(--primary-dark-color);
}

body.dark-mode .speaker-dot:hover {
    background: var(--primary-dark-color);
    opacity: 0.7;
}

/* Desktop: 5 speakers per slide */
@media (min-width: 1025px) {
    .speaker-card {
        padding: 0 1rem;
    }
    
    .speaker-image {
        width: 160px;
        height: 160px;
    }
    
    .speaker-image-placeholder {
        width: 160px;
        height: 160px;
    }
}

/* iPad: 3 speakers per slide */
@media (min-width: 769px) and (max-width: 1024px) {
    .speaker-card {
        padding: 0 0.75rem;
    }
    
    .speaker-image {
        width: 140px;
        height: 140px;
    }
    
    .speaker-image-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .speaker-name {
        font-size: 1rem;
    }
    
    .speaker-position {
        font-size: 0.8rem;
    }
    
    .speakers-section-title {
        font-size: 2rem;
    }
}

/* Mobile: 2 speakers per slide */
@media (max-width: 768px) {
    .speakers-section {
        padding: 3rem 0 4rem;
    }
    
    .speaker-card {
        padding: 1.5rem 1rem;
    }
    
    .speaker-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .speaker-image-placeholder {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .speaker-image-placeholder i {
        font-size: 3rem;
    }
    
    .speaker-name {
        font-size: 0.95rem;
    }
    
    .speaker-position {
        font-size: 0.75rem;
    }
    
    .speakers-section-title {
        font-size: 1.75rem;
    }
    
    .speakers-carousel-controls {
        margin-top: 2rem;
    }
}

/* ============================================
   Speaker Detail Page
============================================ */
.speaker-detail-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.speaker-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.speaker-detail-main {
    text-align: center;
}

.speaker-detail-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.speaker-detail-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: none;
    display: block;
    position: relative;
    z-index: 1;
}

.speaker-detail-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    position: relative;
    z-index: 1;
    margin: 0 auto;
}

.speaker-detail-image-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
}


.speaker-detail-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.2;
}

.speaker-detail-position {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 400;
    margin: 0 0 2rem;
    line-height: 1.6;
}

.speaker-detail-bio {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.speaker-detail-bio p {
    font-size: 1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
}

.speaker-detail-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.speaker-detail-social .social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #4b5563;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.125rem;
}

.speaker-detail-social .social-icon:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
}

body.dark-mode .speaker-detail-section {
    background: var(--white);
}

body.dark-mode .speaker-detail-name {
    color: #ffffff;
}

body.dark-mode .speaker-detail-position {
    color: #e0e0e0;
}

body.dark-mode .speaker-detail-bio p {
    color: #e0e0e0;
}

body.dark-mode .speaker-detail-image-placeholder {
    background: #2a2a3e;
}

body.dark-mode .speaker-detail-image-placeholder i {
    color: #6b7280;
}

body.dark-mode .speaker-detail-social .social-icon {
    background: #2a2a3e;
    color: #e0e0e0;
}

body.dark-mode .speaker-detail-social .social-icon:hover {
    background: var(--primary-dark-color);
    color: #ffffff;
}

@media (max-width: 768px) {
    .speaker-detail-section {
        padding: 3rem 0 4rem;
    }
    
    .speaker-detail-image {
        width: 150px;
        height: 150px;
    }
    
    .speaker-detail-image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .speaker-detail-image-placeholder i {
        font-size: 4rem;
    }
    
    .speaker-detail-name {
        font-size: 1.75rem;
    }
    
    .speaker-detail-position {
        font-size: 1rem;
    }
    
    .speaker-detail-bio {
        text-align: center;
    }
    
    .speaker-detail-bio p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Ambassadors Section
============================================ */
.ambassadors-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

body.dark-mode .ambassadors-section {
    background: var(--dark-bg);
}

.ambassadors-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ambassadors-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

body.dark-mode .ambassadors-section-title {
    color: #ffffff;
}

.ambassadors-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-light-color);
}

body.dark-mode .ambassadors-section-title::after {
    background: var(--primary-dark-color);
}

.ambassadors-carousel-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.ambassadors-carousel {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.ambassador-card {
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

body.dark-mode .ambassador-card {
    background: #1a1a2e;
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.ambassador-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-light-color), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

body.dark-mode .ambassador-card::after {
    background: linear-gradient(90deg, transparent, var(--primary-dark-color), transparent);
}

.ambassador-card:hover {
    transform: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

body.dark-mode .ambassador-card:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.12);
}

.ambassador-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    flex-shrink: 0;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    padding: 0.25rem;
}

.ambassador-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-6px);
}

.ambassador-card-link:hover .ambassador-card {
    transform: translateY(0);
}

.ambassador-card-link:hover .ambassador-card::after {
    opacity: 1;
}

.ambassador-card-link:hover .ambassador-name {
    color: var(--primary-light-color);
}

body.dark-mode .ambassador-card-link:hover .ambassador-name {
    color: var(--primary-dark-color);
}

.ambassador-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 1.5rem;
    transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.ambassador-card-link:hover .ambassador-image-container {
    transform: scale(1.03);
}

.ambassador-image {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    display: block;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .ambassador-image {
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ambassador-card-link:hover .ambassador-image {
    border-color: var(--primary-light-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body.dark-mode .ambassador-card-link:hover .ambassador-image {
    border-color: var(--primary-dark-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.ambassador-image-placeholder {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f8f9fa;
    position: relative;
    z-index: 1;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .ambassador-image-placeholder {
    background: linear-gradient(135deg, #2d2d44 0%, #252538 100%);
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ambassador-image-placeholder i {
    font-size: 3.5rem;
    color: #adb5bd;
    transition: all 0.3s ease;
}

body.dark-mode .ambassador-image-placeholder i {
    color: #6c757d;
}

.ambassador-card-link:hover .ambassador-image-placeholder {
    border-color: var(--primary-light-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

body.dark-mode .ambassador-card-link:hover .ambassador-image-placeholder {
    border-color: var(--primary-dark-color);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
}

.ambassador-name {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
    text-align: center;
    transition: color 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    letter-spacing: -0.02em;
}

body.dark-mode .ambassador-name {
    color: #f8f9fa;
}

.ambassador-position {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 400;
    margin: 0;
    line-height: 1.5;
    text-align: center;
    max-width: 100%;
    transition: color 0.4s ease;
}

body.dark-mode .ambassador-position {
    color: #adb5bd;
}

.ambassador-card-link:hover .ambassador-position {
    color: #495057;
}

body.dark-mode .ambassador-card-link:hover .ambassador-position {
    color: #ced4da;
}

.ambassadors-carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2.5rem;
}

.ambassador-carousel-btn {
    background: #ffffff;
    color: var(--primary-light-color);
    border: 1.5px solid #e9ecef;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-size: 0.95rem;
    padding: 0;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    position: relative;
}

.ambassador-carousel-btn:hover {
    background: var(--primary-light-color);
    color: #ffffff;
    border-color: var(--primary-light-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.ambassador-carousel-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
}

body.dark-mode .ambassador-carousel-btn {
    background: #1a1a2e;
    color: var(--primary-dark-color);
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

body.dark-mode .ambassador-carousel-btn:hover {
    background: var(--primary-dark-color);
    color: #ffffff;
    border-color: var(--primary-dark-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ambassadors-carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
}

.ambassador-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
}

.ambassador-dot.active {
    background: var(--primary-light-color);
    width: 24px;
    height: 8px;
    border-radius: 4px;
}

.ambassador-dot:hover {
    background: var(--primary-light-color);
    opacity: 0.7;
}

body.dark-mode .ambassador-dot {
    background: #495057;
}

body.dark-mode .ambassador-dot.active {
    background: var(--primary-dark-color);
}

body.dark-mode .ambassador-dot:hover {
    background: var(--primary-dark-color);
    opacity: 0.7;
}

/* Ambassador Detail Page */
.ambassador-detail-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

body.dark-mode .ambassador-detail-section {
    background: var(--dark-bg);
}

.ambassador-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.ambassador-detail-main {
    text-align: center;
}

.ambassador-detail-image-container {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

.ambassador-detail-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #f8f9fa;
    display: block;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .ambassador-detail-image {
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ambassador-detail-image-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f1f3f5 0%, #e9ecef 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f8f9fa;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

body.dark-mode .ambassador-detail-image-placeholder {
    background: linear-gradient(135deg, #2d2d44 0%, #252538 100%);
    border-color: #2a2a3e;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.ambassador-detail-image-placeholder i {
    font-size: 5rem;
    color: #adb5bd;
}

body.dark-mode .ambassador-detail-image-placeholder i {
    color: #6c757d;
}

.ambassador-detail-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 1.5rem 0 0.75rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

body.dark-mode .ambassador-detail-name {
    color: #ffffff;
}

.ambassador-detail-position {
    font-size: 1.125rem;
    color: #4b5563;
    font-weight: 400;
    margin: 0 0 2rem;
    line-height: 1.6;
    transition: color 0.3s ease;
}

body.dark-mode .ambassador-detail-position {
    color: #e0e0e0;
}

.ambassador-detail-bio {
    text-align: left;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.ambassador-detail-bio p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

body.dark-mode .ambassador-detail-bio p {
    color: #e0e0e0;
}

.ambassador-detail-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.ambassador-detail-social .social-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

body.dark-mode .ambassador-detail-social .social-icon {
    background: #2a2a3e;
    color: #9ca3af;
}

.ambassador-detail-social .social-icon:hover {
    background: var(--primary-light-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

body.dark-mode .ambassador-detail-social .social-icon:hover {
    background: var(--primary-dark-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media (min-width: 1025px) {
    .ambassador-card {
        padding: 0 1rem;
    }
    
    .ambassador-image {
        width: 160px;
        height: 160px;
    }
    
    .ambassador-image-placeholder {
        width: 160px;
        height: 160px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .ambassador-card {
        padding: 0 0.75rem;
    }
    
    .ambassador-image {
        width: 140px;
        height: 140px;
    }
    
    .ambassador-image-placeholder {
        width: 140px;
        height: 140px;
    }
    
    .ambassador-name {
        font-size: 1rem;
    }
    
    .ambassador-position {
        font-size: 0.8rem;
    }
    
    .ambassadors-section-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .ambassadors-section {
        padding: 3rem 0 4rem;
    }
    
    .ambassador-card {
        padding: 1.5rem 1rem;
    }
    
    .ambassador-image {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .ambassador-image-placeholder {
        width: 120px;
        height: 120px;
        border-width: 3px;
    }
    
    .ambassador-image-placeholder i {
        font-size: 3rem;
    }
    
    .ambassador-name {
        font-size: 0.95rem;
    }
    
    .ambassador-position {
        font-size: 0.75rem;
    }
    
    .ambassadors-section-title {
        font-size: 1.75rem;
    }
    
    .ambassadors-carousel-controls {
        margin-top: 2rem;
    }
    
    .ambassador-detail-image {
        width: 150px;
        height: 150px;
    }
    
    .ambassador-detail-image-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .ambassador-detail-image-placeholder i {
        font-size: 4rem;
    }
    
    .ambassador-detail-name {
        font-size: 1.75rem;
    }
    
    .ambassador-detail-position {
        font-size: 1rem;
    }
    
    .ambassador-detail-bio {
        text-align: center;
    }
    
    .ambassador-detail-bio p {
        font-size: 0.9rem;
    }
}

/* ============================================
   Sponsorship Companies Section
============================================ */
.sponsorship-companies-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.sponsorship-companies-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.sponsorship-companies-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 0;
    padding-bottom: 0.5rem;
    position: relative;
    display: inline-block;
    transition: color 0.3s ease;
}

body.dark-mode .sponsorship-companies-section-title {
    color: #ffffff;
}

.sponsorship-companies-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--primary-light-color);
}

body.dark-mode .sponsorship-companies-section-title::after {
    background: var(--primary-dark-color);
}

.sponsorship-companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.sponsorship-company-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.sponsorship-company-card-link:hover {
    text-decoration: none;
    color: inherit;
    transform: translateY(-5px);
}

.sponsorship-company-card {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.sponsorship-company-card-link:hover .sponsorship-company-card {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-light-color);
}

body.dark-mode .sponsorship-company-card {
    border-color: #374151;
}

body.dark-mode .sponsorship-company-card-link:hover .sponsorship-company-card {
    border-color: var(--primary-dark-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sponsorship-company-image-container {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9fafb;
    padding: 1.5rem;
    overflow: hidden;
}

body.dark-mode .sponsorship-company-image-container {
    background: #1f2937;
}

.sponsorship-company-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.sponsorship-company-card-link:hover .sponsorship-company-image {
    transform: scale(1.05);
}

.sponsorship-company-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}

body.dark-mode .sponsorship-company-image-placeholder {
    background: #2a2a3e;
    color: #6b7280;
}

.sponsorship-company-image-placeholder i {
    font-size: 4rem;
}

.sponsorship-company-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sponsorship-company-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000000;
    margin: 0 0 0.75rem 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

body.dark-mode .sponsorship-company-title {
    color: #ffffff;
}

.sponsorship-company-card-link:hover .sponsorship-company-title {
    color: var(--primary-light-color);
}

body.dark-mode .sponsorship-company-card-link:hover .sponsorship-company-title {
    color: var(--primary-dark-color);
}

.sponsorship-company-description {
    font-size: 0.9rem;
    color: #4b5563;
    margin: 0;
    line-height: 1.6;
    flex-grow: 1;
    transition: color 0.3s ease;
}

body.dark-mode .sponsorship-company-description {
    color: #e0e0e0;
}

/* Sponsorship Company Detail Page */
.sponsorship-company-detail-section {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.sponsorship-company-detail-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.sponsorship-company-detail-main {
    text-align: center;
}

.sponsorship-company-detail-image-container {
    margin-bottom: 2rem;
}

.sponsorship-company-detail-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    border-radius: 12px;
}

.sponsorship-company-detail-image-placeholder {
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    border-radius: 12px;
    margin: 0 auto;
}

body.dark-mode .sponsorship-company-detail-image-placeholder {
    background: #2a2a3e;
}

.sponsorship-company-detail-image-placeholder i {
    font-size: 5rem;
    color: #9ca3af;
}

body.dark-mode .sponsorship-company-detail-image-placeholder i {
    color: #6b7280;
}

.sponsorship-company-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000000;
    margin: 1.5rem 0 1rem;
    line-height: 1.2;
    transition: color 0.3s ease;
}

body.dark-mode .sponsorship-company-detail-title {
    color: #ffffff;
}

.sponsorship-company-detail-description {
    text-align: left;
    max-width: 800px;
    margin: 0 auto;
}

.sponsorship-company-detail-description p {
    font-size: 1.1rem;
    color: #374151;
    line-height: 1.8;
    margin: 0;
    transition: color 0.3s ease;
}

body.dark-mode .sponsorship-company-detail-description p {
    color: #e0e0e0;
}

/* Responsive */
@media (max-width: 1024px) {
    .sponsorship-companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .sponsorship-companies-section {
        padding: 3rem 0 4rem;
    }
    
    .sponsorship-companies-section-title {
        font-size: 1.75rem;
    }
    
    .sponsorship-companies-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .sponsorship-company-image-container {
        height: 150px;
        padding: 1rem;
    }
    
    .sponsorship-company-content {
        padding: 1rem;
    }
    
    .sponsorship-company-title {
        font-size: 1.1rem;
    }
    
    .sponsorship-company-description {
        font-size: 0.85rem;
    }
    
    .sponsorship-company-detail-section {
        padding: 3rem 0 4rem;
    }
    
    .sponsorship-company-detail-title {
        font-size: 1.75rem;
    }
    
    .sponsorship-company-detail-description {
        text-align: center;
    }
    
    .sponsorship-company-detail-description p {
        font-size: 1rem;
    }
}

.partner-cta {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.partner-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.partner-cta p {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* ============================================
   Contact Section
============================================ */
.contact-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 16px;
    transition: var(--transition);
}

.info-card:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.info-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-weight: 600;
}

.info-card p {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.contact-form-container {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

/* Bootstrap form styling overrides */
.form-control,
.form-select {
    padding: 0.875rem 1.25rem;
    border: 2px solid color-mix(in srgb, var(--primary-light-color) 10%, transparent);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}

body.dark-mode .form-control,
body.dark-mode .form-select {
    background: #1a1a2e;
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-light-color) 10%, transparent);
}

body.dark-mode .form-control:focus,
body.dark-mode .form-select:focus {
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(0, 168, 232, 0.1);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1.25rem;
    border: 2px solid color-mix(in srgb, var(--primary-light-color) 10%, transparent);
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-light-color) 10%, transparent);
}

.form-group textarea {
    resize: vertical;
}

/* ============================================
   Footer
============================================ */
.modern-footer {
    background: linear-gradient(135deg, #0f1419 0%, #1a1a2e 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
}

.footer-main {
    padding: 5rem 0 3rem;
    position: relative;
    z-index: 1;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.5fr;
    gap: 3rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

/* Logo Section */
.footer-logo-wrapper {
    margin-bottom: 1.5rem;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    filter: brightness(1.1);
}

.footer-description {
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

/* Social Media Section */
.footer-social {
    margin-top: auto;
}

.social-title {
    font-size: 0.9rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.social-icon.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon.twitter:hover {
    background: #1da1f2;
    border-color: #1da1f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-icon.linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
}

.social-icon.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}

.social-icon.tiktok:hover {
    background: #000000;
    border-color: #000000;
}

.social-icon.telegram:hover {
    background: #0088cc;
    border-color: #0088cc;
}

.social-icon.whatsapp:hover {
    background: #25d366;
    border-color: #25d366;
}

/* Footer Title */
.footer-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    padding: 0;
    margin: 0;
}

.footer-links li {
    display: flex;
    align-items: center;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
}

.footer-links a i {
    font-size: 0.7rem;
    opacity: 0.6;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--white);
    transform: translateX(5px);
}

.footer-links a:hover i {
    opacity: 1;
    color: var(--primary-color);
}

/* Contact Info */
.footer-contact {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.95rem;
}

.footer-contact i {
    color: var(--primary-color);
    font-size: 1.1rem;
    margin-top: 0.2rem;
    min-width: 20px;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: var(--white);
}

.footer-contact span {
    line-height: 1.6;
}

/* Newsletter */
.newsletter-text {
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-size: 0.9rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.newsletter-input-group {
    display: flex;
    gap: 0;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: var(--transition);
}

.newsletter-input-group:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary-light-color) 20%, transparent);
}

.newsletter-input {
    flex: 1;
    padding: 1rem 1.25rem;
    border: none;
    background: transparent;
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    outline: none;
}

.newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-btn {
    padding: 1rem 1.5rem;
    background: var(--primary-light-color);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.newsletter-btn:hover {
    background: var(--primary-dark-color);
    transform: scale(1.05);
}

body.dark-mode .newsletter-btn {
    background: var(--primary-dark-color);
    color: var(--white);
}

body.dark-mode .newsletter-btn:hover {
    background: var(--primary-light-color);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.copyright-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.6;
    text-align: center;
}

.copyright-text .copyright-year,
.copyright-text .copyright-rights,
.copyright-text .copyright-powered {
    color: rgba(255, 255, 255, 0.7);
}

.copyright-text .developer-link {
    color: var(--primary-dark-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
    transition: all 0.3s ease;
    position: relative;
}

.copyright-text .developer-link:hover {
    color: var(--primary-light-color);
    background: color-mix(in srgb, var(--primary-dark-color) 15%, transparent);
    transform: translateY(-2px);
}

.copyright-text .developer-link i {
    font-size: 0.75rem;
    opacity: 0.8;
    transition: var(--transition);
}

.copyright-text .developer-link:hover i {
    opacity: 1;
    transform: translate(2px, -2px);
}

/* Responsive Copyright Text */
@media (max-width: 768px) {
    .copyright-text {
        font-size: 0.85rem;
        gap: 0.4rem;
    }
    
    .copyright-text .developer-link {
        padding: 0.2rem 0.4rem;
        font-size: 0.9rem;
    }
    
    .copyright-text .developer-link i {
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .copyright-text {
        font-size: 0.8rem;
        flex-direction: column;
        gap: 0.3rem;
    }
    
    .copyright-text .copyright-year,
    .copyright-text .copyright-rights {
        display: inline;
    }
}

.developer-credit {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    margin: 0;
}

.developer-credit a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
    font-weight: 600;
}

.developer-credit a:hover {
    color: var(--secondary-color);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    
    .footer-main {
        padding: 4rem 0 2.5rem;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        padding: 3rem 0 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 0.75rem;
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .footer-links a:hover {
        transform: translateX(0);
    }
}

/* ============================================
   Responsive Design
============================================ */
@media (max-width: 1024px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-features {
        grid-template-columns: 1fr 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Reset container */
    .container {
        padding: 0 15px;
    }

    /* Mobile Menu Styling */
    .nav-menu {
        position: fixed;
        top: 60px;
        left: -100%;
        width: 280px;
        max-width: 85%;
        height: calc(100vh - 60px);
        background: var(--white);
        flex-direction: column;
        justify-content: flex-start;
        align-items: stretch;
        padding: 0;
        margin: 0;
        transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.15);
        z-index: 999;
        overflow-y: auto;
        list-style: none;
    }

    body.dark-mode .nav-menu {
        background: #16213e;
        box-shadow: 4px 0 20px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .nav-menu li:not(.nav-menu-footer) {
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    body.dark-mode .nav-menu li:not(.nav-menu-footer) {
        border-bottom-color: rgba(255, 255, 255, 0.1);
    }

    .nav-link {
        display: block;
        padding: 1.25rem 1.5rem;
        font-size: 1rem;
        font-weight: 500;
        width: 100%;
        color: var(--text-color);
        text-decoration: none;
        transition: all 0.2s ease;
    }

    .nav-link:hover {
        background: color-mix(in srgb, var(--primary-light-color) 8%, transparent);
        padding-left: 2rem;
    }

    body.dark-mode .nav-link:hover {
        background: rgba(0, 168, 232, 0.1);
    }

    .nav-link.active {
        background: color-mix(in srgb, var(--primary-light-color) 10%, transparent);
        border-left: 4px solid var(--primary-color);
        padding-left: calc(1.5rem - 4px);
    }

    body.dark-mode .nav-link.active {
        background: rgba(0, 168, 232, 0.15);
        border-left-color: var(--secondary-color);
    }

    .nav-link::after {
        display: none;
    }

    /* Show menu footer on mobile */
    .nav-menu-footer {
        display: block !important;
        width: 100%;
        margin-top: auto;
        padding: 1.5rem;
        border-top: 2px solid rgba(0, 0, 0, 0.1);
        background: rgba(0, 0, 0, 0.02);
    }

    body.dark-mode .nav-menu-footer {
        border-top-color: rgba(255, 255, 255, 0.2);
        background: rgba(255, 255, 255, 0.05);
    }

    /* Hide desktop nav-buttons container on mobile */
    .nav-wrapper > .nav-buttons {
        display: none !important;
    }

    /* Hide desktop language selector on mobile */
    .language-selector-desktop {
        display: none !important;
    }

    /* Show mobile language selector */
    .language-selector-mobile {
        width: 100%;
        padding: 1rem 0;
        display: block !important;
    }

    .language-selector-mobile .language-dropdown-btn {
        width: 100%;
        justify-content: center;
        padding: 1rem;
        font-size: 1.1rem;
        border-width: 2px;
    }

    .language-selector-mobile .language-dropdown-menu {
        position: relative;
        width: 100%;
        margin-top: 0.5rem;
        box-shadow: none;
        border: 2px solid var(--primary-color);
    }

    body.dark-mode .language-selector-mobile .language-dropdown-menu {
        border-color: var(--secondary-color);
    }

    /* Style dark mode toggle in menu */
    .nav-menu-footer .nav-buttons {
        position: static;
        display: flex !important;
        width: 100%;
        justify-content: center;
        padding: 0;
        margin: 0;
    }

    .nav-menu-footer .dark-mode-toggle {
        width: 56px;
        height: 56px;
        margin: 0;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        border: none;
    }

    body.dark-mode .nav-menu-footer .dark-mode-toggle {
        background: var(--secondary-color);
    }

    .nav-menu-footer .dark-mode-toggle svg {
        width: 26px;
        height: 26px;
    }

    /* Hamburger positioning - FIXED TO FAR RIGHT */
    .hamburger {
        display: flex !important;
        position: absolute !important;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 1001;
    }

    .nav-wrapper {
        position: relative;
        width: 100%;
    }

    .logo {
        position: relative;
        z-index: 1001;
    }

    /* Better mobile header spacing */
    .navbar {
        padding: 0.5rem 0;
    }

    /* Ensure hamburger is clickable */
    .hamburger {
        cursor: pointer;
        -webkit-tap-highlight-color: transparent;
    }

    /* Hamburger animation handled globally */

    .slide-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .slide-subtitle {
        font-size: 1rem;
        line-height: 1.5;
    }

    .slide-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

    .btn-large {
        width: 100%;
        padding: 1rem 1.5rem;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .stat-item {
        padding: 1.5rem 1rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .events-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Better spacing for sections */
    .about-section,
    .events-section,
    .partners-section,
    .contact-section {
        padding: 4rem 0;
    }

    /* About features already handled */

    /* Partners already handled */

    /* Forms already handled */

    /* Footer responsive */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-bottom-links {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }

    .slide-controls {
        padding: 0 1rem;
    }

    .slide-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    /* Fix footer social cards on mobile */
    .social-card {
        padding: 2rem 1.5rem;
    }

    .social-card-icon svg {
        width: 40px;
        height: 40px;
    }

    /* Better spacing for mobile */
    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .section-description {
        font-size: 1rem;
    }

    /* Contact form improvements */
    .contact-form-wrapper {
        padding: 0;
    }

    .form-container {
        padding: 1.5rem;
    }

    /* Event cards mobile fix */
    .event-card {
        margin-bottom: 1rem;
    }

    /* Better button spacing */
    .btn {
        padding: 0.875rem 1.25rem;
        font-size: 0.95rem;
    }

    /* Fix hero content padding */
    .page-hero-content,
    .slide-content .container {
        padding: 0 1.5rem;
    }

    /* Partner cards mobile */
    .partner-card {
        padding: 2rem 1.5rem;
    }

    /* Better stat spacing */
    .stats-section {
        padding: 3rem 0;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    /* Logo sizing */
    .logo-img {
        height: 40px;
    }

    .logo h1 {
        font-size: 1rem;
    }

    /* Hero text sizing */
    .slide-title {
        font-size: 1.6rem;
        padding: 0 1rem;
        line-height: 1.2;
    }

    .slide-subtitle {
        font-size: 0.95rem;
        padding: 0 1rem;
        line-height: 1.4;
    }

    .slide-content {
        padding: 0 0.5rem;
    }

    .slide-buttons {
        max-width: 350px;
        padding: 0;
    }

    /* Stats single column */
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-item {
        padding: 1.5rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-icon {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    /* Section titles */
    .section-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-description {
        font-size: 0.95rem;
    }

    /* Hero height */
    .hero-section {
        min-height: 550px;
        height: 85vh;
    }

    .page-hero {
        height: 280px;
    }

    .page-title {
        font-size: 1.75rem;
    }

    /* Event cards */
    .event-image {
        height: 200px;
    }

    .event-content {
        padding: 1.5rem;
    }

    .event-title {
        font-size: 1.3rem;
    }

    /* Footer */
    .footer-main {
        padding: 3rem 0 1.5rem;
    }

    .footer-logo {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    /* Forms */
    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.875rem 1rem;
        font-size: 1rem;
    }

    /* Cards */
    .feature-card,
    .mv-card,
    .offer-card {
        padding: 1.5rem;
    }

    /* Section padding */
    section:not(.hero-section) {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    .container-fluid {
        padding: 0 1rem;
    }

    /* Event detail */
    .event-hero-title {
        font-size: 1.75rem;
    }

    .event-hero-meta {
        font-size: 0.95rem;
    }

    .schedule-item {
        padding: 1rem;
    }

    .price-amount {
        font-size: 2rem;
    }

    /* Hamburger - ensure visible and right-aligned */
    .hamburger {
        right: 10px;
    }

    /* Mobile menu narrower on small screens */
    .nav-menu {
        width: 260px;
    }
}

/* ============================================
   Scroll Animations
============================================ */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-on-scroll {
    opacity: 0;
    animation: slideInUp 0.6s ease-out forwards;
}

/* ============================================
   Page Hero (for sub-pages)
============================================ */
.page-hero {
    position: relative;
    height: 400px;
    margin-top: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.page-hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--primary-light-color) 85%, transparent), color-mix(in srgb, var(--primary-dark-color) 85%, transparent));
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.page-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    color: var(--white) !important;
}

.page-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white) !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-hero-description {
    font-size: 1.25rem;
    color: var(--white) !important;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    justify-self: center;
    font-size: 1.25rem;
    opacity: 0.95;
    max-width: 700px;
}

/* ============================================
   About Page Specific Styles
============================================ */
.about-overview {
    padding: 6rem 0;
    background: var(--white);
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.overview-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.overview-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.overview-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.overview-stat {
    text-align: center;
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
}

.overview-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.overview-stat .stat-text {
    color: var(--text-light);
    font-size: 0.95rem;
}

.mission-vision {
    padding: 6rem 0;
    background: var(--light-color);
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.mv-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.mv-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.what-we-offer {
    padding: 6rem 0;
    background: var(--white);
}

.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.offer-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.offer-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.offer-content {
    padding: 2rem;
}

.offer-content h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.offer-content p {
    color: var(--text-light);
    line-height: 1.6;
}

.our-impact {
    padding: 6rem 0;
    background: var(--light-color);
}

.impact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.impact-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.impact-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.impact-stat-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.impact-stat-card h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Playfair Display', serif;
}

.impact-stat-card p {
    color: var(--text-light);
}

.leadership-team {
    padding: 6rem 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.team-member {
    text-align: center;
}

.member-image {
    width: 100%;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.team-member:hover .member-image img {
    transform: scale(1.1);
}

.team-member h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.member-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-bio {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

.testimonials-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h5 {
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.testimonial-author p {
    color: var(--text-light);
    font-size: 0.9rem;
}

.cta-section {
    padding: 6rem 0;
    background: var(--gradient-1);
    color: var(--white);
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   Contact Page Specific Styles
============================================ */
.contact-info-section {
    padding: 6rem 0;
    background: var(--light-color);
    overflow: hidden;
}

@media (max-width: 768px) {
    .contact-info-section {
        padding: 4rem 0;
    }
}

/* Unified Contact Info Card */
.contact-info-unified {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.contact-unified-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid color-mix(in srgb, var(--primary-light-color) 10%, transparent);
    width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

body.dark-mode .contact-unified-card {
    background: #16213e;
    border-color: rgba(0, 168, 232, 0.2);
}

.contact-info-row {
    display: flex;
    align-items: flex-start;
    gap: 2rem;
    padding: 2rem 0;
}

.contact-info-row:first-child {
    padding-top: 0;
}

.contact-info-row:last-child {
    padding-bottom: 0;
}

@media (max-width: 992px) {
    .contact-info-unified {
        max-width: 100%;
        padding: 0 1.5rem;
    }
    
    .contact-unified-card {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-info-unified {
        padding: 0 1rem;
    }
    
    .contact-info-row {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        padding: 1.5rem 0;
        width: 100%;
    }
    
    .contact-unified-card {
        padding: 2rem 1.5rem;
        width: 100%;
        max-width: 100%;
    }
    
    .contact-info-content {
        align-items: center;
        width: 100%;
    }
    
    .contact-info-content a,
    .contact-info-content p {
        width: 100%;
        text-align: center;
    }
    
    .contact-info-divider {
        margin: 0 1rem;
        width: calc(100% - 2rem);
    }
}

@media (max-width: 576px) {
    .contact-info-unified {
        padding: 0 0.75rem;
    }
    
    .contact-unified-card {
        padding: 1.75rem 1.25rem;
    }
}

@media (max-width: 480px) {
    .contact-info-unified {
        padding: 0 0.5rem;
    }
    
    .contact-unified-card {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .contact-info-row {
        padding: 1.25rem 0;
    }
    
    .contact-icon-wrapper {
        width: 55px;
        height: 55px;
        font-size: 1.35rem;
    }
    
    .contact-info-content h4 {
        font-size: 1.1rem;
    }
    
    .contact-info-content a,
    .contact-info-content p {
        font-size: 0.9rem;
    }
}

.contact-info-divider {
    height: 1px;
    background: linear-gradient(to right, transparent, color-mix(in srgb, var(--primary-light-color) 20%, transparent), transparent);
    margin: 0 2rem;
}

body.dark-mode .contact-info-divider {
    background: linear-gradient(to right, transparent, rgba(0, 168, 232, 0.3), transparent);
}

/* Keep old contact-info-card for backwards compatibility */
.contact-info-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    border-left: 4px solid var(--primary-color);
}

.contact-info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

body.dark-mode .contact-info-card {
    background: #16213e;
    border-left-color: var(--secondary-color);
}

.contact-icon-wrapper {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 15px color-mix(in srgb, var(--primary-light-color) 30%, transparent);
}

.contact-info-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-content h4 {
    font-size: 1.25rem;
    margin: 0 0 0.5rem 0;
    color: var(--dark-color);
    font-weight: 600;
    word-wrap: break-word;
}

.contact-info-content p {
    margin: 0;
    color: var(--text-light);
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.contact-info-content a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
    display: inline-block;
    margin: 0.25rem 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.contact-info-content a:hover {
    color: var(--secondary-color);
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .contact-info-content a:hover {
        transform: translateX(0) scale(1.05);
    }
}

/* Old contact methods grid - keep for compatibility */
.contact-methods-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 1200px) {
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .contact-methods-grid {
        grid-template-columns: 1fr;
    }
}

.contact-method-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.contact-method-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.contact-method-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-method-card p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.contact-method-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.contact-form-section {
    padding: 6rem 0;
    background: var(--white);
}

.contact-form-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: start;
}

@media (max-width: 992px) {
    .contact-form-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

.form-intro h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-intro p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.form-image {
    margin-top: 2rem;
}

.form-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

.form-container {
    background: var(--light-color);
    padding: 3rem;
    border-radius: 16px;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label span {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Google Map Section */
.map-section-full {
    padding: 6rem 0 4rem;
    background: var(--white);
}

body.dark-mode .map-section-full {
    background: #0f0f23;
}

.map-container {
    width: 100%;
    margin: 3rem 0;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.google-map {
    display: block;
    width: 100%;
    height: 450px;
    border: none;
}

@media (max-width: 768px) {
    .google-map {
        height: 350px;
    }
}

.office-locations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

@media (max-width: 992px) {
    .office-locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .office-locations-grid {
        grid-template-columns: 1fr;
    }
}

.office-location-card {
    background: var(--light-color);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.office-location-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

body.dark-mode .office-location-card {
    background: #16213e;
}

.office-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.office-location-card h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 600;
}

.office-location-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-outline-primary i {
    margin-right: 0.5rem;
}

/* Old map section - keep for compatibility */
.map-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.offices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .offices-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .offices-grid {
        grid-template-columns: 1fr;
    }
}

.office-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.office-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.office-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.office-content {
    padding: 2rem;
    text-align: center;
}

.office-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.office-content p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.8;
}

.faq-section {
    padding: 6rem 0;
    background: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    transition: var(--transition);
}

.faq-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
}

.faq-item h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.8;
}

.social-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .social-grid {
        grid-template-columns: 1fr;
    }
}

.social-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.social-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.social-card-icon {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.social-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.social-card p {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-followers {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* ============================================
   Events Page Specific Styles
============================================ */
.event-filter-section {
    padding: 2rem 0;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.filter-controls {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.75rem 2rem;
    border: 2px solid var(--primary-color);
    background: transparent;
    color: var(--primary-color);
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
}

.events-list-section {
    padding: 6rem 0;
    background: var(--white);
}

.events-detailed-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 992px) {
    .events-detailed-grid {
        grid-template-columns: 1fr;
    }
}

.event-detailed-card {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.event-detailed-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
}

.event-detailed-image {
    position: relative;
    height: 250px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 576px) {
    .event-detailed-image {
        height: 200px;
    }
}

.event-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    z-index: 2;
}

.event-badge.featured {
    background: var(--accent-color);
    color: var(--white);
}

.event-badge.popular {
    background: var(--secondary-color);
    color: var(--white);
}

.event-date-large {
    background: rgba(255, 255, 255, 0.95);
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.event-date-large .date-month {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.event-date-large .date-day {
    font-size: 3rem;
    font-weight: 700;
    color: var(--dark-color);
    line-height: 1;
    margin: 0.5rem 0;
    font-family: 'Playfair Display', serif;
}

.event-date-large .date-year {
    color: var(--text-light);
    font-weight: 600;
}

.event-detailed-content {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (max-width: 576px) {
    .event-detailed-content {
        padding: 1.5rem;
    }
}

.event-detailed-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.event-meta-detailed {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.event-meta-detailed span {
    color: var(--text-light);
    font-size: 0.95rem;
}

.event-description-detailed {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
    display: none; /* Hidden in grid view */
}

.event-highlights-detailed h4 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.event-highlights-detailed ul {
    list-style: none;
    margin-bottom: 2rem;
}

.event-highlights-detailed li {
    color: var(--text-light);
    padding: 0.5rem 0;
    line-height: 1.6;
}

.event-pricing {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.price-tag {
    background: var(--light-color);
    padding: 1.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    flex: 1;
}

.price-label {
    display: block;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.price-amount {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: 'Playfair Display', serif;
}

.event-actions {
    display: flex;
    gap: 1rem;
    margin-top: auto;
}

@media (max-width: 576px) {
    .event-actions {
        flex-direction: column;
    }
}

.virtual-events-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.virtual-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.virtual-event-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.virtual-event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.virtual-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.virtual-event-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--dark-color);
}

.virtual-date {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.virtual-event-card p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.event-features-section {
    padding: 6rem 0;
    background: var(--white);
}

.features-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.feature-showcase-card {
    text-align: center;
}

.feature-showcase-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.feature-showcase-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-showcase-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.past-events-section {
    padding: 6rem 0;
    background: var(--light-color);
}

.past-events-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    padding: 2rem 1.5rem 1.5rem;
    color: var(--white);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.event-registration-cta {
    padding: 6rem 0;
    background: var(--gradient-2);
    color: var(--white);
    text-align: center;
}

.event-registration-cta .cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.event-registration-cta .cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-benefits {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

.cta-benefit {
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-weight: 600;
}

/* ============================================
   Responsive - Additional Rules
============================================ */
@media (max-width: 1024px) {
    .overview-grid,
    .impact-content,
    .contact-form-wrapper,
    .event-detailed-card {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mv-grid,
    .offers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .offices-grid,
    .virtual-events-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .features-showcase-grid,
    .past-events-gallery,
    .social-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .event-detailed-image {
        min-height: 300px;
    }

    .event-detailed-content {
        padding: 2rem;
    }

    /* Better hero on tablets */
    .page-hero {
        height: 350px;
    }

    /* Improve about sections */
    .overview-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }

    .overview-stat {
        padding: 1.5rem;
    }

    /* Better contact info */
    .contact-methods-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .page-hero {
        height: 300px;
    }

    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1rem;
    }

    .overview-stats,
    .mv-grid,
    .offers-grid,
    .team-grid,
    .testimonials-grid,
    .faq-grid,
    .offices-grid,
    .virtual-events-grid,
    .features-showcase-grid,
    .past-events-gallery,
    .social-grid {
        grid-template-columns: 1fr;
    }

    .impact-stats-grid {
        grid-template-columns: 1fr;
    }

    .event-detailed-card {
        grid-template-columns: 1fr;
    }

    .event-detailed-image {
        min-height: 250px;
    }

    .event-actions {
        flex-direction: column;
    }

    .event-pricing {
        flex-direction: column;
    }

    .cta-buttons {
        flex-direction: column;
        padding: 0 2rem;
    }

    .filter-controls {
        padding: 0 1rem;
    }

    .cta-benefits {
        flex-direction: column;
        align-items: center;
    }

    .logo-img {
        height: 40px;
    }

    .nav-buttons {
        gap: 0.5rem;
    }

    .dark-mode-toggle {
        width: 35px;
        height: 35px;
        margin-right: 0.5rem;
    }
}

/* ============================================
   Event Detail Page Styles
============================================ */
.event-detail-hero {
    position: relative;
    height: 500px;
    margin-top: 70px;
    display: flex;
    align-items: flex-end;
    padding-bottom: 3rem;
    overflow: hidden;
}

.event-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.event-hero-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.8));
}

.event-hero-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.event-category-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.event-category-badge.featured {
    background: var(--accent-color);
}

.event-category-badge.popular {
    background: var(--secondary-color);
}

.event-category-badge.tech {
    background: #667eea;
}

.event-category-badge.luxury {
    background: #f093fb;
}

.event-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.event-hero-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1.1rem;
}

.event-hero-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-detail-content {
    padding: 4rem 0;
}

.event-detail-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.event-main-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.event-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-family: 'Playfair Display', serif;
}

.event-section p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.event-highlights-list {
    list-style: none;
    display: grid;
    gap: 1rem;
}

.event-highlights-list li {
    padding: 1rem;
    background: var(--light-color);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    color: var(--text-light);
}

.event-schedule {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    transition: var(--transition);
}

.schedule-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.schedule-time {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.schedule-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.schedule-content p {
    font-size: 1rem;
    margin: 0;
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.audience-card {
    padding: 2rem;
    background: var(--light-color);
    border-radius: 12px;
    text-align: center;
    transition: var(--transition);
}

.audience-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.audience-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.audience-card h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.audience-card p {
    margin: 0;
    font-size: 0.95rem;
}

.event-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-registration-card,
.event-info-card,
.event-share-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
}

body.dark-mode .event-registration-card,
body.dark-mode .event-info-card,
body.dark-mode .event-share-card {
    background: #16213e;
}

.event-registration-card h3,
.event-info-card h3,
.event-share-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.pricing-options {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-option {
    padding: 1.5rem;
    background: var(--light-color);
    border-radius: 12px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.price-option:hover {
    border-color: var(--primary-color);
    transform: scale(1.02);
}

.price-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.price-label {
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark-color);
}

.price-badge {
    padding: 0.25rem 0.75rem;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.price-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.price-features li {
    padding: 0.5rem 0;
    color: var(--text-light);
}

.info-item {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: var(--dark-color);
}

.info-item span {
    color: var(--text-light);
}

.share-buttons {
    display: grid;
    gap: 1rem;
}

.share-btn {
    padding: 0.875rem 1.5rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
}

.share-btn.facebook {
    background: #1877f2;
    color: white;
}

.share-btn.twitter {
    background: #1da1f2;
    color: white;
}

.share-btn.linkedin {
    background: #0077b5;
    color: white;
}

.share-btn.email {
    background: var(--text-color);
    color: white;
}

.share-btn:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
}

.related-events {
    padding: 4rem 0;
    background: var(--light-color);
}

.related-events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.related-event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

.related-event-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.related-event-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.related-event-content {
    padding: 1.5rem;
}

.related-event-content h4 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--dark-color);
}

.related-event-content p {
    color: var(--text-light);
    margin: 0;
}

/* Event Detail Page Responsive */
@media (max-width: 1024px) {
    .event-detail-grid {
        grid-template-columns: 1fr;
    }

    .event-sidebar {
        order: -1;
    }

    .schedule-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .event-detail-hero {
        height: 400px;
    }

    .event-hero-title {
        font-size: 2rem;
    }

    .event-hero-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }

    .related-events-grid {
        grid-template-columns: 1fr;
    }
}

