/* ===========================================
   MAKEPLUS PORTFOLIO - STYLES
   iOS-style Glassmorphism with Dark Theme
   =========================================== */

/* Font Face Declarations */
@font-face {
    font-family: 'Cairo';
    src: url('/assets/fonts/Cairo/Cairo-VariableFont_slnt,wght.ttf') format('truetype');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Autography';
    src: url('/assets/fonts/autography/Autography.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables for Theme */
:root {
    /* Colors */
    --bg-primary: #0a0a0a;
    --bg-secondary: #111111;
    --accent-magenta: #872c7a;
    --accent-magenta-light: #b83db8;
    --accent-purple: #9333ea;
    --accent-pink: #d946ef;
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-hover: rgba(255, 255, 255, 0.12);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-hover: rgba(255, 255, 255, 0.2);
    --glass-blur: 20px;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

/* Reset & Base Styles */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Cairo', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-weight: 400;
    background: radial-gradient(ellipse at 20% 30%, rgba(135, 44, 122, 0.4) 0%, rgba(88, 28, 135, 0.2) 25%, rgba(10, 10, 10, 1) 60%);
    background-color: var(--bg-primary);
    background-attachment: fixed;
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
}

/* Accessibility: Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }

    .video-background video {
        display: none;
    }

    .video-background::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, rgba(135, 44, 122, 0.2) 0%, rgba(10, 10, 10, 0.9) 100%);
    }
}

/* ===========================================
   NAVIGATION BAR
   =========================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1003;
    padding: var(--spacing-sm) var(--spacing-lg);
}

.glass-nav {
    
    
    
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    order: 1;
}

.nav-logo img {
    height: 40px;
    width: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xs) var(--spacing-sm);
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    order: 2;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 500;
    transition: var(--transition-fast);
    padding: var(--spacing-xs) var(--spacing-md);
    position: relative;
    border-radius: var(--radius-md);
}

.nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(135, 44, 122, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    opacity: 0;
    transition: opacity var(--transition-fast);
    z-index: -1;
    border: 1px solid rgba(184, 61, 184, 0.3);
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-magenta-light), var(--accent-pink));
    transition: width var(--transition-fast);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link.active {
    color: var(--text-primary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    order: 3;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1003;
    position: relative;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Sidebar */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -300px;
    bottom: 0;
    width: 280px;
    background: #0a0a0a;
    z-index: 1002;
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: 4px 0 24px rgba(0, 0, 0, 0.8);
    display: none;
}

.mobile-sidebar.active {
    left: 0;
}

.mobile-sidebar-content {
    display: flex;
    flex-direction: column;
    padding: 100px var(--spacing-lg) var(--spacing-xl);
    height: 100%;
}

.mobile-nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-family: 'Cairo', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    padding: var(--spacing-md) var(--spacing-lg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
}

.mobile-nav-link:last-child {
    border-bottom: none;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--text-primary);
    background: rgba(135, 44, 122, 0.2);
    padding-left: calc(var(--spacing-lg) + 12px);
    border-left: 3px solid var(--accent-magenta);
}

/* Language Switcher in Navbar */
.language-switcher {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.lang-btn.active {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.1);
}

.lang-btn:hover:not(.active) {
    color: var(--text-secondary);
}

.lang-divider {
    color: var(--text-muted);
    font-size: 0.875rem;
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: var(--spacing-xl) var(--spacing-lg);
    padding-top: 100px;
    overflow: hidden;
    background: var(--bg-primary);
}

/* Video Background */
.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    will-change: opacity;
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.4;
    pointer-events: none;
    will-change: transform, opacity;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg,
            rgba(10, 10, 10, 0.6) 0%,
            rgba(10, 10, 10, 0.3) 50%,
            rgba(10, 10, 10, 0.7) 100%);
    background-image:
        radial-gradient(ellipse 60% 40% at 50% 50%, rgba(135, 44, 122, 0.25) 0%, transparent 60%),
        radial-gradient(ellipse 40% 30% at 50% 60%, rgba(184, 61, 184, 0.15) 0%, transparent 50%);
    z-index: 1;
    pointer-events: none;
}

/* Responsive video background */
@media (max-aspect-ratio: 16/9) {
    .video-background video {
        width: 100%;
        height: auto;
    }
}

@media (min-aspect-ratio: 16/9) {
    .video-background video {
        width: auto;
        height: 100%;
    }
}

/* Mobile landscape orientation */
@media (max-height: 600px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-md);
    }

    .hero-tagline {
        top: 45%;
        left: var(--spacing-sm);
        transform: translateY(-50%);
    }

    .tagline-card {
        padding: 0.8rem 1.2rem;
    }

    .tagline-normal {
        font-size: clamp(1rem, 2.5vh, 1.5rem);
    }

    .tagline-script {
        font-size: clamp(2rem, 4vh, 3rem);
    }

    .hero-stats {
        right: 1rem;
        gap: 1rem;
        top: 15%;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.7rem;
        max-width: 120px;
    }

    .hero-speaker {
        width: 20%;
        height: 45%;
        right: 1rem;
    }

    .partner-logo-blur img {
        width: 50px;
    }

    .center-glow {
        width: 250px;
        height: 250px;
    }
}

/* Hero Tagline - Middle Left Card */
.hero-tagline {
    position: absolute;
    top: 45%;
    left: 8rem;
    transform: translateY(-50%);
    z-index: 3;
}

.tagline-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 2px solid rgba(184, 61, 184, 0.5);
    border-radius: var(--radius-lg);
    padding: 2rem 3rem;
    box-shadow:
        0 8px 32px rgba(135, 44, 122, 0.3),
        0 2px 8px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.tagline-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.tagline-content {
    display: flex;
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
}

.tagline-normal {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    color: var(--text-primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
    text-shadow: 0 2px 10px rgba(135, 44, 122, 0.5);
}

.tagline-script {
    font-family: 'Autography', cursive;
    font-size: clamp(5rem, 7vw, 7rem);
    color: var(--accent-magenta-light);
    font-weight: normal;
    line-height: 1;
    margin-top: -0.3rem;
    text-shadow: 0 2px 10px rgba(184, 61, 184, 0.6);
}

/* Hero Stats - Right Side */
.hero-stats {
    position: absolute;
    top: 15%;
    right: 14rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-start;
}

.stat-item {
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    align-items: flex-start;
}

.stat-number {
    font-family: 'Cairo', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    color: var(--text-primary);
    line-height: 1;
    text-shadow: 0 4px 20px rgba(217, 70, 239, 0.3);
    border-bottom: 3px solid var(--text-primary);
    padding-bottom: 0.2rem;
    display: inline-block;
}

.stat-label {
    font-family: 'Cairo', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    max-width: 280px;
    text-align: left;
}

/* Hero Speaker Image */
.hero-speaker {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
    width: 45%;
    max-width: 550px;
    height: 40%;
    overflow: visible;
    pointer-events: none;
}

.speaker-image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: bottom right;
}

/* Event Photos Background */
.event-photo {
    position: absolute;
    bottom: 0;
    width: 50%;
    max-width: 650px;
    height: 55%;
    z-index: 1;
    overflow: hidden;
    pointer-events: none;
    opacity: 0.5;
}

.event-photo.left-photo {
    left: 0;
}

.event-photo.right-photo {
    right: 0;
}

.event-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: blur(0.5px);
    opacity: 0.7;
}

.event-photo .photo-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(135, 44, 122, 0.7), rgba(135, 44, 122, 0.4));
    mix-blend-mode: multiply;
    pointer-events: none;
    z-index: 1;
}

/* Partners Background - Blurred Logos */
.partners-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
    opacity: 0.08;
    filter: blur(1px);
}

.partner-logo-blur {
    position: absolute;
}

.partner-logo-blur img {
    width: 120px;
    height: auto;
    opacity: 0.6;
    filter: grayscale(100%) brightness(0.5);
}

.partner-logo-blur:nth-child(1) {
    top: 10%;
    left: 5%;
}

.partner-logo-blur:nth-child(2) {
    top: 15%;
    right: 8%;
}

.partner-logo-blur:nth-child(3) {
    top: 45%;
    left: 3%;
}

.partner-logo-blur:nth-child(4) {
    top: 50%;
    right: 5%;
}

.partner-logo-blur:nth-child(5) {
    bottom: 20%;
    left: 8%;
}

.partner-logo-blur:nth-child(6) {
    bottom: 15%;
    right: 10%;
}

/* Center Glow Effect */
.center-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(135, 44, 122, 0.3) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 900px;
}

.brand-logo {
    display: flex;
    justify-content: center;
    align-items: center;
}

.brand-logo img {
    height: clamp(60px, 12vw, 120px);
    width: auto;
    filter: brightness(1.1);
}

/* ===========================================
   SERVICES MAIN SECTION
   =========================================== */
.services-main-section {
    padding: 90px var(--spacing-lg) 20px;
    text-align: center;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.services-content {
    max-width: 900px;
    margin: 0 auto 30px auto;
}

.brand-logo-description {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.brand-logo-description img {
    height: 60px;
    width: auto;
    filter: brightness(1.1);
}

.brand-description {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 55px auto;
    line-height: 1.6;
    font-weight: 300;
}

/* Services Container */
.services-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    padding: 0 var(--spacing-md);
    margin: 0 auto;
}

.services-row {
    display: flex;
    justify-content: center;
    gap: 18px;
    flex-wrap: wrap;
}

.services-row-top {
    justify-content: center;
}

.services-row-bottom {
    justify-content: center;
}

/* Service Cards - Glass Style */
.service-card {
    flex: 0 1 200px;
    padding: 18px 14px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 85px;
    transition: all 0.4s ease;
    filter: grayscale(100%);
    opacity: 0.85;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: translateY(-5px) scale(1.02);
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
    box-shadow:
        0 8px 32px rgba(135, 44, 122, 0.2),
        0 0 0 1px rgba(255, 255, 255, 0.1);
}

.service-image {
    width: 100%;
    height: 0;
    opacity: 0;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 0;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
}

.service-card.expanded {
    flex: 0 1 300px;
    min-height: 420px;
    filter: grayscale(0%);
    opacity: 1;
    background: var(--glass-bg-hover);
    border-color: var(--accent-magenta);
    box-shadow:
        0 12px 48px rgba(135, 44, 122, 0.3),
        0 0 0 2px rgba(184, 61, 184, 0.2);
    transform: translateY(-8px);
    z-index: 10;
}

.service-card.expanded .service-image {
    height: 180px;
    opacity: 1;
    margin-bottom: 15px;
}

.service-card .service-title {
    font-family: 'Cairo', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.3;
    display: block;
    transition: all 0.3s ease;
}

.service-card.expanded .service-title {
    color: var(--accent-magenta);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-card .service-description {
    font-family: 'Cairo', sans-serif;
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
    margin-top: 12px;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s ease;
}

.service-card.expanded .service-description {
    opacity: 1;
    max-height: 500px;
}

.service-card span {
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-primary);
    line-height: 1.4;
}

/* Glass Card Base */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(var(--glass-blur));
    -webkit-backdrop-filter: blur(var(--glass-blur));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    transition: var(--transition-normal);
}

.glass-card:hover {
    background: var(--glass-bg-hover);
    border-color: var(--glass-border-hover);
}

/* Zelij Banner */
.zelij-banner {
    width: 100%;
    height: 120px;
    overflow: hidden;
    background: transparent;
    padding: 0;
    position: relative;
    margin-top: 0;
    display: flex;
    align-items: center;
}

.zelij-scroll {
    display: flex;
    flex-direction: row;
    animation: zelij-scroll 120s linear infinite;
    height: 120px;
    width: max-content;
}

.zelij-pattern {
    height: 120px;
    width: auto;
    flex-shrink: 0;
    opacity: 0.4;
    filter: brightness(1.5);
    display: block;
    margin: 0;
    padding: 0;
}

@keyframes zelij-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ============================================
   PROJECTS WRAPPER - CONTAINS IMAGES AND VIDEOS
   ============================================ */
.projects-wrapper {
    padding: 100px 0 0;
    overflow: hidden;
    position: relative;
    scroll-margin-top: 80px;
}

/* Projects Header */
.projects-header {
    text-align: center;
    padding: 20px var(--spacing-lg) 30px;
    max-width: 900px;
    margin: 0 auto;
}

.projects-title {
    font-family: 'Autography', cursive;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    font-weight: normal;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.projects-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1rem, 1.8vw, 1.125rem);
    color: var(--text-secondary);
    font-weight: 300;
    line-height: 1.6;
}

/* ============================================
   IMAGE BANNER SECTION - COVERFLOW CAROUSEL
   ============================================ */
.image-section {
    padding: 10px 0 30px;
    overflow: hidden;
    min-height: 45vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image Carousel Container */
.image-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.image-carousel-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.image-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 380px;
}

/* Image Card - EXACTLY like video card with same dimensions */
.image-card {
    position: absolute;
    width: 550px;
    max-width: 52vw;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid transparent;
    box-shadow: inset 0 0 0 8px rgba(135, 44, 122, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    /* Default: hidden state */
    transform: translateX(0) scale(0.6);
    opacity: 0;
    filter: blur(4px) brightness(0.5);
    pointer-events: none;
    z-index: 1;
}

/* Active (center) card - fully visible with zelij border effect */
.image-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
    border-color: var(--accent-magenta);
    box-shadow:
        inset 0 0 0 8px rgba(135, 44, 122, 0.3),
        0 0 0 1px rgba(135, 44, 122, 0.5),
        0 0 40px rgba(135, 44, 122, 0.5),
        0 0 80px rgba(135, 44, 122, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.6);
    z-index: 10;
    pointer-events: auto;
}

/* Previous card (left side) - smaller, blurred */
.image-card.prev {
    transform: translateX(-65%) scale(0.7);
    opacity: 0.7;
    filter: blur(2px) brightness(0.6);
    z-index: 5;
    pointer-events: auto;
}

/* Next card (right side) - smaller, blurred */
.image-card.next {
    transform: translateX(65%) scale(0.7);
    opacity: 0.7;
    filter: blur(2px) brightness(0.6);
    z-index: 5;
    pointer-events: auto;
}

/* Far left card */
.image-card.far-prev {
    transform: translateX(-120%) scale(0.5);
    opacity: 0.3;
    filter: blur(4px) brightness(0.4);
    z-index: 2;
}

/* Far right card */
.image-card.far-next {
    transform: translateX(120%) scale(0.5);
    opacity: 0.3;
    filter: blur(4px) brightness(0.4);
    z-index: 2;
}

.image-card-inner {
    display: flex;
    flex-direction: column;
}

/* Image wrapper with 16:9 aspect ratio - EXACTLY like video */
.image-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    background: #000;
    overflow: hidden;
}

.image-wrapper img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    border: none;
    /* Gradual fade-in like service cards */
    transition: opacity 0.6s ease-in-out;
}

/* Remove skeleton loading - use gradual fade-in instead */
.image-fade-in {
    opacity: 0;
}
/* Remove skeleton loading - use gradual fade-in instead */
.image-fade-in {
    opacity: 0;
}

/* Old image-card styles removed - now using optimized single-image carousel */


/* Navigation Arrows for Images - EXACTLY like video nav */
.image-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
    outline: none;
    padding: 0;
    margin: 0;
}

.image-nav:hover {
    background: rgba(70, 70, 70, 0.95);
    border-color: var(--accent-magenta);
    transform: translateY(-50%) scale(1.1);
}

.image-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.image-nav:focus {
    outline: none;
}

.image-nav svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.image-nav-prev {
    left: 30px;
}

.image-nav-next {
    right: 30px;
}

/* Pagination Dots for Images - Hidden */
.image-pagination {
    display: none;
}

.image-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.image-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.image-dot.active {
    background: var(--accent-magenta);
    width: 28px;
    border-radius: 6px;
}

/* Responsive adjustments for images - MATCH video carousel */
@media (max-width: 1200px) {
    .image-card {
        width: 500px;
    }

    .image-card.prev {
        transform: translateX(-60%) scale(0.65);
    }

    .image-card.next {
        transform: translateX(60%) scale(0.65);
    }

    .image-nav {
        width: 48px;
        height: 48px;
    }

    .image-nav svg {
        width: 24px;
        height: 24px;
    }

    .image-nav-prev {
        left: 15px;
    }

    .image-nav-next {
        right: 15px;
    }
}

@media (max-width: 900px) {
    .image-card {
        width: 480px;
        max-width: 75vw;
    }

    .image-card.prev {
        transform: translateX(-55%) scale(0.6);
    }

    .image-card.next {
        transform: translateX(55%) scale(0.6);
    }
}

@media (max-width: 600px) {
    .image-section {
        min-height: 400px;
        padding: 10px 0 10px;
    }

    .image-carousel-container {
        min-height: 350px;
    }

    .image-carousel-wrapper {
        min-height: 300px;
    }

    .image-carousel-track {
        min-height: 300px;
    }

    .image-card {
        width: 360px;
        max-width: 85vw;
    }

    .image-card.prev,
    .image-card.next {
        transform: translateX(0) scale(0.5);
        opacity: 0.4;
        filter: blur(3px) brightness(0.5);
    }

    .image-card.far-prev,
    .image-card.far-next {
        display: none;
    }

    .image-nav {
        width: 40px;
        height: 40px;
    }

    .image-nav svg {
        width: 20px;
        height: 20px;
    }

    .image-nav-prev {
        left: 10px;
    }

    .image-nav-next {
        right: 10px;
    }
}
        width: 20px;
        height: 20px;
    }

    .image-nav-prev {
        left: 10px;
    }

    .image-nav-next {
        right: 10px;
    }

    .image-dot {
        width: 10px;
        height: 10px;
    }

    .image-dot.active {
        width: 24px;
    }
}

/* ============================================
   VIDEO SECTION - COVERFLOW CAROUSEL
   ============================================ */
.video-section {
    padding: 10px 0 40px;
    overflow: hidden;
    min-height: 45vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Carousel Container */
.video-carousel-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 420px;
}

.video-carousel-wrapper {
    width: 100%;
    overflow: visible;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 380px;
}

.video-carousel-track {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 100%;
    min-height: 380px;
}

/* Video Card - Carousel Style with Zelij decorative border */
.video-card {
    position: absolute;
    width: 550px;
    max-width: 52vw;
    border-radius: 16px;
    overflow: hidden;
    background: rgba(20, 20, 20, 0.95);
    border: 3px solid transparent;
    box-shadow: inset 0 0 0 8px rgba(135, 44, 122, 0.1);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
    /* Default: hidden state */
    transform: translateX(0) scale(0.6);
    opacity: 0;
    filter: blur(4px) brightness(0.5);
    pointer-events: none;
    z-index: 1;
}

/* Active (center) card - fully visible with zelij border effect */
.video-card.active {
    transform: translateX(0) scale(1);
    opacity: 1;
    filter: blur(0) brightness(1);
    border-color: var(--accent-magenta);
    box-shadow:
        inset 0 0 0 8px rgba(135, 44, 122, 0.3),
        0 0 0 1px rgba(135, 44, 122, 0.5),
        0 0 40px rgba(135, 44, 122, 0.5),
        0 0 80px rgba(135, 44, 122, 0.25),
        0 30px 60px rgba(0, 0, 0, 0.6);
    z-index: 10;
    pointer-events: auto;
}

/* Previous card (left side) - smaller, blurred */
.video-card.prev {
    transform: translateX(-65%) scale(0.7);
    opacity: 0.7;
    filter: blur(2px) brightness(0.6);
    z-index: 5;
    pointer-events: auto;
}

/* Next card (right side) - smaller, blurred */
.video-card.next {
    transform: translateX(65%) scale(0.7);
    opacity: 0.7;
    filter: blur(2px) brightness(0.6);
    z-index: 5;
    pointer-events: auto;
}

/* Far left card */
.video-card.far-prev {
    transform: translateX(-120%) scale(0.5);
    opacity: 0.3;
    filter: blur(4px) brightness(0.4);
    z-index: 2;
}

/* Far right card */
.video-card.far-next {
    transform: translateX(120%) scale(0.5);
    opacity: 0.3;
    filter: blur(4px) brightness(0.4);
    z-index: 2;
}

.video-card-inner {
    display: flex;
    flex-direction: column;
}

/* Video wrapper with 16:9 aspect ratio */
.video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.video-wrapper iframe,
.video-wrapper .youtube-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Card title overlay (inside card) */
.video-card-title {
    display: none;
}

/* Navigation Arrows */
.video-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: rgba(40, 40, 40, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 20;
    backdrop-filter: blur(10px);
    outline: none;
    padding: 0;
    margin: 0;
}

.video-nav:hover {
    background: rgba(70, 70, 70, 0.95);
    border-color: var(--accent-magenta);
    transform: translateY(-50%) scale(1.1);
}

.video-nav:active {
    transform: translateY(-50%) scale(0.95);
}

.video-nav:focus {
    outline: none;
}

.video-nav svg {
    width: 28px;
    height: 28px;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.video-nav-prev {
    left: 30px;
}

.video-nav-next {
    right: 30px;
}

/* Pagination Dots */
.video-pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: var(--spacing-md);
}

.video-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.video-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

.video-dot.active {
    background: var(--accent-magenta);
    width: 28px;
    border-radius: 6px;
}

/* Current Video Title (below carousel) - Event Name */
.video-current-title {
    text-align: center;
    padding: 20px var(--spacing-md);
    font-family: 'Cairo', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-primary);
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
    .video-card {
        width: 500px;
    }

    .video-card.prev {
        transform: translateX(-60%) scale(0.65);
    }

    .video-card.next {
        transform: translateX(60%) scale(0.65);
    }

    .video-nav {
        width: 48px;
        height: 48px;
    }

    .video-nav svg {
        width: 24px;
        height: 24px;
    }

    .video-nav-prev {
        left: 15px;
    }

    .video-nav-next {
        right: 15px;
    }
}

@media (max-width: 900px) {
    .video-card {
        width: 480px;
        max-width: 75vw;
    }

    .video-card.prev {
        transform: translateX(-55%) scale(0.6);
    }

    .video-card.next {
        transform: translateX(55%) scale(0.6);
    }

    .video-current-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 600px) {
    .video-section {
        min-height: 400px;
        padding: 10px 0 20px;
    }

    .video-carousel-container {
        min-height: 350px;
    }

    .video-carousel-wrapper {
        min-height: 300px;
    }

    .video-carousel-track {
        min-height: 300px;
    }

    .video-card {
        width: 360px;
        max-width: 85vw;
    }

    .video-card.prev {
        transform: translateX(0) scale(0.5);
        opacity: 0.4;
        filter: blur(3px) brightness(0.5);
    }

    .video-card.next {
        transform: translateX(0) scale(0.5);
        opacity: 0.4;
        filter: blur(3px) brightness(0.5);
    }

    .video-card.far-prev,
    .video-card.far-next {
        display: none;
    }

    .video-nav {
        width: 40px;
        height: 40px;
    }

    .video-nav svg {
        width: 20px;
        height: 20px;
    }

    .video-nav-prev {
        left: 10px;
    }

    .video-nav-next {
        right: 10px;
    }

    .video-dot {
        width: 10px;
        height: 10px;
    }

    .video-dot.active {
        width: 22px;
    }

    .video-current-title {
        font-size: 1.2rem;
    }
}

/* Partners Section */
.partners-section {
    padding: 40px var(--spacing-lg) 40px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    max-width: 1600px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-family: 'Autography', cursive;
    font-size: clamp(2.8rem, 5vw, 3.8rem);
    text-align: center;
    margin-bottom: 40px;
    font-weight: normal;
}

.partners-subtitle {
    text-align: center;
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    font-weight: 300;
}

/* Clients Scroll Container */
.clients-scroll-container {
    width: 100%;
    overflow: hidden;
    padding: 40px 0; /* Increased from 30px for more space */
    position: relative;
    mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 10%, black 90%, transparent 100%);
}

.clients-scroll {
    display: flex;
    gap: 40px;
    width: fit-content;
    margin-bottom: 25px; /* Increased from 15px for more space between rows */
}

.clients-scroll-top {
    animation: scroll-clients-left 20s linear infinite;
}

.clients-scroll-bottom {
    animation: scroll-clients-right 20s linear infinite;
}

/* Independent hover - only pause the hovered row */
.clients-scroll:hover {
    animation-play-state: paused;
}

.client-logo {
    height: 80px; /* Reduced from 120px */
    width: auto;
    max-width: 180px; /* Reduced from 250px */
    object-fit: contain;
    flex-shrink: 0;
    filter: grayscale(100%) brightness(0.8);
    opacity: 0.7;
    transition: var(--transition-normal);
}

.client-logo:hover {
    filter: grayscale(0%) brightness(1);
    opacity: 1;
    transform: scale(1.15); /* Slightly more zoom on hover */
}

@keyframes scroll-clients-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes scroll-clients-right {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===========================================
   CONTACT FORM SECTION
   =========================================== */
.contact-section {
    padding: 60px var(--spacing-lg) 40px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
}

.contact-title {
    font-family: 'Autography', cursive;
    font-size: clamp(2.8rem, 5vw, 4.2rem);
    margin-bottom: 12px;
    font-weight: normal;
}

.contact-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 1.05rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    font-weight: 300;
}

.contact-form {
    padding: 28px;
    text-align: left;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
    margin-bottom: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    margin-bottom: 18px;
}

.form-group label {
    font-family: 'Cairo', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-primary);
}

.form-input {
    font-family: 'Cairo', sans-serif;
    font-size: 0.9rem;
    padding: 0.7rem 0.9rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--accent-magenta-light);
    box-shadow: 0 0 0 3px rgba(184, 61, 184, 0.1);
}

.form-input::placeholder {
    color: var(--text-muted);
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
}

.submit-btn {
    width: 100%;
    padding: 0.8rem var(--spacing-lg);
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-purple));
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--accent-magenta-light), var(--accent-pink));
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(184, 61, 184, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Footer - Glass Effect */
.footer {
    background: rgba(10, 10, 10, 0.15);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    padding: var(--spacing-xl) var(--spacing-lg);
    position: relative;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-xl);
}

.footer-item {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-icon {
    width: 20px;
    height: 20px;
    color: var(--accent-magenta-light);
}

.footer-social {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
}

.social-link {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    transition: var(--transition-fast);
    text-decoration: none;
}

.social-link:hover {
    color: var(--text-primary);
    background: var(--glass-bg-hover);
    border-color: var(--accent-magenta-light);
}

.social-link svg {
    width: 18px;
    height: 18px;
}

.social-handle {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .services-row {
        gap: var(--spacing-sm);
    }

    .service-card {
        flex: 0 1 200px;
        min-height: 90px;
    }
}

@media (max-width: 992px) {
    .services-container {
        padding: 0 var(--spacing-md);
    }

    .service-card {
        flex: 0 1 180px;
        padding: var(--spacing-md);
    }

    .service-card.expanded {
        flex: 0 1 200px;
        min-height: 240px;
    }

    .service-card span {
        font-size: 0.85rem;
    }

    .nav-links {
        gap: var(--spacing-sm);
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    .nav-link {
        font-size: 0.85rem;
        padding: var(--spacing-xs) var(--spacing-sm);
    }

    /* Hero Section Responsive Layout */
    .hero-section {
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
    }

    /* Speaker image on medium screens */
    .hero-speaker {
        display: block;
        width: 35%;
        height: 38%;
        z-index: 2;
    }

    /* Tagline - Left side */
    .hero-tagline {
        position: absolute;
        left: 3rem;
        top: 45%;
        transform: translateY(-50%);
        width: auto;
        max-width: 45%;
    }

    .tagline-card {
        padding: 1.5rem 2rem;
    }

    .tagline-normal {
        font-size: clamp(1.5rem, 2.5vw, 2rem);
    }

    .tagline-script {
        font-size: clamp(3rem, 4.5vw, 4.5rem);
    }

    /* Stats - Right side, vertical centered */
    .hero-stats {
        position: absolute;
        right: 3rem;
        top: 45%;
        transform: translateY(-50%);
        width: auto;
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
        justify-content: flex-start;
    }

    .stat-item {
        text-align: left;
        align-items: flex-start;
        flex: 0 0 auto;
    }

    .stat-number {
        font-size: 2.25rem;
    }

    .stat-label {
        font-size: 0.75rem;
        max-width: 120px;
        text-align: left;
    }

    .event-photo {
        width: 38%;
        height: 45%;
    }
}

/* Portrait Mode (height > width) - Mobile Responsive Layout */
@media (orientation: portrait) {
    .navbar {
        padding: var(--spacing-sm);
    }

    .nav-logo img {
        height: 32px;
    }

    /* Hero Section - Keep desktop-like layout */
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding: 0;
        padding-top: 70px;
        display: flex;
        align-items: center;
        overflow: hidden;
    }

    /* Speaker image in portrait mode - bottom right, large */
    .hero-speaker {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        width: 65%;
        max-width: 350px;
        height: 45%;
        z-index: 2;
        opacity: 0.9;
    }

    .video-background video {
        opacity: 0.3;
    }

    .partner-logo-blur img {
        width: 80px;
    }

    .center-glow {
        width: 400px;
        height: 400px;
    }

    .brand-logo img {
        height: 50px;
    }

    .brand-logo-description img {
        height: 50px;
    }

    .brand-description {
        font-size: 0.95rem;
        padding: 0 var(--spacing-sm);
    }

    /* Stats - Vertical on the right, vertically centered */
    .hero-stats {
        position: absolute;
        right: 1.5rem;
        top: 45%;
        transform: translateY(-50%);
        margin: 0;
        width: auto;
        height: auto;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 1.2rem;
        padding: 0;
        order: unset;
    }

    .stat-item {
        text-align: left;
        align-items: flex-start;
        flex: none;
    }

    .stat-number {
        font-size: 1.8rem;
        border-bottom: 2px solid var(--text-primary);
    }

    .stat-label {
        font-size: 0.65rem;
        max-width: 100px;
        text-align: left;
    }

    /* Tagline - Left side, vertically centered like desktop */
    .hero-tagline {
        position: absolute;
        left: 1.5rem;
        top: 45%;
        transform: translateY(-50%);
        margin: 0;
        width: auto;
        max-width: 55%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: flex-start;
        order: unset;
    }

    .tagline-card {
        margin: 0;
        padding: 1rem 1.5rem;
        max-width: 100%;
    }

    .tagline-content {
        align-items: flex-start;
        text-align: left;
    }

    .tagline-normal {
        font-size: clamp(1.2rem, 4.5vw, 2rem);
    }

    .tagline-script {
        font-size: clamp(2.5rem, 8vw, 4rem);
    }

    .services-main-section {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .services-row {
        flex-direction: column;
        align-items: center;
    }

    .service-card {
        flex: 0 1 auto;
        width: 100%;
        max-width: 320px;
    }

    .service-card.expanded {
        flex: 0 1 auto;
        width: 100%;
        max-width: 320px;
        min-height: 200px;
    }

    .service-card .service-description {
        font-size: 0.8rem;
    }

    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .video-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .video-thumbnail {
        flex: 0 0 180px;
    }

    .carousel-arrow {
        width: 40px;
        height: 40px;
    }

    .carousel-arrow svg {
        width: 20px;
        height: 20px;
    }

    .video-controls {
        padding: var(--spacing-sm);
        gap: var(--spacing-xs);
    }

    .play-btn svg,
    .fullscreen-btn svg {
        width: 20px;
        height: 20px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    .event-photo {
        display: none;
    }

    .video-thumbnail {
        flex: 0 0 150px;
    }
}

/* Portrait mode with small heights */
@media (orientation: portrait) and (max-height: 700px) {
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding-top: 60px;
    }

    .hero-stats {
        top: 42%;
        gap: 0.8rem;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.6rem;
        max-width: 80px;
    }

    .tagline-normal {
        font-size: clamp(1rem, 3.5vw, 1.5rem);
    }

    .tagline-script {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .tagline-card {
        padding: 0.8rem 1rem;
    }

    .hero-speaker {
        height: 40%;
        width: 60%;
        max-width: 300px;
    }

    /* Show only most important partner logos */
    .partner-logo-blur:nth-child(n+5) {
        display: none;
    }

    .partner-logo-blur img {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .section-title {
        font-size: 2rem;
    }

    .service-card {
        padding: var(--spacing-md) var(--spacing-sm);
    }

    .service-card span {
        font-size: 0.8rem;
    }

    .brand-logo img {
        height: 40px;
    }

    .brand-logo-description img {
        height: 40px;
    }

    .event-photo {
        display: none;
    }

    /* Hero Speaker - Bottom Right, Larger */
    .hero-speaker {
        display: block;
        position: absolute;
        bottom: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: none;
        height: 45%;
        opacity: 1;
        transform: none;
    }
    
    .speaker-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }

    .video-background video {
        opacity: 0.25;
    }

    .partner-logo-blur img {
        width: 60px;
    }

    .partners-background {
        opacity: 0.05;
    }

    .center-glow {
        width: 250px;
        height: 250px;
        top: 35%;
    }

    .video-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .video-thumbnail {
        flex: 0 0 120px;
    }

    .carousel-arrow {
        width: 36px;
        height: 36px;
    }

    .carousel-arrow svg {
        width: 18px;
        height: 18px;
    }

    .video-controls {
        opacity: 1;
    }

    .video-time {
        font-size: 0.7rem;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.services-container {
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Scroll Reveal Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Loading States */
img {
    transition: opacity var(--transition-normal);
}

img[src=""] {
    opacity: 0;
}

/* ===========================================
   SWIPER VIDEO SLIDER CUSTOM STYLES
   =========================================== */

/* Swiper Container */
.videoSwiper {
    width: 100%;
    padding: 80px 0 !important;
    overflow: visible !important;
}

.videoSwiper .swiper-wrapper {
    align-items: center;
}

/* Swiper Slide */
.videoSwiper .swiper-slide {
    width: 700px;
    height: auto;
    opacity: 0.4;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.videoSwiper .swiper-slide-active {
    opacity: 1;
}

/* Video Card in Swiper */
.video-card-swiper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.9);
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    aspect-ratio: 16 / 9;
}

.swiper-slide-active .video-card-swiper {
    border-color: var(--accent-magenta);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.7),
        0 0 60px rgba(217, 70, 239, 0.3),
        inset 0 0 0 1px rgba(255, 255, 255, 0.1);
}

.swiper-slide-active .video-card-swiper::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-magenta), var(--accent-purple));
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.5;
    animation: glow-pulse 2s ease-in-out infinite;
}

/* Video iframe container in Swiper */
.video-card-swiper .video-iframe-container {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.video-card-swiper .video-iframe-container iframe {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
}

/* Video player wrapper for YouTube iframes */
.video-card-swiper .video-player-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-card-swiper .video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Plyr video embed container (legacy) */
.video-card-swiper .plyr__video-embed {
    width: 100%;
    height: 100%;
    position: relative;
    background: #000;
}

.video-card-swiper .plyr__video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Vidstack Player Styling */
.vidstack-player {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    --media-brand: var(--accent-magenta);
    --media-focus-ring-color: var(--accent-magenta);
    --media-controls-color: rgba(255, 255, 255, 0.9);
}

media-player {
    aspect-ratio: 16 / 9;
    width: 100%;
}

/* Vidstack custom theme colors */
media-player::part(play-button) {
    background: var(--accent-magenta);
    border: 2px solid var(--accent-magenta-light);
    box-shadow: 0 10px 40px rgba(135, 44, 122, 0.5);
    transition: all 0.3s ease;
}

media-player::part(play-button):hover {
    background: var(--accent-magenta-light);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(135, 44, 122, 0.7);
}

media-player::part(time-slider-track-fill) {
    background: var(--accent-magenta);
}

media-player::part(volume-slider-track-fill) {
    background: var(--accent-magenta-light);
}

media-player::part(slider-thumb) {
    background: var(--accent-magenta);
    border: 2px solid white;
}

/* Hide non-active player controls */
.swiper-slide:not(.swiper-slide-active) media-player {
    pointer-events: none;
}

.swiper-slide-active media-player {
    pointer-events: auto;
}

/* Video.js Custom Theme - Makeplus */
.video-js {
    width: 100%;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.vjs-theme-makeplus {
    --vjs-theme-makeplus--primary: var(--accent-magenta);
    --vjs-theme-makeplus--secondary: var(--accent-magenta-light);
}

/* Big play button */
.vjs-theme-makeplus .vjs-big-play-button {
    background: rgba(135, 44, 122, 0.9);
    border: 3px solid var(--accent-magenta-light);
    border-radius: 50%;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 48px;
    box-shadow: 0 10px 40px rgba(135, 44, 122, 0.6);
    transition: all 0.3s ease;
}

.vjs-theme-makeplus .vjs-big-play-button:hover {
    background: var(--accent-magenta);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(135, 44, 122, 0.8);
}

.vjs-theme-makeplus .vjs-big-play-button .vjs-icon-placeholder:before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Control bar */
.vjs-theme-makeplus .vjs-control-bar {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    height: 4em;
}

/* Play/Pause button */
.vjs-theme-makeplus .vjs-play-control {
    color: var(--text-primary);
}

.vjs-theme-makeplus .vjs-play-control:hover {
    color: var(--accent-magenta);
}

/* Progress bar */
.vjs-theme-makeplus .vjs-progress-control .vjs-progress-holder {
    height: 0.5em;
    background: rgba(255, 255, 255, 0.2);
}

.vjs-theme-makeplus .vjs-play-progress {
    background: var(--accent-magenta);
    box-shadow: 0 0 10px var(--accent-magenta);
}

.vjs-theme-makeplus .vjs-play-progress:before {
    color: var(--accent-magenta-light);
    text-shadow: 0 0 10px var(--accent-magenta);
}

.vjs-theme-makeplus .vjs-load-progress {
    background: rgba(255, 255, 255, 0.3);
}

/* Volume slider */
.vjs-theme-makeplus .vjs-volume-level {
    background: var(--accent-magenta-light);
}

/* Time display */
.vjs-theme-makeplus .vjs-current-time,
.vjs-theme-makeplus .vjs-duration,
.vjs-theme-makeplus .vjs-time-divider {
    color: var(--text-primary);
}

/* Buttons */
.vjs-theme-makeplus .vjs-control:hover {
    color: var(--accent-magenta);
}

/* Fullscreen button */
.vjs-theme-makeplus .vjs-fullscreen-control:hover {
    color: var(--accent-magenta-light);
}

/* Hide controls on non-active slides */
.swiper-slide:not(.swiper-slide-active) .video-js {
    pointer-events: none;
}

.swiper-slide-active .video-js {
    pointer-events: auto;
}

/* Smooth control bar fade */
.vjs-theme-makeplus.vjs-user-inactive .vjs-control-bar {
    opacity: 0;
    transition: opacity 0.3s ease;
}

.vjs-theme-makeplus.vjs-user-active .vjs-control-bar {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* Plyr Custom Styling (legacy - can be removed) */
.plyr {
    border-radius: var(--radius-lg);
}

.plyr__control--overlaid {
    background: rgba(135, 44, 122, 0.9);
    border: 2px solid var(--accent-magenta-light);
    box-shadow: 0 10px 40px rgba(135, 44, 122, 0.5);
    transition: all 0.3s ease;
}

.plyr__control--overlaid:hover {
    background: var(--accent-magenta);
    transform: scale(1.1);
    box-shadow: 0 15px 50px rgba(135, 44, 122, 0.7);
}

.plyr__control--overlaid svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.plyr__controls {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.plyr__control {
    color: var(--text-primary);
}

.plyr__control:hover {
    background: var(--accent-magenta);
}

.plyr__control.plyr__tab-focus {
    box-shadow: 0 0 0 3px var(--accent-magenta);
}

.plyr__progress__buffer {
    background: rgba(255, 255, 255, 0.2);
}

.plyr__progress input[type=range] {
    color: var(--accent-magenta);
}

.plyr--full-ui input[type=range] {
    color: var(--accent-magenta);
}

.plyr__volume input[type=range] {
    color: var(--accent-magenta-light);
}

.plyr--video .plyr__controls {
    padding: 15px 20px;
}

.plyr__poster {
    background-size: cover;
    background-position: center;
}

/* Hide Plyr when not active slide */
.swiper-slide:not(.swiper-slide-active) .plyr__poster {
    opacity: 1;
}

.swiper-slide:not(.swiper-slide-active) .plyr__controls {
    opacity: 0;
}

.swiper-slide-active .plyr__controls {
    opacity: 1;
    transition: opacity 0.3s ease 0.5s;
}

/* Video title under card */
.video-card-swiper .video-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
    color: var(--text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 10;
}

.swiper-slide-active .video-card-swiper .video-card-title {
    opacity: 1;
}

/* Swiper Navigation Buttons */
.videoSwiper .swiper-button-prev,
.videoSwiper .swiper-button-next {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.videoSwiper .swiper-button-prev:after,
.videoSwiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
}

.videoSwiper .swiper-button-prev:hover,
.videoSwiper .swiper-button-next:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent-magenta);
    transform: scale(1.1);
    box-shadow: 0 0 30px rgba(217, 70, 239, 0.4);
}

.videoSwiper .swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Swiper Pagination */
.videoSwiper .swiper-pagination {
    bottom: 20px !important;
}

.videoSwiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    opacity: 1;
    transition: all 0.3s ease;
}

.videoSwiper .swiper-pagination-bullet-active {
    background: var(--accent-magenta);
    width: 32px;
    border-radius: 6px;
}

/* Responsive Swiper */
@media (max-width: 768px) {
    .videoSwiper {
        padding: 60px 0 !important;
    }

    .videoSwiper .swiper-slide {
        width: 90vw;
    }

    .videoSwiper .swiper-button-prev,
    .videoSwiper .swiper-button-next {
        width: 44px;
        height: 44px;
    }

    .videoSwiper .swiper-button-prev:after,
    .videoSwiper .swiper-button-next:after {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .videoSwiper {
        padding: 40px 0 !important;
    }

    .videoSwiper .swiper-button-prev,
    .videoSwiper .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .videoSwiper .swiper-button-prev:after,
    .videoSwiper .swiper-button-next:after {
        font-size: 14px;
    }
}

/* Responsive for Projects Section */
@media (max-width: 768px) {
    .projects-wrapper {
        padding: 60px 0 0;
        scroll-margin-top: 70px;
    }

    .projects-header {
        padding: 15px var(--spacing-md) 20px;
    }

    .projects-title {
        font-size: clamp(2.2rem, 6vw, 2.8rem);
    }

    .projects-subtitle {
        font-size: clamp(0.9rem, 2vw, 1rem);
    }
}

@media (max-width: 480px) {
    .projects-wrapper {
        padding: 50px 0 0;
        scroll-margin-top: 60px;
    }

    .projects-header {
        padding: 10px var(--spacing-sm) 15px;
    }
}

/* ===========================================
   MOBILE MENU STYLES
   =========================================== */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1002;
}

.hamburger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===========================================
   COMPREHENSIVE RESPONSIVE STYLES
   =========================================== */

/* Large Desktop (1400px+) */
@media (min-width: 1400px) {
    .video-card {
        width: 650px;
    }

    .hero-section {
        padding: var(--spacing-2xl) var(--spacing-xl);
    }

    .hero-tagline {
        left: calc(var(--spacing-xl) + 2rem);
    }

    .hero-stats {
        right: calc(6rem + 2rem);
    }
}

/* Desktop (1200px - 1399px) - already handled above */

/* Tablet Landscape (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-stats {
        right: 3rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }
}

/* Tablet Portrait (768px - 991px) */
@media (max-width: 991px) {

    /* Navigation */
    .navbar {
        z-index: 1001;
    }

    .glass-nav {
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    }

    .nav-container {
        flex-direction: row;
    }

    .mobile-menu-toggle {
        display: flex;
        order: 0;
    }

    .nav-logo {
        order: 1;
        flex: 1;
        display: flex;
        justify-content: flex-start;
        margin-left: var(--spacing-md);
    }

    .nav-right {
        order: 2;
    }

    .nav-links {
        display: none;
    }

    .mobile-sidebar {
        display: block;
    }

    /* Hero Section - keep desktop layout */
    .hero-section {
        min-height: 100vh;
        max-height: 100vh;
        height: 100vh;
        padding-top: 70px;
        overflow: hidden;
    }

    .hero-tagline {
        position: absolute;
        top: 45%;
        left: 1.5rem;
        transform: translateY(-50%);
        max-width: 55%;
    }

    .tagline-normal {
        font-size: clamp(1.2rem, 3vw, 1.8rem);
    }

    .tagline-script {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }

    .hero-stats {
        position: absolute;
        top: 45%;
        transform: translateY(-50%);
        right: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .stat-item {
        text-align: left;
        align-items: flex-start;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        max-width: 130px;
        text-align: left;
    }

    /* Partners Section */
    .section-title {
        font-size: clamp(2rem, 4vw, 3rem);
    }

    /* Services Section */
    .services-row {
        flex-wrap: wrap;
        justify-content: center;
    }

    .service-card {
        flex: 0 1 calc(50% - var(--spacing-md));
        max-width: 280px;
    }

    /* Contact Section */
    .contact-container {
        padding: 0 var(--spacing-md);
    }

    .contact-form {
        padding: var(--spacing-lg);
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        gap: var(--spacing-lg);
    }

    .footer-item {
        justify-content: center;
    }
}

/* Mobile Large (576px - 767px) */
@media (max-width: 767px) {

    /* Navigation */
    .navbar {
        padding: var(--spacing-xs) var(--spacing-md);
    }

    .nav-logo img {
        height: 32px;
    }

    .language-switcher {
        padding: 4px 8px;
        gap: 4px;
    }

    .lang-btn {
        font-size: 0.75rem;
        padding: 3px 6px;
    }

    /* Hero Section - 3 Part Layout: Top (Stats + Tagline Horizontal), Middle (Empty), Bottom (Speaker) */
    .hero-section {
        padding: 0;
        padding-top: 70px;
        height: 100vh;
        max-height: 100vh;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    /* Hero Tagline - Vertically Centered in Top Section, Left Side */
    .hero-tagline {
        position: absolute;
        top: 16.66vh;
        left: 2rem;
        transform: translateY(-50%);
        z-index: 3;
    }

    .tagline-card {
        padding: 1.2rem 1.8rem;
    }

    .tagline-normal {
        font-size: clamp(1.3rem, 4.5vw, 1.8rem);
        letter-spacing: 0.02em;
    }

    .tagline-script {
        font-size: clamp(2.8rem, 8vw, 3.8rem);
        margin-top: -0.2rem;
    }

    .brand-logo img {
        height: clamp(40px, 10vw, 60px);
    }

    /* Hero Stats - Vertically Centered in Top Section, Right Side */
    .hero-stats {
        position: absolute;
        top: 16.66vh;
        right: 2rem;
        transform: translateY(-50%);
        flex-direction: column;
        gap: 1.2rem;
        align-items: flex-end;
    }

    .stat-item {
        text-align: right;
        align-items: flex-end;
    }

    .stat-number {
        font-size: 2.2rem;
        padding-bottom: 0.15rem;
        border-bottom-width: 3px;
    }

    .stat-label {
        font-size: 0.75rem;
        max-width: 160px;
        text-align: right;
        line-height: 1.3;
        font-weight: 600;
    }

    /* Hero Speaker - Bottom Right, Larger */
    .hero-speaker {
        position: absolute;
        bottom: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: none;
        height: 48%;
        z-index: 2;
        transform: none;
    }

    .speaker-image {
        width: 100%;
        height: 100%;
        object-fit: contain;
        object-position: bottom right;
    }
    
    /* Hide event photos on mobile */
    .event-photo {
        display: none;
    }
    
    /* Adjust center glow for mobile */
    .center-glow {
        top: 35%;
        width: 250px;
        height: 250px;
    }

    /* Video Section */
    .video-section {
        min-height: 400px;
        padding: var(--spacing-lg) 0;
    }

    .video-carousel-container {
        min-height: 350px;
    }

    .video-carousel-wrapper,
    .video-carousel-track {
        min-height: 300px;
    }

    .video-card {
        width: 360px;
        max-width: 85vw;
    }

    .video-card.active {
        transform: translateX(0) scale(1);
    }

    .video-card.prev {
        transform: translateX(-55%) scale(0.6);
        opacity: 0.5;
    }

    .video-card.next {
        transform: translateX(55%) scale(0.6);
        opacity: 0.5;
    }

    .video-nav {
        width: 40px;
        height: 40px;
    }

    .video-nav svg {
        width: 20px;
        height: 20px;
    }

    .video-nav-prev {
        left: 10px;
    }

    .video-nav-next {
        right: 10px;
    }

    .video-pagination {
        gap: 8px;
    }

    .video-dot {
        width: 10px;
        height: 10px;
    }

    .video-dot.active {
        width: 20px;
    }

    .video-current-title {
        font-size: 1.2rem;
        padding: var(--spacing-sm);
    }

    /* Partners Section */
    .partners-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .partners-subtitle {
        font-size: 1rem;
    }

    .client-logo {
        height: 40px !important; /* Smaller on mobile */
        max-width: 120px !important;
    }

    /* Services Section */
    .services-main-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .brand-logo-description img {
        height: 50px;
    }

    .brand-description {
        font-size: 0.95rem;
        padding: 0;
    }

    .services-row {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-sm);
    }

    .service-card {
        flex: none;
        width: 100%;
        max-width: 320px;
        min-height: 70px;
    }

    .service-card span {
        font-size: 0.85rem;
    }

    /* Contact Section */
    .contact-section {
        padding: var(--spacing-xl) var(--spacing-md);
    }

    .contact-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .contact-subtitle {
        font-size: 0.95rem;
    }

    .contact-form {
        padding: var(--spacing-md);
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }

    .submit-btn {
        padding: 0.75rem var(--spacing-md);
        font-size: 0.95rem;
    }

    /* Footer */
    .footer {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .footer-container {
        gap: var(--spacing-md);
    }

    .footer-item {
        font-size: 0.8rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }

    .footer-social {
        gap: var(--spacing-sm);
    }

    .social-link {
        width: 32px;
        height: 32px;
    }

    .social-link svg {
        width: 16px;
        height: 16px;
    }

    .footer-logo img {
        height: 32px;
    }

    /* Zelij Banner */
    .zelij-banner {
        padding: var(--spacing-sm) 0;
        height: 100px;
    }

    .zelij-pattern {
        height: 100px;
        width: auto;
    }
}

/* Mobile Small (max-width: 575px) */
@media (max-width: 575px) {

    /* Global adjustments */
    html {
        font-size: 14px;
    }

    /* Hero - 3 Part Layout: Horizontal Top Content, Vertically Centered */
    .hero-section {
        padding-top: 60px;
        padding-left: 0;
        padding-right: 0;
    }

    /* Hero Tagline - Vertically Centered in Top Section, Left Side */
    .hero-tagline {
        top: 16.66vh;
        left: 1.5rem;
        transform: translateY(-50%);
    }

    .tagline-card {
        padding: 1rem 1.5rem;
    }

    .tagline-normal {
        font-size: clamp(1.1rem, 4vw, 1.5rem);
    }

    .tagline-script {
        font-size: clamp(2.4rem, 7vw, 3.2rem);
    }

    .brand-logo img {
        height: 35px;
    }

    /* Hero Stats - Vertically Centered in Top Section, Right Side */
    .hero-stats {
        top: 16.66vh;
        right: 1.5rem;
        transform: translateY(-50%);
        gap: 1rem;
        align-items: flex-end;
    }

    .stat-item {
        text-align: right;
        align-items: flex-end;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 0.65rem;
        max-width: 130px;
        text-align: right;
        font-weight: 600;
    }

    /* Hero Speaker - Bottom Right, Larger */
    .hero-speaker {
        bottom: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: none;
        height: 45%;
        transform: none;
    }
    
    .speaker-image {
        object-fit: contain;
        object-position: bottom right;
    }
    
    /* Adjust center glow */
    .center-glow {
        width: 200px;
        height: 200px;
        top: 35%;
    }

    /* Video Section */
    .video-card {
        width: 360px;
        max-width: 85vw;
    }

    .video-card.prev,
    .video-card.next {
        transform: translateX(0) scale(0.5);
        opacity: 0.4;
        filter: blur(3px) brightness(0.5);
    }

    .video-nav {
        width: 40px;
        height: 40px;
    }

    .video-nav svg {
        width: 20px;
        height: 20px;
    }

    .video-nav-prev {
        left: 10px;
    }

    .video-nav-next {
        right: 10px;
    }

    .video-current-title {
        font-size: 1rem;
    }

    /* Services */
    .services-main-section {
        padding: var(--spacing-lg) var(--spacing-sm);
    }

    .service-card {
        max-width: 100%;
        padding: var(--spacing-sm);
        width: 100%;
    }

    .service-card.expanded {
        max-width: 100%;
        min-height: 180px;
        padding: var(--spacing-md);
    }

    .service-card .service-title {
        font-size: 0.8rem;
    }

    .service-card .service-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }

    /* Contact */
    .form-group label {
        font-size: 0.8rem;
    }

    .form-input {
        padding: 0.65rem 0.85rem;
    }

    /* Footer */
    .footer-item span {
        font-size: 0.75rem;
    }

    .social-handle {
        display: none;
    }
}

/* Very Small Screens (max-width: 380px) */
@media (max-width: 380px) {
    .nav-logo img {
        height: 28px;
    }

    .video-card {
        width: 300px;
        max-width: 90vw;
    }

    /* Hero Tagline - Vertically Centered in Top Section, Left Side */
    .hero-tagline {
        left: 1rem;
    }

    /* Hero Stats - Vertically Centered in Top Section, Right Side */
    .hero-stats {
        right: 1rem;
    }

    /* Hero Speaker - Bottom Right, Larger */
    .hero-speaker {
        bottom: 0;
        right: 0;
        left: auto;
        width: 100%;
        max-width: none;
        height: 42%;
        opacity: 1;
        transform: none;
    }
    
    .speaker-image {
        object-fit: contain;
        object-position: bottom right;
    }

    .brand-logo img {
        height: 30px;
    }

    .stat-number {
        font-size: 1.6rem;
    }
    
    .stat-label {
        font-size: 0.6rem;
        max-width: 120px;
        text-align: right;
    }
    
    .tagline-normal {
        font-size: clamp(1rem, 3.5vw, 1.3rem);
    }
    
    .tagline-script {
        font-size: clamp(2.2rem, 6.5vw, 2.8rem);
    }

    .contact-form {
        padding: var(--spacing-sm);
    }
}

/* Landscape Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-section {
        min-height: auto;
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .hero-tagline {
        position: relative;
        margin-bottom: var(--spacing-md);
    }

    .hero-stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .video-section {
        min-height: auto;
    }

    .video-carousel-container {
        min-height: 250px;
    }
}

/* Print Styles */
@media print {

    .navbar,
    .video-section,
    .mobile-menu-toggle {
        display: none !important;
    }

    body {
        background: white;
        color: black;
    }

    .hero-section {
        min-height: auto;
        padding: 20px;
    }
}

/* High DPI / Retina displays */
@media (-webkit-min-device-pixel-ratio: 2),
(min-resolution: 192dpi) {

    .glass-nav,
    .glass-card {
        border-width: 0.5px;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }
}

/* Sticky Quote Button */
.sticky-quote-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-magenta-light));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    color: var(--text-primary);
    font-family: 'Cairo', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-shadow:
        0 8px 32px rgba(135, 44, 122, 0.4),
        0 2px 8px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease, bottom 0.3s ease;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* .sticky-quote-btn.above-footer — bottom value set dynamically via JS */

.sticky-quote-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 40px rgba(135, 44, 122, 0.5),
        0 4px 12px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, var(--accent-magenta-light), #d946ef);
}

.sticky-quote-btn:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .sticky-quote-btn {
        right: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .sticky-quote-btn {
        right: 1rem;
        padding: 0.6rem 1.2rem;
        font-size: 0.8rem;
    }
}

/* Mobile sidebar overlay */
.mobile-sidebar-overlay {
    display: none;
}

@media (max-width: 991px) {
    .mobile-sidebar-overlay {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: 1000;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s ease;
    }

    .mobile-sidebar-overlay.active {
        opacity: 1;
        pointer-events: auto;
    }
}

/* ===========================================
   COUNTER ANIMATION & SCROLL REVEAL STYLES
   Added: February 2026
   =========================================== */

/* Counter Animation for Stats */
.stat-number.counter {
    font-variant-numeric: tabular-nums;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number.counter.counting {
    color: var(--accent-magenta-light);
    text-shadow: 0 6px 25px rgba(217, 70, 239, 0.6);
    transform: scale(1.05);
}

.stat-number.counter.completed {
    animation: pulse-complete 0.6s ease-out;
}

@keyframes pulse-complete {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 4px 20px rgba(217, 70, 239, 0.3);
    }
    50% {
        transform: scale(1.1);
        text-shadow: 0 8px 30px rgba(217, 70, 239, 0.8);
    }
}

/* Scroll Reveal Base Styles */
.reveal-fade-in,
.reveal-fade-up,
.reveal-slide-left,
.reveal-scale {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Fade In Animation */
.reveal-fade-in {
    transform: scale(0.95);
    filter: blur(5px);
}

.reveal-fade-in.revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Fade Up Animation */
.reveal-fade-up {
    transform: translateY(60px);
}

.reveal-fade-up.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Slide Left Animation */
.reveal-slide-left {
    transform: translateX(60px);
}

.reveal-slide-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* Scale Animation */
.reveal-scale {
    transform: scale(0.85);
    filter: blur(3px);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
    filter: blur(0);
}

/* Responsive adjustments for animations */
@media (max-width: 768px) {
    .reveal-fade-up,
    .reveal-slide-left {
        transform: translateY(30px);
    }
    
    .reveal-slide-left.revealed {
        transform: translateX(0) translateY(0);
    }
    
    .reveal-scale {
        transform: scale(0.9);
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .reveal-fade-in,
    .reveal-fade-up,
    .reveal-slide-left,
    .reveal-scale {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }
    
    .stat-number.counter.counting,
    .stat-number.counter.completed {
        animation: none !important;
        transform: none !important;
        text-shadow: 0 4px 20px rgba(217, 70, 239, 0.3) !important;
    }
}

/* Smooth transitions when elements are revealed */
.revealed {
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
/* ===================================
   QUOTE REQUEST POPUP
   =================================== */

.quote-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.quote-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.quote-popup {
    position: relative;
    width: 100%;
    max-width: 700px;
    max-height: 90vh;
    overflow-y: auto;
    padding: 2.5rem;
    background: rgba(17, 17, 17, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.5),
        0 0 100px rgba(135, 44, 122, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transform: scale(0.9) translateY(30px);
    transition: transform 0.3s ease;
}

.quote-popup-overlay.active .quote-popup {
    transform: scale(1) translateY(0);
}

/* Custom scrollbar for popup */
.quote-popup::-webkit-scrollbar {
    width: 8px;
}

.quote-popup::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
}

.quote-popup::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--accent-magenta), var(--accent-magenta-light));
    border-radius: 10px;
}

.quote-popup::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--accent-magenta-light), var(--accent-pink));
}

.quote-popup-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--text-primary);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 1;
}

.quote-popup-close:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.quote-popup-close svg {
    width: 20px;
    height: 20px;
}

.quote-popup-title {
    font-family: 'Cairo', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, var(--accent-magenta-light), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.quote-popup-subtitle {
    font-family: 'Cairo', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.quote-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.quote-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 0;
}

.quote-form .form-group {
    margin-bottom: 0;
}

.quote-form select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='rgba(255,255,255,0.7)' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.9rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.quote-form select.form-input option {
    background: var(--bg-secondary);
    color: var(--text-primary);
    padding: 0.5rem;
}

/* Make button look like a button, not an anchor */
.sticky-quote-btn {
    appearance: none;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

/* Additional quote popup improvements */
.quote-popup-overlay {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

.quote-popup {
    margin: auto;
}

.quote-form .form-input,
.quote-form select.form-input {
    font-size: 16px; /* Prevents zoom on iOS */
}

/* Responsive adjustments for quote popup */
@media (max-width: 768px) {
    .quote-popup-overlay {
        padding: 1rem;
    }
    
    .quote-popup {
        padding: 2rem 1.5rem;
        max-height: 85vh;
    }
    
    .quote-popup-title {
        font-size: 1.5rem;
    }
    
    .quote-popup-subtitle {
        font-size: 0.875rem;
    }
    
    .quote-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .quote-popup {
        padding: 1.5rem 1rem;
        border-radius: var(--radius-lg);
    }
    
    .quote-popup-close {
        width: 36px;
        height: 36px;
        top: 1rem;
        right: 1rem;
    }
    
    .quote-popup-title {
        font-size: 1.25rem;
        margin-bottom: 0.35rem;
    }
    
    .quote-popup-subtitle {
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
}



/* ===================================
   IMAGE PLACEHOLDER & SHIMMER EFFECT
   =================================== */
.image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #1a1a1a 25%, #2a2a2a 50%, #1a1a1a 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.placeholder-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    animation: shimmer-slide 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

@keyframes shimmer-slide {
    0% { left: -100%; }
    100% { left: 100%; }
}


/* ===================================
   OPTIMIZED IMAGE CAROUSEL STYLES
   =================================== */
.image-active-container {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-display {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
}

.carousel-image.fade-in {
    animation: fadeIn 0.4s ease-in;
}

.image-loader {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(135, 44, 122, 0.1), rgba(88, 28, 135, 0.1));
    border-radius: var(--radius-lg);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--accent-magenta);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.image-error {
    color: var(--text-secondary);
    text-align: center;
    padding: var(--spacing-xl);
}
