/* Font Faces */
@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniLight.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniRegular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniMedium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniBold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniDBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniUBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}

@font-face {
    font-family: 'Ploni';
    src: url('fonts/PloniBlack.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/* CSS Variables */
:root {
    --primary: #3638BE;
    --accent: #99CDFF;
    --bg-light: #fafafa;
    --bg-white: #ffffff;
    --text-dark: #1a1a1a;
    --text-medium: #555555;
    --text-light: #888888;
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ploni', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--bg-light);
    overflow-x: hidden;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(54, 56, 190, 0.08);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(54, 56, 190, 0.12);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: var(--spacing-sm) var(--spacing-md);
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--spacing-md);
}

.nav-logo {
    justify-self: start;
}

.nav-links {
    justify-self: center;
}

.nav-cta-btn {
    justify-self: start;
    padding: 0.7rem 1.5rem;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-cta-btn:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(54, 56, 190, 0.3);
}

.nav-logo {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.nav-logo:hover {
    color: var(--accent);
}

.nav-logo:hover .nav-logo-img {
    transform: scale(1.1) rotate(-5deg);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: var(--spacing-md);
    align-items: center;
}

.nav-links a {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: var(--spacing-xs) 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width 0.3s ease;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 80vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-xl) var(--spacing-md);
    margin-top: 70px;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fafafa 0%, #f5f9ff 50%, #ffffff 100%);
    z-index: 0;
    will-change: transform;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(153, 205, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.hero-background::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(54, 56, 190, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -30px) scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        linear-gradient(180deg, rgba(255, 255, 255, 0.8) 0%, transparent 30%),
        linear-gradient(0deg, rgba(255, 255, 255, 0.6) 0%, transparent 30%);
    z-index: 1;
}

.hero-container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    align-items: center;
    animation: fadeInUp 0.8s ease-out;
}

.hero-image-wrapper {
    order: 1;
}

.hero-text-content {
    order: 2;
}

.hero-text-content {
    text-align: right;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(153, 205, 255, 0.2);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(153, 205, 255, 0.3);
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 900;
    color: var(--primary);
    margin-bottom: var(--spacing-sm);
    line-height: 1.1;
    letter-spacing: -1px;
    display: block;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-description {
    font-size: clamp(1.15rem, 2vw, 1.35rem);
    color: var(--text-medium);
    line-height: 1.6;
    margin-bottom: var(--spacing-md);
    max-width: 100%;
    animation: fadeInUp 0.8s ease-out 0.5s both;
    padding-left: var(--spacing-md);
}

.hero-buttons {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
    margin-top: var(--spacing-md);
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    flex-direction: row-reverse;
}

.hero-buttons .btn .arrow {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover .arrow {
    transform: translateX(3px);
}

.hero-image-wrapper {
    position: relative;
    animation: fadeInUp 0.8s ease-out 0.3s both;
    flex: 1.2;
    max-width: 600px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: stretch;
}

.hero-image {
    position: relative;
    overflow: visible;
    min-height: 500px;
    width: 100%;
    animation: floatImage 6s ease-in-out infinite;
}

.hero-image::before {
    display: none;
}

.hero-image::after {
    display: none;
}

@keyframes morphShape {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: rotate(5deg);
    }
    50% {
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
        transform: rotate(10deg);
    }
    75% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
        transform: rotate(5deg);
    }
}

@keyframes floatImage {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

.hero-image:hover {
    animation: floatImage 3s ease-in-out infinite;
}

.hero-image:hover::before {
    animation: morphShape 4s ease-in-out infinite;
}

.hero-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    display: block;
    object-fit: cover;
    position: relative;
    z-index: 0;
    border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    animation: morphImage 8s ease-in-out infinite;
    transition: border-radius 0.5s ease;
}

@keyframes morphImage {
    0%, 100% {
        border-radius: 50% 40% 30% 70% / 60% 30% 70% 40%;
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    50% {
        border-radius: 60% 50% 50% 50% / 50% 50% 50% 50%;
    }
    75% {
        border-radius: 40% 60% 50% 50% / 60% 40% 60% 40%;
    }
}

.hero-image:hover img {
    border-radius: 45% 55% 35% 65% / 55% 35% 65% 45%;
    animation: morphImage 4s ease-in-out infinite;
}

.image-overlay {
    display: none;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    pointer-events: none;
}

.floating-note {
    position: absolute;
    font-size: 2.5rem;
    color: rgba(153, 205, 255, 0.6);
    animation: floatNote 6s ease-in-out infinite;
}

.note-1 {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.note-2 {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.note-3 {
    top: 50%;
    right: 5%;
    animation-delay: 4s;
}

@keyframes floatNote {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0.6;
    }
    50% {
        transform: translate(20px, -20px) rotate(15deg);
        opacity: 0.9;
    }
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    color: var(--text-medium);
    font-size: 0.85rem;
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.scroll-indicator span {
    display: block;
    margin-bottom: 0.5rem;
    opacity: 0.7;
}

.scroll-arrow {
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    color: var(--accent);
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(54, 56, 190, 0.3);
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(54, 56, 190, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.btn-large {
    padding: 1.1rem 2.5rem;
    font-size: 1.1rem;
}

/* Section Styles */
section {
    padding: var(--spacing-xl) var(--spacing-md);
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    color: var(--primary);
    text-align: center;
    margin-bottom: var(--spacing-lg);
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Features Section */
.features {
    background: var(--bg-white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.feature-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: var(--border-radius);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(153, 205, 255, 0.2);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(54, 56, 190, 0.1);
    border-color: var(--accent);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto var(--spacing-sm);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(153, 205, 255, 0.1);
    border-radius: 50%;
    transition: var(--transition);
}

.feature-icon svg {
    width: 40px;
    height: 40px;
    stroke-width: 2.5;
}

.feature-card:hover .feature-icon {
    background: rgba(153, 205, 255, 0.2);
    transform: scale(1.1) rotate(5deg);
}

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.feature-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Experience Section */
.experience {
    background: linear-gradient(135deg, #3638BE 0%, #5558d8 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.experience-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    z-index: 0;
}

.experience .container {
    position: relative;
    z-index: 2;
}

.experience-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.experience-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.experience .section-title {
    color: white;
}

.experience .section-title::after {
    background: rgba(255, 255, 255, 0.5);
}

.experience-text {
    animation: fadeInUp 0.8s ease-out;
}

.experience-description {
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    color: rgba(255, 255, 255, 0.95);
    line-height: 2;
    max-width: 800px;
    margin: 0 auto var(--spacing-md);
}

.experience .section-title {
    margin-bottom: var(--spacing-md);
}

.experience-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.highlight-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: var(--spacing-md);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: right;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.highlight-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.highlight-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: var(--spacing-xs);
    opacity: 0.8;
}

.highlight-text h4 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    color: white;
    line-height: 1.3;
}

.highlight-text p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
}

/* Audience Section */
.audience {
    background: var(--bg-light);
}

.audience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
}

.audience-card {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(54, 56, 190, 0.08);
    transition: var(--transition);
    border: 2px solid transparent;
}

.audience-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(54, 56, 190, 0.15);
    border-color: var(--accent);
}

.audience-icon-wrapper {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--spacing-sm);
    background: linear-gradient(135deg, rgba(153, 205, 255, 0.2) 0%, rgba(54, 56, 190, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.audience-icon-wrapper svg {
    width: 50px;
    height: 50px;
    stroke-width: 2;
}

.audience-card:hover .audience-icon-wrapper {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.audience-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.audience-card p {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
}

/* Info Section */
.info {
    background: var(--bg-light);
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    max-width: 900px;
    margin: 0 auto;
}

.info-item {
    background: var(--bg-white);
    padding: var(--spacing-md);
    border-radius: 20px;
    text-align: center;
    border: 2px solid rgba(153, 205, 255, 0.2);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.info-item::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 4px;
    background: var(--accent);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.info-item:hover::before {
    transform: scaleX(1);
}

.info-item:hover {
    box-shadow: 0 15px 40px rgba(54, 56, 190, 0.15);
    border-color: var(--accent);
    transform: translateY(-5px);
}

.info-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto var(--spacing-sm);
    background: rgba(153, 205, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    transition: var(--transition);
}

.info-icon svg {
    width: 35px;
    height: 35px;
    stroke-width: 2;
}

.info-item:hover .info-icon {
    background: var(--accent);
    color: white;
    transform: scale(1.1);
}

.info-item label {
    display: block;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-value {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    background: linear-gradient(180deg, #f8f9ff 0%, #ffffff 50%, #f0f4ff 100%);
    position: relative;
    overflow: hidden;
    padding: var(--spacing-xl) 0;
}

.schedule-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.schedule-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(54, 56, 190, 0.05) 100%);
    clip-path: polygon(0 30%, 100% 0%, 100% 100%, 0% 100%);
}

.schedule .container {
    position: relative;
    z-index: 2;
    max-width: 1000px;
}

.schedule-header {
    text-align: center;
    margin-bottom: var(--spacing-xl);
    padding-bottom: var(--spacing-md);
    border-bottom: 2px solid rgba(54, 56, 190, 0.1);
}

.schedule-logo-wrapper {
    margin-bottom: var(--spacing-md);
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInDown 0.8s ease-out;
}

.schedule-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 15px rgba(54, 56, 190, 0.2));
    transition: var(--transition);
}

.schedule-logo-wrapper:hover .schedule-logo-img {
    transform: scale(1.05) rotate(5deg);
    filter: drop-shadow(0 6px 20px rgba(54, 56, 190, 0.3));
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.schedule-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-xs);
    letter-spacing: -0.02em;
}

.schedule-subtitle {
    font-size: 1.2rem;
    color: var(--text-medium);
    font-weight: 400;
    font-style: italic;
}

.schedule-timeline {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-lg);
    position: relative;
}

.schedule-timeline::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    opacity: 0.2;
    border-radius: 2px;
}

.schedule-day-group {
    position: relative;
    padding-right: var(--spacing-lg);
}

.schedule-day-group::before {
    content: '';
    position: absolute;
    right: -6px;
    top: 40px;
    width: 15px;
    height: 15px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--bg-white);
    box-shadow: 0 0 0 3px rgba(54, 56, 190, 0.1);
    z-index: 3;
}

.schedule-day-group-special::before {
    background: var(--accent);
    box-shadow: 0 0 0 3px rgba(153, 205, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.schedule-day-group-special .schedule-day-badge {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
}

.schedule-day-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.schedule-day-badge {
    background: linear-gradient(135deg, var(--primary) 0%, #5558d8 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 4px 15px rgba(54, 56, 190, 0.3);
    transform: translateX(-5px);
    transition: var(--transition);
}

.schedule-day-group:hover .schedule-day-badge {
    transform: translateX(0) scale(1.05);
    box-shadow: 0 6px 20px rgba(54, 56, 190, 0.4);
}

.schedule-day-date {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.05em;
}

.schedule-events {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-right: var(--spacing-md);
}

.schedule-event {
    background: var(--bg-white);
    border-radius: 20px;
    padding: var(--spacing-md);
    box-shadow: 0 2px 15px rgba(54, 56, 190, 0.08);
    border: 2px solid transparent;
    transition: var(--transition);
    display: flex;
    gap: var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.schedule-event::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--accent) 100%);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.schedule-event:hover {
    transform: translateX(-8px);
    box-shadow: 0 8px 30px rgba(54, 56, 190, 0.15);
    border-color: rgba(54, 56, 190, 0.1);
}

.schedule-event:hover::before {
    transform: scaleY(1);
}

.schedule-event-special {
    background: linear-gradient(135deg, rgba(54, 56, 190, 0.05) 0%, rgba(153, 205, 255, 0.1) 100%);
    border: 2px solid rgba(54, 56, 190, 0.2);
}

.schedule-event-special .schedule-event-time {
    background: rgba(153, 205, 255, 0.2);
    color: var(--primary);
}

.schedule-event-special::before {
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

.schedule-event-time {
    min-width: 120px;
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    padding: 0.5rem 1rem;
    background: rgba(54, 56, 190, 0.08);
    border-radius: 12px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: fit-content;
    letter-spacing: 0.05em;
}

.schedule-event-content {
    flex: 1;
}

.schedule-event-artists {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--spacing-xs);
    line-height: 1.4;
}

.schedule-event-desc {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin: 0;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

/* CTA Section */
.cta {
    background: var(--bg-light);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(153, 205, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(54, 56, 190, 0.1) 0%, transparent 50%);
    z-index: 0;
}

.cta .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: rgba(153, 205, 255, 0.2);
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(153, 205, 255, 0.3);
}

.cta-text {
    font-size: clamp(1.1rem, 1.8vw, 1.3rem);
    color: var(--text-medium);
    max-width: 700px;
    margin: 0 auto var(--spacing-md);
    line-height: 2;
}

.cta-buttons {
    margin-bottom: var(--spacing-lg);
}

.cta-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
}

.cta-buttons .btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-buttons .btn:hover svg {
    transform: translateX(-3px);
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-top: var(--spacing-lg);
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-medium);
    font-size: 0.9rem;
}

.cta-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    stroke-width: 3;
}

/* Footer */
.footer {
    background: var(--text-dark);
    color: white;
    padding: var(--spacing-md);
    text-align: center;
}

.footer-text {
    margin-bottom: var(--spacing-xs);
    opacity: 0.9;
}

.footer-contact {
    font-size: 0.9rem;
    opacity: 0.8;
}

.footer-contact a {
    color: var(--accent);
    text-decoration: none;
    transition: var(--transition);
}

.footer-contact a:hover {
    color: white;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero {
        padding: var(--spacing-lg) var(--spacing-md);
    }

    .nav-container {
        grid-template-columns: auto 1fr auto;
        gap: var(--spacing-sm);
        justify-content: space-between;
    }

    .nav-logo {
        justify-self: start;
        order: 0;
        font-size: 1.1rem;
    }

    .nav-logo-img {
        height: 35px;
    }

    .nav-links {
        justify-self: center;
        order: 1;
    }

    .nav-cta-btn {
        justify-self: center;
        display: none;
        order: 2;
    }

    .nav-toggle {
        justify-self: end;
        order: 2;
    }

    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: var(--spacing-md);
        text-align: center;
    }

    .hero-text-content {
        order: 1;
        text-align: center;
    }

    .hero-image-wrapper {
        order: 2;
    }

    .hero-container {
        padding-bottom: var(--spacing-xl);
    }

    .hero-title {
        align-items: center;
    }

    .hero-description {
        max-width: 100%;
        padding-left: 0;
    }

    .hero-image {
        max-width: 100%;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0deg);
    }

    .hero-buttons {
        justify-content: center;
        text-align: center;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .hero {
        padding-bottom: var(--spacing-xl);
    }

    .scroll-indicator {
        display: none;
    }

    .floating-note {
        display: none;
    }

    .experience-highlights {
        grid-template-columns: 1fr;
    }

    .audience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cta-features {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .cta-content {
        text-align: center;
    }

    .cta-badge {
        display: block;
        text-align: center;
    }

    .cta-text {
        text-align: center;
    }

    .cta-buttons {
        text-align: center;
        display: flex;
        justify-content: center;
    }

    .cta-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .cta-features {
        align-items: center;
        text-align: center;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: white;
        flex-direction: column;
        padding: var(--spacing-md);
        box-shadow: 0 4px 20px rgba(54, 56, 190, 0.1);
        gap: var(--spacing-sm);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: flex !important;
        z-index: 1001;
        position: relative;
        cursor: pointer;
        pointer-events: auto;
        background: transparent;
        border: none;
        padding: 8px;
        min-width: 40px;
        min-height: 40px;
        align-items: center;
        justify-content: center;
    }

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

@media (max-width: 640px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr;
    }

    .schedule-timeline::before {
        display: none;
    }

    .schedule-day-group {
        padding-right: 0;
    }

    .schedule-day-group::before {
        display: none;
    }

    .schedule-event {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .schedule-event-time {
        min-width: auto;
        width: 100%;
    }

    .schedule-event-artists {
        font-size: 1.2rem;
    }

    .nav-logo span {
        display: none;
    }

    .nav-logo-img {
        height: 32px;
    }

    .schedule-logo-img {
        height: 60px;
    }

    .audience-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll Animation Classes */
.scroll-animate {
    opacity: 0;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: opacity, transform;
}

/* Parallax Elements */
.parallax-element {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-slow {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.parallax-fast {
    will-change: transform;
    transition: transform 0.1s ease-out;
}

/* Fade In */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Slide In Right */
.slide-in-right {
    opacity: 0;
    transform: translateX(-50px);
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Slide In Left */
.slide-in-left {
    opacity: 0;
    transform: translateX(50px);
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

/* Scale In */
.scale-in {
    opacity: 0;
    transform: scale(0.8);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Rotate In */
.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}

/* Fade In Up */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Continuous scroll animations */
@keyframes floatContinuous {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.scroll-float {
    animation: floatContinuous 3s ease-in-out infinite;
}

/* Stagger Animation Delay */
.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }


