/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #8B0000;
    --primary-dark: #660000;
    --secondary-color: #D2691E;
    --accent-color: #D2B48C;
    --text-primary: #2F1B14;
    --text-secondary: #8B7355;
    --text-light: #A0522D;
    --bg-primary: #ffffff;
    --bg-secondary: #F5F5DC;
    --bg-dark: #2F1B14;
    --gradient-primary: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    --gradient-secondary: linear-gradient(135deg, #D2691E 0%, #F4A460 100%);
    --gradient-accent: linear-gradient(135deg, #D2B48C 0%, #DEB887 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    overflow-x: hidden;
    cursor: auto; /* Restore default cursor */
}

/* Custom Cursor - DISABLED TO FIX FORM INTERACTIONS */
.custom-cursor {
    display: none; /* Hide custom cursor to fix form interactions */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
}

.cursor-image {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-dark) 100%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: transform 0.1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: auto;
    z-index: 10000;
    box-shadow: 0 0 15px rgba(139, 0, 0, 0.4);
    will-change: transform;
    cursor: none;
}

.cursor-image::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 24px;
    height: 24px;
    background-image: url('Assets/blue man no bg.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transform: translate(-50%, -50%);
    z-index: 1;
    display: block;
}

/* Hide cursor on mobile */
@media (max-width: 768px) {
    .custom-cursor {
        display: none;
    }
    
    body {
        cursor: auto;
    }
}

/* Performance Optimizations - Smooth Animations */
* {
    /* Optimize all transitions for smoothness */
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth hover effects for interactive elements */
.faci-card,
.chair-card,
.ocvp-card,
.teamster-card,
.partner-showcase-card,
.btn-primary,
.btn-secondary,
.nav-menu a,
.hamburger,
.nav-logo {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Optimize GSAP animations */
.scroll-element {
    will-change: transform;
}

/* Smooth gradient animations */
.hero,
.register,
.oc-hero,
.memorial {
    animation-timing-function: ease-in-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Smooth page transitions */
body {
    transition: opacity 0.3s ease-in-out;
}

/* Smooth section animations */
section {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Smooth card animations */
.card,
.faci-card,
.chair-card,
.ocvp-card,
.teamster-card,
.partner-showcase-card {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, box-shadow;
}

/* Smooth button animations */
.btn-primary,
.btn-secondary,
.btn-partner {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform, background-color, box-shadow;
}

/* Smooth navigation animations */
.navbar {
    transition: all 0.3s ease-out;
}

.nav-menu a {
    transition: all 0.3s ease-out;
}

/* Smooth modal animations */
.modal {
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Smooth form animations */
.form-group input,
.form-group select,
.form-group textarea {
    transition: all 0.3s ease-out;
}

/* Smooth image animations */
img {
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    /* Show cursor on mobile with proper styling */
    .custom-cursor {
        display: block !important;
    }
    
    .cursor-image {
        width: 30px;
        height: 30px;
    }
    
    .cursor-image::before {
        width: 18px;
        height: 18px;
    }
    
    /* Use desktop animation speeds on mobile */
    * {
        transition-duration: initial !important;
        animation-duration: initial !important;
        transition-timing-function: initial !important;
    }
    
    /* Enable gradient animations on mobile */
    .hero,
    .register,
    .oc-hero,
    .memorial {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    /* Use desktop hover effects */
    .faci-card:hover,
    .chair-card:hover,
    .ocvp-card:hover,
    .teamster-card:hover,
    .partner-showcase-card:hover {
        transform: translateY(-5px) !important;
        transition: initial !important;
    }
    
    /* Use desktop button hover effects */
    .btn-primary:hover,
    .btn-secondary:hover {
        transform: translateY(-2px) !important;
        transition: initial !important;
    }
    
    /* Ensure registration section is always visible with no animations */
    .register {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    .registration-form {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        animation: none !important;
        transition: none !important;
    }
    
    /* Smooth scroll behavior */
    html {
        scroll-behavior: smooth;
    }
    
    /* Optimize GSAP for mobile */
    .scroll-element {
        will-change: transform;
    }
    
    /* Keep backdrop filters but optimize */
    .navbar {
        backdrop-filter: blur(5px);
        background: rgba(255, 255, 255, 0.95);
    }
    
    /* Use desktop modal animations */
    .modal {
        transition: initial !important;
    }
    
    /* Use desktop particle animations */
    .memorial-particles .particle {
        animation-duration: initial !important;
    }
    
    /* Ensure hero particles are visible and animated on mobile */
    .floating-particles {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .floating-particles .particle {
        animation: floatParticle 8s linear infinite !important;
        animation-duration: 8s !important;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Ensure all sections are visible */
    section {
        display: block !important;
        visibility: visible !important;
    }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: none;
    pointer-events: auto;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.1) rotate(5deg);
}

.nav-logo h2 {
    font-size: 1.8rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    pointer-events: auto;
    cursor: none;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: none;
    pointer-events: auto;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    margin: 3px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

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

#hero-canvas {
    width: 100%;
    height: 100%;
}

.floating-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: floatParticle 8s linear infinite;
    box-shadow: 0 0 10px var(--accent-color);
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    animation-duration: 12s;
}

.particle-2 {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 10s;
}

.particle-3 {
    top: 80%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 14s;
}

.particle-4 {
    top: 30%;
    left: 70%;
    animation-delay: 1s;
    animation-duration: 11s;
}

.particle-5 {
    top: 70%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 13s;
}

@keyframes floatParticle {
    0% {
        transform: translateY(0px) translateX(0px);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-text {
    color: white;
    position: relative;
    z-index: 3;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 1s ease-out forwards;
}

.title-line:nth-child(2) {
    animation-delay: 0.2s;
}

.title-line:nth-child(3) {
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.6s forwards;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 0.8s forwards;
}

.btn-primary, .btn-secondary {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.btn-primary i, .btn-secondary i {
    transition: transform 0.3s ease;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-secondary:hover i {
    transform: scale(1.2);
}

.btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(210, 105, 30, 0.3);
}

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

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

.btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(139, 0, 0, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.hero-visual {
    position: relative;
    height: 500px;
    perspective: 1000px;
    z-index: 3;
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 10%;
    width: 100px;
    height: 100px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.2;
    border-radius: 20px;
    transform: rotate(45deg);
    animation: floatShape1 6s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px var(--secondary-color);
}

.hero-visual::after {
    content: '';
    position: absolute;
    bottom: 30%;
    right: 15%;
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    opacity: 0.15;
    border-radius: 50%;
    animation: floatShape2 8s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes floatShape1 {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-20px); }
}

@keyframes floatShape2 {
    0%, 100% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

.hero-3d-elements {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}

.mc-awan-3d {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 450px;
    transform-style: preserve-3d;
    animation: mcAwanRotate 15s linear infinite;
}

.mc-awan-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform-style: preserve-3d;
    filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
    animation: mcAwanSubtleFloat 8s ease-in-out infinite;
    border-radius: 25px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 
        0 0 30px var(--secondary-color),
        inset 0 0 20px rgba(255, 255, 255, 0.1);
}

@keyframes mcAwanSubtleFloat {
    0%, 100% { 
        transform: translateY(0px) rotateY(0deg); 
    }
    25% { 
        transform: translateY(-10px) rotateY(2deg); 
    }
    50% { 
        transform: translateY(-5px) rotateY(0deg); 
    }
    75% { 
        transform: translateY(-15px) rotateY(-2deg); 
    }
}

.geometric-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 2;
}

.shape-triangle {
    position: absolute;
    top: 15%;
    right: 20%;
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 43px solid rgba(255, 255, 255, 0.2);
    animation: rotateShape 10s linear infinite;
    backdrop-filter: blur(5px);
    filter: drop-shadow(0 0 10px var(--secondary-color));
}

.shape-circle {
    position: absolute;
    bottom: 25%;
    left: 15%;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    opacity: 0.3;
    animation: pulseShape 6s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 20px var(--secondary-color);
}

.shape-square {
    position: absolute;
    top: 40%;
    left: 5%;
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, var(--primary-color), var(--primary-dark));
    opacity: 0.2;
    transform: rotate(45deg);
    animation: floatShape3 8s ease-in-out infinite;
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px var(--primary-color);
}

@keyframes rotateShape {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulseShape {
    0%, 100% { transform: scale(1); opacity: 0.6; }
    50% { transform: scale(1.2); opacity: 0.8; }
}

@keyframes floatShape3 {
    0%, 100% { transform: rotate(45deg) translateY(0px); }
    50% { transform: rotate(45deg) translateY(-15px); }
}

/* Pyramid */
.pyramid {
    top: 20%;
    left: 20%;
    width: 80px;
    height: 80px;
    animation-delay: 0s;
}

.pyramid-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.pyramid-face.front {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid rgba(139, 0, 0, 0.8);
    transform: translateZ(20px);
}

.pyramid-face.back {
    border-left: 40px solid transparent;
    border-right: 40px solid transparent;
    border-bottom: 80px solid rgba(139, 0, 0, 0.6);
    transform: translateZ(-20px) rotateY(180deg);
}

.pyramid-face.left {
    border-left: 40px solid rgba(139, 0, 0, 0.7);
    border-right: 40px solid transparent;
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    transform: rotateY(-90deg) translateZ(20px);
}

.pyramid-face.right {
    border-left: 40px solid transparent;
    border-right: 40px solid rgba(139, 0, 0, 0.7);
    border-bottom: 40px solid transparent;
    border-top: 40px solid transparent;
    transform: rotateY(90deg) translateZ(20px);
}

/* Octahedron */
.octahedron {
    top: 60%;
    right: 20%;
    width: 60px;
    height: 60px;
    animation-delay: 5s;
}

.octa-face {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
}

.octa-face.face-1 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.8);
    transform: translateZ(15px);
}

.octa-face.face-2 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.6);
    transform: translateZ(-15px) rotateY(180deg);
}

.octa-face.face-3 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.7);
    transform: rotateX(60deg) translateZ(15px);
}

.octa-face.face-4 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.5);
    transform: rotateX(-60deg) translateZ(15px);
}

.octa-face.face-5 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.6);
    transform: rotateY(90deg) translateZ(15px);
}

.octa-face.face-6 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-bottom: 30px solid rgba(210, 105, 30, 0.4);
    transform: rotateY(-90deg) translateZ(15px);
}

.octa-face.face-7 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(210, 105, 30, 0.5);
    transform: rotateX(60deg) rotateY(90deg) translateZ(15px);
}

.octa-face.face-8 {
    border-left: 30px solid transparent;
    border-right: 30px solid transparent;
    border-top: 30px solid rgba(255, 107, 53, 0.3);
    transform: rotateX(-60deg) rotateY(90deg) translateZ(15px);
}

/* Cylinder */
.cylinder {
    bottom: 20%;
    left: 30%;
    width: 50px;
    height: 80px;
    animation-delay: 10s;
}

.cylinder-top, .cylinder-bottom {
    position: absolute;
    width: 50px;
    height: 50px;
    background: rgba(210, 180, 140, 0.8);
    border-radius: 50%;
    transform: translateZ(40px);
}

.cylinder-bottom {
    transform: translateZ(0px);
}

.cylinder-side {
    position: absolute;
    width: 50px;
    height: 80px;
    background: linear-gradient(90deg, rgba(210, 180, 140, 0.8) 0%, rgba(210, 180, 140, 0.6) 100%);
    border-radius: 25px;
    transform: rotateY(90deg) translateZ(25px);
}

/* Torus */
.torus {
    top: 30%;
    right: 30%;
    width: 40px;
    height: 40px;
    animation-delay: 15s;
}

.torus-ring {
    position: absolute;
    width: 40px;
    height: 40px;
    border: 8px solid rgba(139, 0, 0, 0.8);
    border-radius: 50%;
    transform: rotateX(60deg);
    animation: torusRotate 8s linear infinite;
}


.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-arrow {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--secondary-color), var(--accent-color));
    position: relative;
    animation: bounce 2s infinite;
    border-radius: 2px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 10px var(--secondary-color);
}

.scroll-arrow::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: -6px;
    width: 14px;
    height: 14px;
    border-right: 2px solid var(--secondary-color);
    border-bottom: 2px solid var(--secondary-color);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 0 0 5px var(--secondary-color);
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -5px;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    opacity: 0.3;
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px var(--accent-color);
}

/* About Section */
.about {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* Venue Section */
.venue {
    padding: 60px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.venue-content {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
    width: 100%;
}

.venue-info {
    width: 100%;
    max-width: 800px;
    text-align: center;
}

.venue-details h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.venue-details p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.venue-features {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.25rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 107, 107, 0.2);
    transition: all 0.3s ease;
}

.feature:hover {
    transform: translateY(-2px);
    background: rgba(255, 107, 107, 0.1);
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.2);
}

.feature i {
    font-size: 1.2rem;
    color: var(--primary-color);
    width: 20px;
    text-align: center;
}

.feature span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.95rem;
}

.venue-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.venue-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.venue-btn.btn-primary {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.venue-btn.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}

.venue-btn.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.venue-btn.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(139, 0, 0, 0.3);
}


.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
}

.section-host {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.about-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

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

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.stat-item h4 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 500;
}

.about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    height: 400px;
}

.aiesec-3d-container {
    position: relative;
    width: 300px;
    height: 300px;
    perspective: 1200px;
    transform-style: preserve-3d;
}

.aiesec-3d-element {
    position: relative;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
    animation: aiesecRotate 15s infinite linear;
}

.aiesec-blue-man {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 50px auto;
    transform-style: preserve-3d;
    animation: aiesecFloat 6s ease-in-out infinite;
    background: #8B0000;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.aiesec-3d-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 20px rgba(3, 126, 243, 0.3));
    transform: translateZ(20px);
    animation: imagePulse 4s ease-in-out infinite;
    transition: all 0.3s ease;
}

/* Fallback for missing image */
.aiesec-blue-man::before {
    content: '🤵';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 8rem;
    color: var(--primary-color);
    z-index: 1;
    display: none;
}

.aiesec-blue-man:not(:has(img))::before {
    display: block;
}

.aiesec-blue-man:not(:has(img)) {
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.aiesec-blue-man:not(:has(img))::after {
    content: 'AIESEC';
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-weight: bold;
    font-size: 1.2rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.aiesec-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(3, 126, 243, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glowPulse 3s ease-in-out infinite;
    z-index: -1;
}

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

.shape {
    position: absolute;
    background: var(--gradient-primary);
    border-radius: 50%;
    opacity: 0.6;
    animation: shapeFloat 8s ease-in-out infinite;
}

.shape-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
    transform: translateZ(30px);
}

.shape-2 {
    width: 40px;
    height: 40px;
    top: 60%;
    right: 20%;
    animation-delay: 2s;
    transform: translateZ(20px);
}

.shape-3 {
    width: 80px;
    height: 80px;
    bottom: 20%;
    left: 50%;
    animation-delay: 4s;
    transform: translateZ(10px);
}

/* FACI Section */
.faci {
    padding: 6rem 0;
    background: white;
}

.faci-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

/* MCP Section */
.mcp-section {
    display: flex;
    justify-content: center;
    margin-bottom: 4rem;
}

.mcp-card {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow-xl);
    max-width: 400px;
    position: relative;
    overflow: hidden;
}

.mcp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-secondary);
}

.position-mcp {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
}

/* Corner Sections */
.corner-section {
    margin-bottom: 4rem;
    background: var(--bg-secondary);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.corner-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary-color);
}

.corner-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: var(--shadow-md);
}

.corner-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

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

/* Operations Corner - Max 3 per row */
.corner-section:nth-of-type(4) .corner-members {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.corner-section:nth-of-type(4) .corner-members .faci-card:nth-child(n+4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 250px;
}

/* External Relations Corner - Max 3 per row */
.corner-section:nth-of-type(5) .corner-members {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    max-width: 900px;
    margin: 0 auto;
}

.corner-section:nth-of-type(5) .corner-members .faci-card:nth-child(n+4) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 250px;
}

/* Corner Head Cards */
.corner-head-card {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #FF8C42 100%);
    color: white;
    position: relative;
    border: 3px solid var(--secondary-color);
    transform: scale(1.05);
    z-index: 2;
}

.corner-head-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.corner-head-badge {
    display: inline-block;
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    border: 2px solid #8B0000;
    box-shadow: 0 4px 8px rgba(139, 0, 0, 0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Corner Member Cards */
.corner-member-card {
    background: white;
    border: 2px solid var(--primary-color);
    transition: var(--transition);
    position: relative;
}

.corner-member-card:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.corner-member-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition);
}

.corner-member-card:hover::before {
    opacity: 1;
}

.position-mgmt {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0.5rem;
}

.position-corner {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

/* Special Role Badges */
.special-role-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    margin-top: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-sm);
}

.conference-role {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%);
    color: white;
    border: 2px solid #8B0000;
}

.agenda-role {
    background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%);
    color: white;
    border: 2px solid #D2691E;
}

/* Conference Manager Cards */
.conference-manager {
    background: linear-gradient(135deg, #8B0000 0%, #660000 100%) !important;
    color: white !important;
    border: 3px solid #8B0000 !important;
    box-shadow: 0 8px 25px rgba(139, 0, 0, 0.3) !important;
}

.conference-manager .position-mgmt,
.conference-manager .position-corner {
    color: rgba(255, 255, 255, 0.9) !important;
}

.conference-manager .corner-head-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.conference-manager:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 35px rgba(139, 0, 0, 0.4) !important;
}

/* Agenda Manager Cards */
.agenda-manager {
    background: linear-gradient(135deg, #D2691E 0%, #B8860B 100%) !important;
    color: white !important;
    border: 3px solid #D2691E !important;
    box-shadow: 0 8px 25px rgba(210, 105, 30, 0.3) !important;
}

.agenda-manager .position-mgmt,
.agenda-manager .position-corner {
    color: rgba(255, 255, 255, 0.9) !important;
}

.agenda-manager .corner-head-badge {
    background: rgba(255, 255, 255, 0.2) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.agenda-manager:hover {
    transform: scale(1.08) !important;
    box-shadow: 0 12px 35px rgba(210, 105, 30, 0.4) !important;
}

/* FACI Image Styling */
.faci-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: var(--transition);
}

.faci-image {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.faci-image:hover .faci-photo {
    transform: scale(1.1);
}


.faci-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.faci-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

/* Show placeholder when no image */
.faci-image:not(:has(img)) .faci-placeholder {
    display: flex;
}

.faci-image:has(img) .faci-placeholder {
    display: none;
}

.faci-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 2rem;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.faci-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.faci-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.faci-image {
    margin-bottom: 1.5rem;
}

.faci-placeholder {
    width: 120px;
    height: 120px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    color: white;
    font-size: 3rem;
    position: relative;
    overflow: hidden;
}

.faci-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.faci-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.faci-card p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.faci-description {
    margin-top: 1rem;
}

.faci-description p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-light);
}

/* Chair Section */
.chair {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.chair-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.chair-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.chair-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.chair-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mystery-person {
    position: relative;
    color: white;
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.mystery-text {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 40px;
    height: 40px;
    background: var(--gradient-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    animation: bounce 1s infinite;
}

.chair-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.chair-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.chair-description {
    margin-bottom: 2rem;
}

.chair-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.announcement-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: glow 2s infinite;
}

@keyframes shine {
    0% {
        transform: translateX(-100%) translateY(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) translateY(100%) rotate(45deg);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 5px rgba(0, 212, 170, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 212, 170, 0.8);
    }
}

/* OC Hero Section */
.oc-hero {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    padding: 8rem 0 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.oc-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.oc-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.oc-hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.oc-hero-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.oc-hero-particles .particle-1 {
    width: 20px;
    height: 20px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.oc-hero-particles .particle-2 {
    width: 15px;
    height: 15px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.oc-hero-particles .particle-3 {
    width: 25px;
    height: 25px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.oc-hero-particles .particle-4 {
    width: 18px;
    height: 18px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.oc-hero-particles .particle-5 {
    width: 22px;
    height: 22px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.oc-hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: white;
}

.oc-hero-title {
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8), 0 0 20px rgba(255, 255, 255, 0.3);
}

.oc-hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

.oc-hero-host {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: var(--accent-color);
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    font-style: italic;
}

.oc-hero-stats {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 3rem;
}

.oc-hero-stats .stat-item {
    text-align: center;
}

.oc-hero-stats .stat-item h3 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.8), 0 0 20px rgba(139, 0, 0, 0.5);
}

.oc-hero-stats .stat-item p {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.7);
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* Active Navigation State */
.nav-menu a.active {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--gradient-primary);
    border-radius: 1px;
}

/* OC Section */
.oc {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

/* OC Preview Section */
.oc-preview {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
}

.oc-preview-content {
    text-align: center;
    max-width: 600px;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.oc-preview-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 20px 20px 0 0;
}

.oc-preview-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
}

.oc-preview-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.oc-preview-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.oc-stats {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.oc-stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.oc-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
}

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

.oc-btn:hover::before {
    left: 100%;
}

.oc-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(139, 0, 0, 0.3);
}

.ocp-section {
    margin-bottom: 4rem;
    display: flex;
    justify-content: center;
}

.ocp-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 3rem;
    box-shadow: var(--shadow-lg);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    overflow: hidden;
    max-width: 800px;
    width: 100%;
}

.ocp-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: var(--gradient-primary);
}

.ocp-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ocp-placeholder {
    width: 200px;
    height: 200px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ocp-placeholder i {
    color: white;
    font-size: 4rem;
    animation: pulse 2s infinite;
}

.ocp-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.ocp-title {
    font-size: 1.2rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.ocp-description {
    margin-bottom: 2rem;
}

.ocp-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 1.1rem;
}

.ocvps-section {
    max-width: 1200px;
    margin: 0 auto;
}

.ocvps-header {
    text-align: center;
    margin-bottom: 3rem;
}

.ocvps-header h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.ocvps-header p {
    color: var(--text-secondary);
    font-size: 1.2rem;
}

.ocvp-function {
    background: white;
    border-radius: var(--border-radius);
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.ocvp-function::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.function-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-secondary);
}

.function-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.function-icon i {
    color: white;
    font-size: 1.5rem;
}

.function-header h4 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin: 0;
}

.ocvp-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    transition: var(--transition);
}

.ocvp-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.ocvp-image {
    flex-shrink: 0;
}

.ocvp-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.ocvp-photo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.ocvp-info h5 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ocvp-position {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    margin: 0;
}

.teamsters-section {
    margin-top: 2rem;
}

.teamsters-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
}

.teamsters-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.teamster-card {
    background: white;
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 2px solid transparent;
}

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

.teamster-image {
    margin-bottom: 1rem;
}

.teamster-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid white;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.teamster-photo:hover {
    transform: scale(1.1);
}

.teamster-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--gradient-accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    box-shadow: var(--shadow-sm);
}

.teamster-placeholder i {
    color: white;
    font-size: 1.5rem;
}

.teamster-card h6 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.teamster-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

.empty-teamster {
    opacity: 0.7;
    border-style: dashed;
}

.empty-teamster:hover {
    border-color: var(--accent-color);
}

/* Responsive Design for OC Section */
@media (max-width: 768px) {
    .oc-hero {
        padding: 6rem 0 4rem;
        min-height: 50vh;
    }
    
    .oc-hero-title {
        font-size: 2.5rem;
    }
    
    .oc-hero-subtitle {
        font-size: 1.2rem;
    }
    
    .oc-hero-stats {
        gap: 2rem;
        margin-top: 2rem;
    }
    
    .oc-hero-stats .stat-item h3 {
        font-size: 2rem;
    }
    
    .oc-hero-stats .stat-item p {
        font-size: 1rem;
    }
    
    /* OC Preview Mobile Styles */
    .oc-preview-content {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .oc-preview-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .oc-preview-content h3 {
        font-size: 1.5rem;
    }
    
    .oc-preview-content p {
        font-size: 1rem;
    }
    
    .oc-stats {
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .oc-btn {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .ocp-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .ocp-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .ocp-placeholder i {
        font-size: 3rem;
    }
    
    .ocvp-function {
        padding: 1.5rem;
    }
    
    .function-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .function-icon {
        width: 50px;
        height: 50px;
    }
    
    .function-icon i {
        font-size: 1.2rem;
    }
    
    .function-header h4 {
        font-size: 1.5rem;
    }
    
    .ocvp-card {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .ocvp-photo {
        width: 100px;
        height: 100px;
    }
    
    .teamsters-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 1rem;
    }
    
    .teamster-card {
        padding: 1rem;
    }
    
    .teamster-photo {
        width: 60px;
        height: 60px;
    }
    
    .teamster-placeholder {
        width: 60px;
        height: 60px;
    }
    
    .teamster-placeholder i {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .oc {
        padding: 4rem 0;
    }
    
    .ocp-card {
        padding: 1.5rem;
    }
    
    .ocvp-function {
        padding: 1rem;
    }
    
    .teamsters-grid {
        grid-template-columns: 1fr;
    }
    
    /* OC Preview Small Mobile Styles */
    .oc-preview-content {
        padding: 1.5rem 1rem;
        margin: 0 0.5rem;
    }
    
    .oc-preview-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
        margin-bottom: 1rem;
    }
    
    .oc-preview-content h3 {
        font-size: 1.3rem;
    }
    
    .oc-preview-content p {
        font-size: 0.9rem;
    }
    
    .oc-stats {
        gap: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .oc-btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Memorial Section */
.memorial {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    position: relative;
    overflow: hidden;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.memorial-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.memorial-particles .particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: memorialFloat 8s ease-in-out infinite;
}

.memorial-particles .particle:nth-child(1) {
    width: 4px;
    height: 4px;
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.memorial-particles .particle:nth-child(2) {
    width: 6px;
    height: 6px;
    top: 60%;
    left: 80%;
    animation-delay: 2s;
}

.memorial-particles .particle:nth-child(3) {
    width: 3px;
    height: 3px;
    top: 40%;
    left: 60%;
    animation-delay: 4s;
}

.memorial-particles .particle:nth-child(4) {
    width: 5px;
    height: 5px;
    top: 80%;
    left: 20%;
    animation-delay: 1s;
}

.memorial-particles .particle:nth-child(5) {
    width: 4px;
    height: 4px;
    top: 10%;
    left: 70%;
    animation-delay: 3s;
}

.memorial-particles .particle:nth-child(6) {
    width: 7px;
    height: 7px;
    top: 30%;
    left: 40%;
    animation-delay: 5s;
}

.memorial-particles .particle:nth-child(7) {
    width: 3px;
    height: 3px;
    top: 70%;
    left: 90%;
    animation-delay: 1.5s;
}

.memorial-particles .particle:nth-child(8) {
    width: 5px;
    height: 5px;
    top: 50%;
    left: 5%;
    animation-delay: 3.5s;
}

@keyframes memorialFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-30px) translateX(15px);
        opacity: 0.8;
    }
}

.memorial-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.memorial-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.memorial-image {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: var(--transition);
}

.memorial-image:hover {
    transform: scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.memorial-text {
    color: white;
    text-align: left;
}

.memorial-text h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.memorial-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.memorial-dates {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: var(--accent-color);
    font-style: italic;
}

.memorial-message {
    font-size: 1.2rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    max-width: 500px;
}

/* Responsive Design for Memorial Section */
@media (max-width: 768px) {
    .memorial {
        padding: 4rem 0;
        min-height: 50vh;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    .memorial-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .memorial-image {
        width: 200px;
        height: 200px;
    }
    
    .memorial-text h1 {
        font-size: 2.5rem;
    }
    
    .memorial-dates {
        font-size: 1.2rem;
    }
    
    .memorial-message {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .memorial {
        padding: 3rem 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
        background-size: 400% 400%;
        animation: gradientShift 15s ease infinite;
    }
    
    .memorial-image {
        width: 150px;
        height: 150px;
    }
    
    .memorial-text h1 {
        font-size: 2rem;
    }
    
    .memorial-text h2 {
        font-size: 1.2rem;
    }
}

/* Partners Section */
.partners {
    padding: 6rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    position: relative;
    overflow: hidden;
}

.partners::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(210, 105, 30, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 215, 0, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 60%, rgba(210, 105, 30, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

/* Partners Section Styles */

/* Partners Section - Clean Showcase Design */
.partners-showcase {
    margin-bottom: 4rem;
}

/* Tier Headers */
.tier-headers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 3rem;
}

/* Dynamic grid for visible tiers only */
.tier-headers:has(.tier-header[style*="display: none"]) {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.tier-header {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.08) 0%, rgba(248, 250, 252, 0.05) 100%);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.tier-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-header:hover::before {
    opacity: 1;
}

.tier-header.active::before {
    opacity: 1;
}

.tier-header.active {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.18) 0%, rgba(248, 250, 252, 0.12) 100%);
    border-color: var(--primary-color);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.12),
        0 8px 20px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.tier-header:hover {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.12) 0%, rgba(248, 250, 252, 0.08) 100%);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.1),
        0 8px 20px rgba(210, 105, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-color: rgba(210, 105, 30, 0.3);
}

.tier-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.tier-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.tier-header:hover .tier-icon {
    transform: scale(1.15) rotate(5deg);
}

.tier-header:hover .tier-icon::before {
    opacity: 1;
}

.tier-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.tier-header p {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Tier Colors */
.tier-header.platinum .tier-icon {
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
    color: var(--text-primary);
}

.tier-header.gold .tier-icon {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
}

.tier-header.silver .tier-icon {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
}

.tier-header.bronze .tier-icon {
    background: linear-gradient(135deg, var(--text-light) 0%, var(--text-secondary) 100%);
    color: white;
}

/* Partners Content */
.partners-content {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 3rem;
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

/* Partner Tier Content Spacing */
.platinum-content {
    margin-bottom: 4rem;
}

.gold-content {
    margin: 2rem 0;
}

.silver-content {
    margin-top: 4rem;
}

/* Tablet spacing adjustments */
@media (max-width: 1024px) and (min-width: 769px) {
    .platinum-content {
        margin-bottom: 3.5rem;
    }
    
    .gold-content {
        margin: 1.8rem 0;
    }
    
    .silver-content {
        margin-top: 3.5rem;
    }
}

.partner-tier-content {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.partner-tier-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Partner Showcase Grid */
.partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
}

/* Gold Partners - 2x2 Grid with Exact Silver Card Sizes */
.gold-content .partner-showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    align-items: start;
    animation: fadeInUp 0.8s ease-out;
    max-width: none;
    margin: 0;
}

/* Gold cards inherit exact same styling as default partner cards */
.gold-content .partner-showcase-card {
    /* All styling inherited from .partner-showcase-card */
}

/* Gold Partners Section - Inherit from parent container */
.gold-content {
    /* Inherit all spacing from .partners-content */
}


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

/* Partner Showcase Cards */
.partner-showcase-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.08),
        0 5px 15px rgba(0, 0, 0, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-showcase-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.08) 0%, 
        rgba(255, 215, 0, 0.05) 25%,
        rgba(210, 105, 30, 0.03) 50%,
        rgba(255, 215, 0, 0.02) 100%);
    opacity: 0;
    transition: all 0.4s ease;
    border-radius: 24px;
}

.partner-showcase-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, 
        transparent 30%, 
        rgba(255, 255, 255, 0.1) 50%, 
        transparent 70%);
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
    transition: all 0.6s ease;
}

.partner-showcase-card:hover::before {
    opacity: 1;
}

.partner-showcase-card:hover::after {
    transform: translateX(100%) translateY(100%) rotate(45deg);
}

.partner-showcase-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 30px 60px rgba(0, 0, 0, 0.12),
        0 15px 30px rgba(210, 105, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(210, 105, 30, 0.4);
}

.partner-logo-container {
    width: 90px;
    height: 90px;
    margin: 0 auto 1.8rem;
    border-radius: 20px;
    overflow: hidden;
    background: linear-gradient(145deg, #ffffff 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid rgba(210, 105, 30, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    box-shadow: 
        0 8px 20px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.partner-logo-container::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.3) 0%, 
        rgba(255, 215, 0, 0.2) 50%,
        rgba(210, 105, 30, 0.3) 100%);
    border-radius: 22px;
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.partner-showcase-card:hover .partner-logo-container {
    border-color: rgba(210, 105, 30, 0.4);
    transform: scale(1.08) rotate(2deg);
    box-shadow: 
        0 12px 25px rgba(210, 105, 30, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.partner-showcase-card:hover .partner-logo-container::before {
    opacity: 1;
}

.partner-logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 17px;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-logo-container img {
    transform: scale(1.05);
}

.partner-logo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    font-size: 0.9rem;
    text-align: center;
    border-radius: 14px;
    padding: 0.5rem;
}

.partner-details {
    text-align: center;
    margin-bottom: 1.8rem;
    position: relative;
    z-index: 2;
}

.partner-details h4 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    line-height: 1.3;
    background: linear-gradient(135deg, var(--text-primary) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-details h4 {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    transform: translateY(-1px);
}

.partner-details p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 1.2rem;
    font-weight: 500;
    line-height: 1.5;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-details p {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.partner-tier-indicator {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.7rem 1.3rem;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.partner-tier-indicator.gold {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
    border: 2px solid rgba(255, 215, 0, 0.3);
}

.partner-tier-indicator.silver {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
}

.partner-tier-indicator.bronze {
    background: linear-gradient(135deg, #CD7F32 0%, #B8860B 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(205, 127, 50, 0.3);
}

.partner-tier-indicator.platinum {
    background: linear-gradient(135deg, #E5E4E2 0%, #C0C0C0 100%);
    color: #333;
    box-shadow: 0 4px 15px rgba(229, 228, 226, 0.4);
}

.partner-hover-effect {
    position: absolute;
    top: 50%;
    right: 1.5rem;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    opacity: 0;
    transition: all 0.3s ease;
}

.partner-showcase-card:hover .partner-hover-effect {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

/* Empty Partner */
.empty-partner {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px dashed rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 500px;
    margin: 0 auto;
}

.empty-partner:hover {
    border-color: var(--primary-color);
    background: rgba(139, 0, 0, 0.05);
    transform: translateY(-3px);
}

/* Empty Partner Link */
.empty-partner-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: all 0.3s ease;
    cursor: pointer;
}

.empty-partner-link:hover {
    text-decoration: none;
    color: inherit;
}

.empty-partner-link:hover .empty-partner {
    border-color: var(--primary-color);
    background: rgba(139, 0, 0, 0.1);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(139, 0, 0, 0.2);
}

.empty-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.1) 0%, rgba(139, 0, 0, 0.05) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.empty-partner:hover .empty-icon {
    background: linear-gradient(135deg, rgba(139, 0, 0, 0.2) 0%, rgba(139, 0, 0, 0.1) 100%);
    transform: scale(1.1);
}

.empty-icon i {
    font-size: 2rem;
    color: var(--primary-color);
}

.empty-partner h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.empty-partner p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* No Partners Message */
.no-partners-message {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    opacity: 0.7;
    max-width: 500px;
    margin: 0 auto;
}

.no-partners-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--text-secondary);
}

.no-partners-message h4 {
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.no-partners-message p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.5;
    opacity: 0.8;
}

/* Partner CTA Button */
.partner-cta {
    margin-top: 2rem;
    text-align: center;
}

.btn-partner {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(210, 105, 30, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-partner:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(210, 105, 30, 0.4);
    color: white;
    text-decoration: none;
}

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

.btn-partner:hover::before {
    left: 100%;
}

.btn-partner i {
    font-size: 1.2rem;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 0;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text-primary);
}

.modal-body {
    padding: 1rem 2rem 2rem;
    text-align: center;
}

.modal-body p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.modal-footer {
    padding: 2rem 2rem 2rem;
    text-align: center;
    margin-top: 1rem;
}

.partner-modal-content .modal-footer {
    padding: 1.5rem 2rem 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    background: rgba(248, 250, 252, 0.5);
}

/* Partner Modal Styles */
.partner-modal-content {
    max-width: 750px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    padding-bottom: 2rem;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.95) 100%);
    backdrop-filter: blur(25px);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 28px;
    box-shadow: 
        0 35px 70px rgba(0, 0, 0, 0.15),
        0 15px 30px rgba(210, 105, 30, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    position: relative;
    overflow: hidden;
}

.partner-modal-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.02) 0%, 
        rgba(255, 215, 0, 0.01) 50%,
        rgba(210, 105, 30, 0.02) 100%);
    pointer-events: none;
}

.partner-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.8) 100%);
    border: 3px solid rgba(210, 105, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.8rem;
    color: var(--primary-color);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.partner-modal-icon::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    border-radius: 50%;
    background: linear-gradient(135deg, 
        rgba(210, 105, 30, 0.2) 0%, 
        rgba(255, 215, 0, 0.1) 50%,
        rgba(210, 105, 30, 0.2) 100%);
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.partner-modal-content:hover .partner-modal-icon::before {
    opacity: 1;
}

.partner-modal-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.partner-info {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
    align-items: start;
}

.partner-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

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

.detail-item:hover::before {
    left: 100%;
}

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

.detail-item i {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
    flex-shrink: 0;
}

.detail-item strong {
    display: block;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.detail-item p {
    color: var(--text-secondary);
    margin: 0;
}

.website-link, .social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.website-link:hover, .social-link:hover {
    color: white;
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 0, 0, 0.3);
    text-decoration: none;
}

.partner-description {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(255, 255, 255, 0.02) 100%);
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.partner-description::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
}

.partner-description h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.partner-description p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
    font-size: 1.05rem;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 2px solid rgba(239, 68, 68, 0.3);
    font-size: 1.2rem;
    color: #ef4444;
    cursor: pointer;
    padding: 0.75rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-close:hover {
    background: #ef4444;
    color: white;
    border-color: #ef4444;
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}

.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

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

/* Registration Section */
.register {
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
    padding: 6rem 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* Registration Background */
.register-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.register .container {
    position: relative;
    z-index: 10;
}

.register .section-header h2 {
    color: white;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.register .section-header p {
    color: rgba(255, 255, 255, 0.9);
}

/* Refund Policy Section */
.refund-policy-section {
    margin: 3rem 0;
    display: flex;
    justify-content: center;
}

.refund-policy-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    max-width: 800px;
    width: 100%;
}

.refund-policy-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.refund-policy-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin-bottom: 1rem;
    box-shadow: 0 8px 20px rgba(139, 0, 0, 0.3);
}

.refund-policy-icon i {
    font-size: 1.5rem;
    color: white;
}

.refund-policy-header h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.refund-policy-header p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.refund-policy-timeline {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.refund-policy-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    border-left: 5px solid;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.refund-policy-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.refund-policy-item:hover::before {
    opacity: 1;
}

.refund-policy-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.refund-policy-item.full-refund {
    border-left-color: #28a745;
    background: linear-gradient(135deg, #f8fff9 0%, #ffffff 100%);
}

.refund-policy-item.half-refund {
    border-left-color: #ffc107;
    background: linear-gradient(135deg, #fffdf7 0%, #ffffff 100%);
}

.refund-policy-item.quarter-refund {
    border-left-color: #fd7e14;
    background: linear-gradient(135deg, #fff8f3 0%, #ffffff 100%);
}

.refund-policy-item.no-refund {
    border-left-color: #dc3545;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.refund-percentage {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 120px;
}

.refund-percentage .percentage {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.refund-policy-item.full-refund .percentage {
    color: #28a745;
}

.refund-policy-item.half-refund .percentage {
    color: #ffc107;
}

.refund-policy-item.quarter-refund .percentage {
    color: #fd7e14;
}

.refund-policy-item.no-refund .percentage {
    color: #dc3545;
}

.refund-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.refund-dates {
    flex: 1;
    margin-left: 2rem;
}

.date-range {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-primary);
}

.date-range i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.refund-policy-note {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem;
    background: linear-gradient(135deg, #e3f2fd 0%, #f8f9fa 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
}

.refund-policy-note i {
    color: var(--primary-color);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.refund-policy-note p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design for Refund Policy */
@media (max-width: 768px) {
    .refund-policy-container {
        padding: 1.5rem;
        margin: 0 1rem;
    }
    
    .refund-policy-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .refund-dates {
        margin-left: 0;
    }
    
    .refund-percentage .percentage {
        font-size: 2rem;
    }
    
    .refund-policy-header h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .refund-policy-container {
        padding: 1rem;
    }
    
    .refund-policy-item {
        padding: 1rem;
    }
    
    .refund-percentage .percentage {
        font-size: 1.8rem;
    }
}

.registration-container {
    display: flex;
    justify-content: center;
    align-items: start;
}

.registration-form-container {
    max-width: 600px;
    width: 100%;
}

.registration-form {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1), 0 8px 25px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(255, 107, 53, 0.1);
    position: relative;
    overflow: hidden;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    animation: none !important;
    transition: none !important;
}

.registration-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 30px 30px 0 0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: inherit;
    background-color: #fafbfc;
    backdrop-filter: blur(10px);
    position: relative;
}

.form-group input:hover,
.form-group textarea:hover,
.form-group select:hover {
    border-color: rgba(255, 107, 53, 0.3);
    background-color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1), 0 8px 25px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

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

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

.form-row .form-group {
    margin-bottom: 0;
}

/* File Upload Styling */
.file-label {
    display: block;
    cursor: pointer;
    width: 100%;
}

.file-label input[type="file"] {
    display: none;
}

.file-input-display {
    width: 100%;
    padding: 1.5rem 1.25rem;
    border: 2px dashed rgba(255, 107, 53, 0.4);
    border-radius: 15px;
    background-color: rgba(255, 107, 53, 0.05);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    min-height: 120px;
    justify-content: center;
}

.file-input-display:hover {
    border-color: var(--primary-color);
    background-color: rgba(255, 107, 53, 0.1);
    transform: translateY(-2px);
}

.file-input-display i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.file-input-display span {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1rem;
}

.file-input-display small {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* File upload success state */
.file-input-display.uploaded {
    border-color: #22c55e !important;
    background-color: rgba(34, 197, 94, 0.1) !important;
    position: relative;
}

.file-input-display.uploaded::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    animation: successPulse 0.6s ease-out;
}

.file-input-display.uploaded i {
    color: #22c55e !important;
}

.file-input-display.uploaded span {
    color: #22c55e !important;
    font-weight: 700;
}

.file-input-display.uploaded small {
    color: #16a34a !important;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    50% { transform: scale(1.2); opacity: 1; }
    100% { transform: scale(1); opacity: 1; }
}

.file-label input[type="file"]:focus + .file-input-display {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
    background-color: rgba(255, 107, 53, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.95rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
    opacity: 0;
    position: absolute;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.terms-link {
    color: var(--primary-color);
    text-decoration: none;
}

.terms-link:hover {
    text-decoration: underline;
}

/* Compact File Input */
.file-input-display.compact {
    min-height: 90px;
    padding: 1rem;
    gap: 0.5rem;
}

.file-input-display.compact i {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}

.file-input-display.compact span {
    font-size: 0.9rem;
}

.file-input-display.compact small {
    font-size: 0.75rem;
}

.file-input-display.optional {
    border-color: rgba(156, 163, 175, 0.4);
    background-color: rgba(156, 163, 175, 0.05);
}

.file-input-display.optional:hover {
    border-color: rgba(156, 163, 175, 0.6);
    background-color: rgba(156, 163, 175, 0.1);
}

.file-input-display.optional i {
    color: #9ca3af;
}

/* Compact Indemnity Section */
.indemnity-section-compact {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 12px;
}

.indemnity-header-compact {
    text-align: center;
    margin-bottom: 1rem;
}

.indemnity-header-compact h4 {
    color: #10b981;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.indemnity-header-compact p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

.indemnity-actions-compact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.btn-download-compact {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    flex-shrink: 0;
}

.btn-download-compact:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

.btn-download-compact i {
    font-size: 0.9rem;
}

.indemnity-actions-compact .form-group {
    flex: 1;
    margin-bottom: 0;
}

/* Compact LC Password Section */
.lc-password-section-compact {
    margin: 0.75rem 0;
    padding: 0.75rem;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 10px;
}

.lc-password-section-compact label {
    color: #ef4444;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.lc-password-section-compact input {
    border-color: rgba(239, 68, 68, 0.3);
    background-color: rgba(239, 68, 68, 0.05);
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
}

.lc-password-section-compact input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}

        .password-hint {
            color: rgba(239, 68, 68, 0.8);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Workshop Interest Section */
        .workshop-section-compact {
            margin: 0.75rem 0;
            padding: 0.75rem;
            background: rgba(16, 185, 129, 0.05);
            border: 1px solid rgba(16, 185, 129, 0.2);
            border-radius: 10px;
        }

        .workshop-section-compact label {
            color: #10b981;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .workshop-section-compact select {
            border-color: rgba(16, 185, 129, 0.3);
            background-color: rgba(16, 185, 129, 0.05);
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .workshop-section-compact select:focus {
            border-color: #10b981;
            box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1);
        }

        .workshop-hint {
            color: rgba(16, 185, 129, 0.8);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Transportation Request Section */
        .transportation-section {
            margin: 0.75rem 0;
            padding: 0.75rem;
            background: rgba(139, 0, 0, 0.05);
            border: 1px solid rgba(139, 0, 0, 0.2);
            border-radius: 10px;
        }

        .transportation-section label {
            color: #8B0000;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 0.25rem;
        }

        .transportation-section select {
            border-color: rgba(139, 0, 0, 0.3);
            background-color: rgba(139, 0, 0, 0.05);
            padding: 0.75rem 1rem;
            font-size: 0.9rem;
        }

        .transportation-section select:focus {
            border-color: #8B0000;
            box-shadow: 0 0 0 3px rgba(139, 0, 0, 0.1);
        }

        .transportation-hint {
            color: rgba(139, 0, 0, 0.8);
            font-size: 0.75rem;
            font-style: italic;
            margin-top: 0.25rem;
            display: block;
        }

        /* Conference Fees Section */
        .fees-section {
            margin: 2rem 0;
            padding: 1.5rem;
            background: linear-gradient(135deg, #8B0000 0%, #A52A2A 50%, #8B0000 100%);
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(139, 0, 0, 0.3);
            border: 2px solid rgba(255, 255, 255, 0.1);
            position: relative;
            overflow: hidden;
        }

        .fees-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            animation: feesShimmer 3s ease-in-out infinite;
        }

        @keyframes feesShimmer {
            0%, 100% { transform: rotate(0deg) translate(-50%, -50%); }
            50% { transform: rotate(180deg) translate(-50%, -50%); }
        }

        .fees-container {
            display: flex;
            align-items: center;
            gap: 1.5rem;
            position: relative;
            z-index: 2;
        }

        .fees-icon {
            width: 60px;
            height: 60px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(10px);
            border: 2px solid rgba(255, 255, 255, 0.3);
        }

        .fees-icon i {
            font-size: 1.5rem;
            color: white;
        }

        .fees-content {
            flex: 1;
            color: white;
        }

        .fees-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin: 0 0 0.5rem 0;
            color: white;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .fees-amount {
            display: flex;
            align-items: baseline;
            gap: 0.5rem;
            margin-bottom: 0.5rem;
        }

        .fees-amount .currency {
            font-size: 1.2rem;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.9);
        }

        .fees-amount .amount {
            font-size: 2.5rem;
            font-weight: 900;
            color: white;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
            line-height: 1;
        }

        .fees-subtitle {
            font-size: 1rem;
            font-weight: 600;
            margin: 0 0 0.75rem 0;
            color: #FFD700;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
        }

        .fees-note {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            font-size: 0.9rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.9);
        }

        .fees-note i {
            color: #FFD700;
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.7; transform: scale(1.1); }
        }

        /* Conference Merchandise Section */
        .merchandise-section {
            margin: 2rem 0;
            padding: 2rem;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 20px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(10px);
        }

        /* Enhanced Shop Styling */
        .merchandise-item {
            background: rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 1.5rem;
            border: 2px solid rgba(255, 255, 255, 0.1);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
        }

        .merchandise-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .merchandise-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(255, 165, 0, 0.3);
            border-color: var(--accent-color);
        }

        .merchandise-item:hover::before {
            opacity: 1;
        }

        .merchandise-item.selected {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 2px rgba(255, 165, 0, 0.5);
        }

        .merchandise-item.selected::before {
            opacity: 1;
        }

        .merchandise-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .merchandise-title {
            font-size: 1.8rem;
            font-weight: 700;
            color: white;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .merchandise-title i {
            color: var(--accent-color);
        }

        .merchandise-subtitle {
            color: rgba(255, 255, 255, 0.8);
            font-size: 1rem;
            margin: 0;
        }

        .merchandise-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 2.5rem;
            margin-bottom: 2rem;
            padding: 1rem;
        }

        .merchandise-item {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border-radius: 25px;
            padding: 2rem;
            border: 2px solid rgba(255, 107, 107, 0.3);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            backdrop-filter: blur(15px);
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.2);
        }

        .merchandise-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, var(--primary-color) 0%, var(--accent-color) 50%, var(--primary-color) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .merchandise-item:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 60px rgba(139, 0, 0, 0.4);
            border-color: var(--accent-color);
        }

        .merchandise-item:hover::before {
            opacity: 1;
        }

        .merchandise-item.selected {
            border-color: var(--accent-color);
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.2) 0%, rgba(255, 107, 107, 0.1) 100%);
            box-shadow: 0 15px 50px rgba(255, 165, 0, 0.3);
        }

        .merchandise-item.selected::before {
            opacity: 1;
        }

        .merchandise-image {
            width: 100%;
            height: 250px;
            margin-bottom: 1.5rem;
            border-radius: 20px;
            overflow: hidden;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
            position: relative;
            box-shadow: 0 12px 35px rgba(139, 0, 0, 0.3);
            border: 2px solid rgba(255, 107, 107, 0.2);
        }

        .merchandise-image img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            transition: transform 0.3s ease;
        }

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

        .carousel-container {
            position: relative;
        }

        .carousel-images {
            position: relative;
            width: 100%;
            height: 100%;
        }

        .carousel-image {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            opacity: 0;
            background: rgba(255, 255, 255, 0.05);
            z-index: 1;
            transform: scale(0.95);
        }

        .carousel-image.active {
            opacity: 1;
            z-index: 2;
            transform: scale(1);
        }

        .merchandise-item:hover .carousel-image.active {
            transform: scale(1.05);
        }

        .carousel-nav {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 107, 107, 0.8);
            border: none;
            color: white;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            z-index: 10;
            opacity: 0;
            backdrop-filter: blur(10px);
        }

        .carousel-nav:hover {
            background: var(--accent-color);
            transform: translateY(-50%) scale(1.1);
        }

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

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

        .carousel-container:hover .carousel-nav {
            opacity: 1;
        }

        .carousel-dots {
            position: absolute;
            bottom: 12px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 8px;
            z-index: 10;
            background: rgba(0, 0, 0, 0.3);
            padding: 8px 12px;
            border-radius: 20px;
            backdrop-filter: blur(10px);
        }

        .carousel-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .carousel-dot.active {
            background: var(--accent-color);
            transform: scale(1.3);
            border-color: white;
            box-shadow: 0 0 10px rgba(255, 165, 0, 0.5);
        }

        .carousel-dot:hover {
            background: white;
            transform: scale(1.2);
        }



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

        .merchandise-name {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 0.75rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
            text-align: center;
        }

        .merchandise-description {
            font-size: 1rem;
            color: #E8E8E8;
            margin-bottom: 1.25rem;
            line-height: 1.5;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
            text-align: center;
        }

        .tshirt-size-selector {
            margin-bottom: 1rem;
            text-align: center;
        }

        .tshirt-size-selector label {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #FFD700;
            margin-bottom: 0.5rem;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.7);
        }

        .tshirt-size-selector .size-select {
            background: rgba(255, 255, 255, 0.1);
            border: 2px solid rgba(255, 215, 0, 0.3);
            border-radius: 12px;
            color: #FFFFFF;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 0.6rem 1rem;
            width: 120px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .tshirt-size-selector .size-select:hover {
            border-color: rgba(255, 215, 0, 0.6);
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-2px);
        }

        .tshirt-size-selector .size-select:focus {
            outline: none;
            border-color: #FFD700;
            box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.2);
        }

        .tshirt-size-selector .size-select.selected {
            border-color: #FFD700;
            background: rgba(255, 215, 0, 0.15);
            box-shadow: 0 0 0 2px rgba(255, 215, 0, 0.3);
        }

        .tshirt-size-selector .size-select option {
            background: #2a2a2a;
            color: #FFFFFF;
            padding: 0.5rem;
        }

        .merchandise-price {
            display: flex;
            align-items: baseline;
            justify-content: center;
            gap: 0.25rem;
            margin-bottom: 1.5rem;
        }

        .price-amount {
            font-size: 1.8rem;
            font-weight: 900;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .price-currency {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFA500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .quantity-controls {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 1.5rem;
            margin: 1.5rem 0;
        }

        .quantity-btn {
            width: 45px;
            height: 45px;
            border: 2px solid var(--accent-color);
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 165, 0, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
            color: var(--accent-color);
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.3rem;
            box-shadow: 0 4px 15px rgba(255, 165, 0, 0.2);
        }

        .quantity-btn:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, #FF8C00 100%);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
        }

        .quantity-btn:disabled {
            background: rgba(255, 255, 255, 0.2);
            color: rgba(255, 255, 255, 0.5);
            cursor: not-allowed;
            transform: none;
        }

        .quantity-input {
            width: 70px;
            height: 45px;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            border-radius: 15px;
            color: white;
            font-size: 1.2rem;
            font-weight: 700;
            text-align: center;
            outline: none;
            backdrop-filter: blur(10px);
        }

        .quantity-input:focus {
            border-color: var(--accent-color);
            box-shadow: 0 0 0 3px rgba(255, 165, 0, 0.2);
        }

        .item-total {
            text-align: center;
            padding: 0.75rem;
            background: rgba(139, 0, 0, 0.2);
            border-radius: 10px;
            border: 1px solid rgba(139, 0, 0, 0.3);
        }

        .item-total-amount {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .merchandise-summary {
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
            border-radius: 20px;
            padding: 2rem;
            border: 2px solid rgba(255, 107, 107, 0.4);
            backdrop-filter: blur(15px);
            box-shadow: 0 10px 40px rgba(139, 0, 0, 0.3);
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        }

        .cart-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #FFFFFF;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.8);
        }

        .cart-title i {
            color: var(--accent-color);
            filter: drop-shadow(0 2px 4px rgba(255, 165, 0, 0.6));
        }

        .cart-items-count {
            font-size: 0.9rem;
            color: #E8E8E8;
            background: linear-gradient(135deg, rgba(255, 107, 107, 0.3) 0%, rgba(255, 165, 0, 0.2) 100%);
            padding: 0.5rem 1rem;
            border-radius: 20px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
            border: 1px solid rgba(255, 107, 107, 0.3);
        }

        .cart-items {
            margin-bottom: 1.5rem;
            max-height: 200px;
            overflow-y: auto;
        }

        .empty-cart {
            text-align: center;
            padding: 2rem;
            color: #FFB3B3;
        }

        .empty-cart i {
            font-size: 3rem;
            margin-bottom: 1rem;
            opacity: 0.8;
            color: #FF9999;
        }

        .empty-cart p {
            font-size: 1.1rem;
            margin-bottom: 0.5rem;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        .empty-cart small {
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .cart-totals {
            border-top: 1px solid rgba(255, 255, 255, 0.2);
            padding-top: 1.5rem;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 0.75rem;
            padding: 0.5rem 0;
        }

        .total-label {
            font-size: 1rem;
            color: #E8E8E8;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.7);
        }

        .total-value {
            font-size: 1.1rem;
            font-weight: 600;
            color: #FFD700;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        }

        .grand-total-row {
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 1rem;
            margin-top: 1rem;
        }

        .grand-total-row .total-label {
            font-size: 1.2rem;
            font-weight: 700;
            color: #FFFFFF;
            text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
        }

        .grand-total-row .total-value {
            font-size: 1.8rem;
            font-weight: 900;
            color: var(--accent-color);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
        }

        .cart-item-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0.75rem;
            background: rgba(255, 255, 255, 0.05);
            border-radius: 8px;
            margin-bottom: 0.5rem;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .cart-item-name {
            font-size: 0.9rem;
            color: #FF6B6B;
            font-weight: 500;
            text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
        }

        .cart-item-price {
            font-size: 1rem;
            color: var(--accent-color);
            font-weight: 700;
        }

        /* Enhanced Multi-Step Form Styles */
    .form-navigation {
        margin: 2rem 0;
        padding: 1.5rem;
        background: radial-gradient(circle, var(--primary-color) 0%, var(--primary-dark) 100%);
        border-radius: 20px;
        border: 2px solid rgba(255, 107, 107, 0.3);
        backdrop-filter: blur(10px);
        box-shadow: 0 8px 32px rgba(139, 0, 0, 0.4);
    }

        .step-indicator {
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            max-width: 500px;
            margin: 0 auto;
            gap: 1rem;
        }

        .step {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 0.5rem;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }


        .step-number {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: var(--primary-color);
            border: 2px solid white;
            transition: all 0.3s ease;
            position: relative;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        }


        .step.active .step-number {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: white;
            transform: scale(1.1);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.6);
        }

        .step.completed .step-number {
            background: #4CAF50;
            border-color: #4CAF50;
            color: white;
            box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
        }

        .step.completed .step-number::after {
            content: '✓';
            position: absolute;
            font-size: 1rem;
            font-weight: 900;
        }

        .step-label {
            font-size: 1rem;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.8);
            text-align: center;
            transition: all 0.3s ease;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
        }

        .step.active .step-label {
            color: white;
            font-weight: 600;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
        }

        .step.completed .step-label {
            color: rgba(255, 255, 255, 0.9);
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
        }

        /* Step Progress Animation */
        @keyframes stepProgress {
            0% { transform: scale(1); }
            50% { transform: scale(1.1); }
            100% { transform: scale(1); }
        }

        .step.active .step-number {
            animation: stepProgress 0.6s ease-in-out;
        }

        /* Step Pulse Effect */
        @keyframes stepPulse {
            0% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.7); }
            70% { box-shadow: 0 0 0 10px rgba(255, 165, 0, 0); }
            100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
        }

        .step.active .step-number {
            animation: stepProgress 0.6s ease-in-out, stepPulse 2s infinite;
        }

        .form-step {
            display: none;
            animation: fadeIn 0.5s ease-in-out;
        }

        .form-step.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }

        .step-header {
            text-align: center;
            margin-bottom: 2rem;
        }

        .step-title {
            font-size: 1.5rem;
            font-weight: 600;
            color: #FF6B6B;
            margin-bottom: 0.5rem;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 0.5rem;
        }

        .step-title i {
            color: var(--accent-color);
        }

        .step-description {
            color: #CCCCCC;
            font-size: 1rem;
            margin: 0;
        }

        .form-navigation-buttons {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-top: 2rem;
            gap: 1rem;
            width: 100%;
        }

        .form-navigation-buttons .btn {
            height: 50px;
            min-height: 50px;
            max-height: 50px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            flex-shrink: 0;
            vertical-align: baseline;
            margin: 0;
            padding: 0;
        }

        .form-navigation-buttons .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            color: white;
            padding: 0.75rem 1.5rem;
            gap: 0.5rem;
            margin: 0;
        }

        .form-navigation-buttons .btn-primary:hover {
            background: linear-gradient(135deg, var(--accent-color) 0%, var(--secondary-color) 100%);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
        }

        .form-navigation-buttons .btn-secondary {
            background: linear-gradient(135deg, rgba(139, 0, 0, 0.8) 0%, rgba(139, 0, 0, 0.6) 100%);
            border: 2px solid rgba(255, 107, 107, 0.3);
            color: white;
            padding: 0.75rem 1.5rem;
            border-radius: 12px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            gap: 0.5rem;
            box-shadow: 0 4px 15px rgba(139, 0, 0, 0.3);
            margin: 0;
        }

        .form-navigation-buttons .btn-secondary:hover {
            background: linear-gradient(135deg, rgba(139, 0, 0, 1) 0%, rgba(139, 0, 0, 0.8) 100%);
            border-color: var(--accent-color);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(139, 0, 0, 0.4);
        }


/* Compact CV Upload Section */
.cv-upload-section-compact {
    margin: 1rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
}

.cv-upload-header-compact {
    text-align: center;
    margin-bottom: 1rem;
}

.cv-upload-header-compact h4 {
    color: var(--primary-color);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.cv-upload-header-compact p {
    color: rgba(0, 0, 0, 0.7);
    font-size: 0.85rem;
    margin: 0;
}

/* Indemnity Form Section (Old - Keep for reference) */
.indemnity-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(16, 185, 129, 0.05);
    border: 2px solid rgba(16, 185, 129, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.indemnity-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.indemnity-header h3 {
    color: #10b981;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(16, 185, 129, 0.3);
}

.indemnity-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.indemnity-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-download:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(16, 185, 129, 0.4);
    color: white;
    text-decoration: none;
}

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

.btn-download:hover::before {
    left: 100%;
}

.btn-download i {
    font-size: 1.2rem;
}

.indemnity-section .file-input-display {
    background-color: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
}

.indemnity-section .file-input-display:hover {
    background-color: rgba(16, 185, 129, 0.15);
    border-color: #10b981;
    transform: translateY(-2px);
}

.indemnity-section .file-input-display i {
    color: #10b981;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* LC Password Section */
.lc-password-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(239, 68, 68, 0.05);
    border: 2px solid rgba(239, 68, 68, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.lc-password-section label {
    color: #ef4444;
    font-weight: 700;
    font-size: 1.1rem;
}

.lc-password-section input {
    border-color: rgba(239, 68, 68, 0.3);
    background-color: rgba(239, 68, 68, 0.05);
}

.lc-password-section input:focus {
    border-color: #ef4444;
    box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.1);
}

.password-hint {
    color: rgba(239, 68, 68, 0.8);
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 0.5rem;
    display: block;
}

/* CV Upload Section */
.cv-upload-section {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: rgba(255, 107, 53, 0.05);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.cv-upload-header {
    text-align: center;
    margin-bottom: 1rem;
}

.cv-upload-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.3);
}

.cv-upload-description {
    color: rgba(0, 0, 0, 0.8);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 500px;
    margin: 0 auto;
    font-weight: 500;
}

.cv-upload-section .file-input-display {
    background-color: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.cv-upload-section .file-input-display:hover {
    background-color: rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.cv-upload-section .file-input-display i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Button Styles */
.btn {
    background: var(--gradient-primary);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary {
    background: var(--gradient-primary);
    width: 100%;
    max-width: 300px;
    margin: 2rem auto 0;
    display: block;
}

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

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

/* COD Payment Form Specific Styles */
.form-hint {
    display: block;
    margin-top: 0.25rem;
    font-size: 0.875rem;
    color: #6b7280;
    font-style: italic;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    gap: 0.75rem;
    margin-bottom: 0;
}

.checkbox-custom {
    position: relative;
    width: 20px;
    height: 20px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 4px;
    background-color: #fafbfc;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.checkbox-label input[type="checkbox"]:checked + .checkbox-custom::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    font-size: 0.9rem;
    line-height: 1.4;
    color: var(--text-primary);
}

.terms-section {
    margin: 1.5rem 0;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 10px;
}

/* Processing Overlay */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.processing-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

.processing-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.processing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step.active {
    background: rgba(255, 107, 53, 0.1);
    border-color: rgba(255, 107, 53, 0.3);
}

.step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.step i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.step.active i {
    background: var(--primary-color);
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.step.completed i {
    background: #22c55e;
    color: white;
}

.step span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.processing-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
}

.processing-warning i {
    color: #ef4444;
    animation: blink 1.5s ease-in-out infinite;
}

/* Progress Bar Styles */
.progress-container {
    margin: 2rem 0;
    text-align: center;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 0.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ff6b35, #f7931e);
    border-radius: 4px;
    width: 0%;
    transition: width 0.5s ease-in-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.progress-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Animations */

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

@keyframes slideOutRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); }
}

/* Processing Overlay Styles */
.processing-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease-in-out;
}

.processing-content {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    max-width: 500px;
    width: 90%;
    animation: slideUp 0.5s ease-out;
}

.processing-spinner {
    margin-bottom: 2rem;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 4px solid rgba(255, 107, 53, 0.2);
    border-left: 4px solid #ff6b35;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

.processing-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #8B0000 0%, #D2691E 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.processing-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.processing-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.processing-step.active {
    background: rgba(139, 0, 0, 0.1);
    border-color: rgba(139, 0, 0, 0.3);
}

.processing-step.completed {
    background: rgba(34, 197, 94, 0.1);
    border-color: rgba(34, 197, 94, 0.3);
}

.processing-step i {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.processing-step.active i {
    background: #8B0000;
    color: white;
    animation: pulse 2s ease-in-out infinite;
}

.processing-step.completed i {
    background: #22c55e;
    color: white;
}

/* Third step (completion indicator) - lighter styling */
.processing-step:nth-child(3) {
    background: rgba(210, 180, 140, 0.08) !important;
    border-color: rgba(210, 180, 140, 0.2) !important;
    opacity: 0.9;
}

.processing-step:nth-child(3).active {
    background: rgba(210, 180, 140, 0.15) !important;
    border-color: rgba(210, 180, 140, 0.3) !important;
}

.processing-step:nth-child(3).completed {
    background: rgba(210, 180, 140, 0.12) !important;
    border-color: rgba(210, 180, 140, 0.25) !important;
}

.processing-step:nth-child(3) i {
    background: rgba(210, 180, 140, 0.2) !important;
    color: rgba(210, 180, 140, 0.8) !important;
}

.processing-step:nth-child(3).active i {
    background: #D2B48C !important;
    color: white !important;
}

.processing-step:nth-child(3).completed i {
    background: #D2B48C !important;
    color: white !important;
}

.processing-step:nth-child(3) span {
    color: rgba(210, 180, 140, 0.9) !important;
}

.processing-step span {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

.processing-warning {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: 12px;
    color: #fca5a5;
    font-size: 0.9rem;
    font-weight: 500;
}

.processing-warning i {
    color: #ef4444;
    animation: blink 1.5s ease-in-out infinite;
}

/* Mobile responsive styles for processing overlay */
@media (max-width: 768px) {
    .processing-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.5rem;
    }
    
    .processing-content p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .processing-step {
        padding: 0.75rem;
    }
    
    .processing-step i {
    width: 20px;
    height: 20px;
        font-size: 0.8rem;
    }
    
    .processing-step span {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .processing-content {
        padding: 1.5rem 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.3rem;
    }
    
    .processing-content p {
        font-size: 0.9rem;
    }
    
    .spinner {
        width: 40px;
        height: 40px;
    }
}

/* Thank You Page Styles */
.thank-you-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 25%, var(--secondary-color) 50%, var(--accent-color) 75%, var(--primary-color) 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

.thank-you-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.thank-you-bg-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(247, 147, 30, 0.1) 50%, rgba(255, 210, 63, 0.1) 100%);
    animation: gradientShift 20s ease infinite;
}


.thank-you-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 8rem 2rem 2rem 2rem;
}

.success-icon-large {
    font-size: 6rem;
    color: #10b981;
    margin-bottom: 2rem;
    animation: bounce 2s ease-in-out infinite;
}

.thank-you-title {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f0f0f0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.thank-you-description {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-weight: 300;
}

.registration-details-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    text-align: left;
}

.registration-details-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.step:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.step-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: white;
    flex-shrink: 0;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.step-content p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
    margin: 0;
}

.payment-summary {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1rem;
    border: 1px solid rgba(255, 107, 107, 0.3);
    backdrop-filter: blur(10px);
}

.payment-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.payment-item:last-child {
    border-bottom: none;
}

.payment-item.total {
    border-top: 2px solid rgba(255, 107, 107, 0.5);
    padding-top: 1rem;
    margin-top: 0.5rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.payment-item span:first-child {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
}

.payment-item.merchandise span:first-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.amount {
    color: var(--accent-color);
    font-weight: 600;
    font-size: 1.1rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.total-amount {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.thank-you-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.thank-you-actions .btn-primary {
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
    color: white;
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.3);
}

.thank-you-actions .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(247, 147, 30, 0.4);
}

.thank-you-actions .btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.thank-you-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

@keyframes floatShape {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* Mobile Responsive for Thank You Page */
@media (max-width: 768px) {
    .thank-you-title {
        font-size: 2.5rem;
    }
    
    .thank-you-description {
        font-size: 1.1rem;
    }
    
    .success-icon-large {
        font-size: 4rem;
    }
    
    .registration-details-card {
        padding: 1.5rem;
    }
    
    .registration-details-card h3 {
        font-size: 1.5rem;
    }
    
    .step {
        padding: 1rem;
    }
    
    .step-icon {
        width: 40px;
        height: 40px;
    font-size: 1rem;
    }
    
    .step-content h4 {
        font-size: 1.1rem;
    }
    
    .thank-you-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .thank-you-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-section p {
    color: #9ca3af;
    margin-bottom: 0.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center;
    color: #9ca3af;
}

.footer-bottom p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.footer-bottom a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.footer-bottom a:hover {
    color: var(--secondary-color);
    text-shadow: 0 0 10px rgba(255, 107, 53, 0.5);
    transform: translateY(-1px);
}

.footer-bottom a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-color));
    transition: width 0.3s ease;
}

.footer-bottom a:hover::after {
    width: 100%;
}

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes shapeRotate {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }
    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes torusRotate {
    from {
        transform: rotateX(60deg) rotateY(0deg);
    }
    to {
        transform: rotateX(60deg) rotateY(360deg);
    }
}

@keyframes cardFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-20px) rotateY(10deg);
    }
}

@keyframes symbolFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(180deg);
    }
}

@keyframes aiesecRotate {
    from {
        transform: rotateY(0deg) rotateX(0deg);
    }
    to {
        transform: rotateY(360deg) rotateX(360deg);
    }
}

@keyframes aiesecFloat {
    0%, 100% {
        transform: translateY(0px) rotateY(0deg);
    }
    50% {
        transform: translateY(-15px) rotateY(10deg);
    }
}

@keyframes imagePulse {
    0%, 100% {
        transform: translateZ(20px) scale(1);
    }
    50% {
        transform: translateZ(30px) scale(1.05);
    }
}

@keyframes glowPulse {
    0%, 100% {
        opacity: 0.3;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}

@keyframes shapeFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(180deg);
    }
}

/* MC Awan 3D Animations */
@keyframes mcAwanRotate {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg) rotateX(10deg);
    }
    25% {
        transform: translate(-50%, -50%) rotateY(90deg) rotateX(5deg);
    }
    50% {
        transform: translate(-50%, -50%) rotateY(180deg) rotateX(10deg);
    }
    75% {
        transform: translate(-50%, -50%) rotateY(270deg) rotateX(5deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg) rotateX(10deg);
    }
}

@keyframes mcAwanFloat {
    0%, 100% {
        transform: translateY(0px) translateZ(0px);
    }
    25% {
        transform: translateY(-10px) translateZ(10px);
    }
    50% {
        transform: translateY(0px) translateZ(20px);
    }
    75% {
        transform: translateY(10px) translateZ(10px);
    }
}

/* Additional 3D Effects */
.hero-3d-elements:hover .aiesec-logo-3d {
    animation-play-state: paused;
    transform: translate(-50%, -50%) rotateY(0deg) scale(1.1);
}


/* Enhanced Scroll Effects */
.section-header {
    position: relative;
    overflow: hidden;
}

.section-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.2), transparent);
    animation: sectionShine 3s ease-in-out infinite;
}

@keyframes sectionShine {
    0% {
        left: -100%;
    }
    100% {
        left: 100%;
    }
}

/* 3D Button Effects */
.btn-primary, .btn-secondary {
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.btn-primary::before, .btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: inherit;
    border-radius: inherit;
    transform: translateZ(-5px);
    opacity: 0.3;
    transition: all 0.3s ease;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px) translateZ(5px);
}

.btn-primary:hover::before, .btn-secondary:hover::before {
    transform: translateZ(-10px);
    opacity: 0.5;
}

/* 3D Card Enhancements */
.faci-card, .chair-card {
    transform-style: preserve-3d;
    transition: all 0.3s ease;
}

.faci-card:hover, .chair-card:hover {
    transform: translateY(-10px) rotateX(5deg) rotateY(5deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero {
        height: 120vh;
        min-height: 120vh;
        padding: 2rem 0;
        padding-top: 90px; /* Account for fixed navbar */
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem 1rem;
        min-height: 100vh;
        justify-content: center;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3rem;
        line-height: 1.2;
        margin-bottom: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
        margin-bottom: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
        margin-top: 2rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 280px;
        padding: 1.5rem 2rem;
        font-size: 1.1rem;
    }
    
    .hero-visual {
        height: 400px;
        margin-top: 2rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        order: 2; /* Move visual below text */
    }
    
    .hero-text {
        order: 1; /* Move text above visual */
        margin-bottom: 1rem;
    }
    
    .mc-awan-3d {
        width: 300px;
        height: 300px;
        animation: mcAwanRotate 15s linear infinite !important;
        animation-duration: 15s !important;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-style: preserve-3d;
    }
    
    .mc-awan-image {
        animation: mcAwanSubtleFloat 8s ease-in-out infinite !important;
        animation-duration: 8s !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform-style: preserve-3d;
        filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 0 30px var(--secondary-color),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .registration-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .schedule-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        flex-direction: column !important;
        padding-left: 3rem;
    }
    
    .timeline-date {
        text-align: left !important;
        margin-bottom: 1rem;
    }
    
    .timeline-content::before {
        left: -30px !important;
        border-right-color: white !important;
        border-left-color: transparent !important;
    }
    
    .chair-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .chair-placeholder {
        width: 150px;
        height: 150px;
    }
    
    .mystery-person {
        font-size: 3rem;
    }
    
    .mcp-card {
        padding: 2rem;
        max-width: 350px;
    }
    
    .management-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .corners-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1rem;
    }
    
    .faci-image {
        width: 100px;
        height: 100px;
    }
    
    .faci-placeholder {
        font-size: 2.5rem;
    }
    
    .corner-section {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .corner-header {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }
    
    .corner-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    
    .corner-title {
        font-size: 1.5rem;
    }
    
    .corner-members {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .corner-head-card {
        transform: scale(1);
    }
}

@media (max-width: 480px) {
    .hero {
        height: 130vh;
        min-height: 130vh;
        padding: 1rem 0;
        padding-top: 90px; /* Account for fixed navbar */
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
        min-height: 110vh;
        gap: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        line-height: 1.1;
        margin-bottom: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        width: 100%;
        max-width: 250px;
        padding: 1.2rem 1.5rem;
        font-size: 1rem;
    }
    
    .hero-visual {
        height: 350px;
        margin-top: 1.5rem;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        order: 2; /* Move visual below text */
    }
    
    .hero-text {
        order: 1; /* Move text above visual */
        margin-bottom: 1rem;
    }
    
    .mc-awan-3d {
        width: 250px;
        height: 250px;
        animation: mcAwanRotate 15s linear infinite;
        position: absolute;
        top: 40%;
        left: 50%;
        transform: translate(-50%, -50%);
        transform-style: preserve-3d;
    }
    
    .mc-awan-image {
        animation: mcAwanSubtleFloat 8s ease-in-out infinite !important;
        animation-duration: 8s !important;
        width: 100%;
        height: 100%;
        object-fit: contain;
        transform-style: preserve-3d;
        filter: drop-shadow(0 15px 30px rgba(139, 0, 0, 0.3)) brightness(1.05) contrast(1.05);
        border-radius: 25px;
        background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
        backdrop-filter: blur(8px);
        border: 2px solid rgba(255, 255, 255, 0.2);
        box-shadow: 
            0 0 30px var(--secondary-color),
            inset 0 0 20px rgba(255, 255, 255, 0.1);
    }
    
    .indemnity-section {
        padding: 1rem;
    }
    
    .fees-amount {
        font-size: 1.5rem;
    }
    
    .upload-options {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .file-upload-label,
    .camera-btn {
        width: 100%;
        justify-content: center;
    }
    
    .dropdown-options {
        max-height: 150px;
    }
    
    .registration-form {
        padding: 1.5rem;
    }
    
    .form-group {
        margin-bottom: 1rem;
    }
    
    .indemnity-compact {
        flex-direction: column;
        align-items: stretch;
        gap: 0.5rem;
    }
    
    .indemnity-link-small,
    .file-upload-label-small {
        width: 100%;
        justify-content: center;
    }
    
    .form-navigation {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-nav,
    .btn-submit {
        width: 100%;
        justify-content: center;
    }
    
    /* Mobile responsive for partner modal */
    .partner-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .partner-modal-content {
        width: 95%;
        margin: 2% auto;
        max-height: 96vh;
    }
    
    .partner-modal-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }
    
    .detail-item {
        padding: 1.2rem;
    }
    
    .detail-item i {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
    
    .partner-description {
        padding: 1.5rem;
    }
    
    /* Mobile responsive for partners section */
    .tier-headers {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        margin-bottom: 2rem;
    }
    
    .tier-header {
        padding: 1rem 0.75rem;
    }
    
    .tier-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .tier-header h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .tier-header p {
        font-size: 0.75rem;
    }
    
    .partners-content {
        padding: 2rem 1.5rem;
        min-height: 300px;
    }
    
    /* Mobile partner tier spacing adjustments */
    .platinum-content {
        margin-bottom: 3rem;
    }
    
    .gold-content {
        margin: 1.5rem 0;
    }
    
    .silver-content {
        margin-top: 3rem;
    }
    
    .partner-showcase-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    
    
    .partner-showcase-card {
        padding: 1.5rem;
    }
    
    .partner-logo-container {
        width: 70px;
        height: 70px;
        margin-bottom: 1rem;
    }
    
    .partner-details h4 {
        font-size: 1.2rem;
    }
    
    .partner-details p {
        font-size: 0.9rem;
    }
    
    .partner-tier-indicator {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .partner-hover-effect {
        width: 35px;
        height: 35px;
        right: 1rem;
        font-size: 0.9rem;
    }
    
    .empty-partner {
        padding: 3rem 1.5rem;
    }
    
    .empty-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1.5rem;
    }
    
    .empty-icon i {
        font-size: 1.5rem;
    }
    
    .empty-partner h4 {
        font-size: 1.3rem;
    }
    
    .empty-partner p {
        font-size: 0.9rem;
    }
    
    /* Mobile responsive for venue section */
    .venue {
        padding: 4rem 0;
    }
    
    .venue-content {
        margin-top: 1.5rem;
    }
    
    .venue-info {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .venue-details h3 {
        font-size: 1.8rem;
    }
    
    .venue-details p {
        font-size: 1rem;
    }
    
    .venue-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .feature {
        padding: 0.75rem 1rem;
        width: 100%;
        max-width: 250px;
    }
    
    .venue-actions {
        flex-direction: column;
        gap: 0.75rem;
        align-items: center;
    }
    
    .venue-btn {
        justify-content: center;
        width: 100%;
        max-width: 250px;
    }
    

    /* Mobile responsive for registration form */
    .registration-container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .registration-form {
        padding: 1.5rem 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .form-group {
        margin-bottom: 0.75rem;
    }

    .indemnity-section-compact {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    .indemnity-header-compact h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .indemnity-header-compact p {
        font-size: 0.8rem;
    }

    .indemnity-actions-compact {
        flex-direction: column;
        gap: 0.75rem;
    }

    .btn-download-compact {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
        align-self: center;
    }

    .lc-password-section-compact {
        padding: 0.5rem;
        margin: 0.5rem 0;
    }

    .lc-password-section-compact label {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .lc-password-section-compact input {
        padding: 0.6rem 0.8rem;
        font-size: 0.85rem;
    }

        .password-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .workshop-section-compact {
            padding: 0.5rem;
            margin: 0.5rem 0;
        }

        .workshop-section-compact label {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .workshop-section-compact select {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
        }

        .workshop-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .transportation-section {
            padding: 0.5rem;
            margin: 0.5rem 0;
        }

        .transportation-section label {
            font-size: 0.85rem;
            margin-bottom: 0.25rem;
        }

        .transportation-section select {
            padding: 0.6rem 0.8rem;
            font-size: 0.85rem;
        }

        .transportation-hint {
            font-size: 0.7rem;
            margin-top: 0.25rem;
        }

        .fees-section {
            margin: 1.5rem 0;
            padding: 1rem;
        }

        .fees-container {
            flex-direction: column;
            text-align: center;
            gap: 1rem;
        }

        .fees-icon {
            width: 50px;
            height: 50px;
        }

        .fees-icon i {
            font-size: 1.2rem;
        }

        .fees-title {
            font-size: 1.1rem;
        }

        .fees-amount .amount {
            font-size: 2rem;
        }

        .fees-amount .currency {
            font-size: 1rem;
        }

        .fees-subtitle {
            font-size: 0.9rem;
        }

        .fees-note {
            font-size: 0.8rem;
        }

        .merchandise-section {
            margin: 1.5rem 0;
            padding: 1rem;
        }

        .merchandise-title {
            font-size: 1.5rem;
            flex-direction: column;
            gap: 0.25rem;
        }

        .merchandise-grid {
            grid-template-columns: 1fr;
            gap: 1rem;
        }

        .merchandise-item {
            padding: 1rem;
        }

        .merchandise-image {
            height: 200px;
        }

        .merchandise-name {
            font-size: 1.1rem;
        }

        .merchandise-price {
            font-size: 1rem;
        }

        .quantity-select {
            width: 70px;
            padding: 0.4rem 0.8rem;
            font-size: 0.85rem;
        }

        .total-label, .grand-total-label {
            font-size: 1rem;
        }

        .total-amount {
            font-size: 1.2rem;
        }

        .grand-total-label {
            font-size: 1.1rem;
        }

        .grand-total-amount {
            font-size: 1.5rem;
        }

        .form-navigation {
            margin: 1.5rem 0;
            padding: 1.5rem;
        }

        .step-indicator {
            max-width: 300px;
        }

        .step:not(:last-child)::after {
            width: 1rem;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .step-number {
            width: 40px;
            height: 40px;
            font-size: 1rem;
            border-width: 2px;
        }

        .step.active .step-number {
            transform: scale(1.05);
            box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4), 0 0 0 3px rgba(255, 165, 0, 0.2);
        }

        .step-label {
            font-size: 0.85rem;
        }

        .step-title {
            font-size: 1.5rem;
            flex-direction: column;
            gap: 0.25rem;
        }

        .step-description {
            font-size: 0.9rem;
        }

        .form-navigation-buttons {
            flex-direction: column;
            gap: 1rem;
        }

        .btn-secondary {
            width: 100%;
            justify-content: center;
        }

        .merchandise-item {
            padding: 1rem;
        }

        .merchandise-image {
            height: 200px;
        }

        .carousel-dots {
            bottom: 6px;
        }

        .carousel-dot {
            width: 6px;
            height: 6px;
        }

        .merchandise-name {
            font-size: 1.1rem;
        }

        .merchandise-description {
            font-size: 0.8rem;
        }

        .price-amount {
            font-size: 1.5rem;
        }

        .quantity-btn {
            width: 35px;
            height: 35px;
            font-size: 1rem;
        }

        .quantity-input {
            width: 50px;
            height: 35px;
            font-size: 1rem;
        }

        .cart-header {
            flex-direction: column;
            gap: 0.5rem;
            text-align: center;
        }

        .cart-title {
            font-size: 1.2rem;
        }

        .cart-items-count {
            font-size: 0.8rem;
        }

    .cv-upload-section-compact {
        padding: 0.75rem;
        margin: 0.75rem 0;
    }

    .cv-upload-header-compact h4 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }

    .cv-upload-header-compact p {
        font-size: 0.8rem;
    }

    .file-input-display.compact {
        min-height: 80px;
        padding: 0.75rem;
    }

    .file-input-display.compact i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }

    .file-input-display.compact span {
        font-size: 0.85rem;
    }

    .file-input-display {
        min-height: 80px;
        padding: 1rem;
    }

    .file-input-display i {
        font-size: 1.25rem;
    }

    .file-input-display span {
        font-size: 0.85rem;
    }

    .file-input-display small {
        font-size: 0.8rem;
    }

    .registration-form {
        padding: 1.5rem;
    }

    .processing-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }
    
    .processing-content h3 {
        font-size: 1.5rem;
    }
    
    .processing-content p {
        font-size: 1rem;
    }
    
    .spinner {
        width: 50px;
        height: 50px;
    }
    
    .step {
        padding: 0.75rem;
    }
    
    .step i {
        width: 20px;
        height: 20px;
        font-size: 0.8rem;
    }
    
    .step span {
        font-size: 0.9rem;
    }
}

/* Custom Cursor */
* {
    cursor: url('assets/blue man no bg.png'), auto;
}

button, 
a, 
input[type="submit"], 
.btn, 
.btn-submit,
.file-upload-label,
.indemnity-link {
    cursor: url('assets/blue man no bg.png'), pointer;
}

input, 
select, 
textarea {
    cursor: url('assets/blue man no bg.png'), text;
}
