:root {
    --default-font: Roboto, system-ui, -apple-system, Segoe UI, Roboto, Helvetica Neue, Arial, Noto Sans, Liberation Sans, sans-serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol, Noto Color Emoji;
    --heading-font: Rubik;
    --nav-font: Kanit;
    --background-color: #ffffff;
    --default-color: #40372e;
    --heading-color: #281a0c;
    --accent-color: #f87500;
    --surface-color: #ffffff;
    --contrast-color: #ffffff;
    --nav-color: #ffffff;
    --nav-hover-color: #f87500;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #40372e;
    --nav-dropdown-hover-color: #f87500;
    scroll-behavior: smooth;
}

body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

    a:hover {
        color: color-mix(in srgb, var(--accent-color), transparent 25%);
        text-decoration: none;
    }

h1, h2, h3, h4, h5, h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
}

section, .section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}

@media (max-width: 1199px) {
    section, .section {
        scroll-margin-top: 66px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}

    .section-title h2 {
        font-size: 32px;
        font-weight: 700;
        margin-bottom: 20px;
        padding-bottom: 20px;
        position: relative;
    }

        .section-title h2:before {
            content: '';
            position: absolute;
            display: block;
            width: 160px;
            height: 1px;
            background: color-mix(in srgb, var(--default-color), transparent 60%);
            left: 0;
            right: 0;
            bottom: 1px;
            margin: auto;
        }

        .section-title h2::after {
            content: '';
            position: absolute;
            display: block;
            width: 60px;
            height: 3px;
            background: var(--accent-color);
            left: 0;
            right: 0;
            bottom: 0;
            margin: auto;
        }

    .section-title p {
        margin-bottom: 0;
    }

.page-title {
    color: var(--default-color);
    background-color: var(--background-color);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 160px 0 80px 0;
    text-align: center;
    position: relative;
}

    .page-title:before {
        content: "";
        background-color: color-mix(in srgb, var(--background-color), transparent 30%);
        position: absolute;
        inset: 0;
    }

    .page-title h1 {
        font-size: 42px;
        font-weight: 700;
        margin-bottom: 10px;
    }

    .page-title .breadcrumbs ol {
        display: flex;
        flex-wrap: wrap;
        list-style: none;
        justify-content: center;
        padding: 0;
        margin: 0;
        font-size: 16px;
        font-weight: 400;
    }

        .page-title .breadcrumbs ol li + li {
            padding-left: 10px;
        }

            .page-title .breadcrumbs ol li + li::before {
                content: "/";
                display: inline-block;
                padding-right: 10px;
                color: color-mix(in srgb, var(--default-color), transparent 50%);
            }

.widgets-container {
    background-color: var(--surface-color);
    padding: 30px;
    margin: 60px 0 30px 0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.widget-title {
    color: var(--heading-color);
    font-size: 20px;
    font-weight: 700;
    padding: 0;
    margin: 0 0 20px 0;
}

.widget-item {
    margin-bottom: 40px;
}

    .widget-item:last-child {
        margin-bottom: 0;
    }

 [data-colorpreset="cp-light-background"], .light-background {
    --background-color: #fffbf7;
    --surface-color: #ffffff;
}

[data-colorpreset="cp-dark-background"], .dark-background {
    --background-color: #100901;
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --surface-color: #252525;
    --contrast-color: #ffffff;
}

 .header {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
}

.header .logo {
    line-height: 1;
}

    .header .logo img {
        max-height: 36px;
        margin-right: 8px;
    }

    .header .logo h1 {
        font-size: 30px;
        margin: 0;
        font-weight: 700;
        color: var(--heading-color);
    }

.header .btn-getstarted, .header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 8px 25px;
    margin: 0 0 0 30px;
    border-radius: 50px;
    transition: 0.3s;
}

    .header .btn-getstarted:hover, .header .btn-getstarted:focus:hover {
        color: var(--contrast-color);
        background: color-mix(in srgb, var(--accent-color), transparent 15%);
    }

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }

    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 15px;
    }

    .header .navmenu {
        order: 3;
    }
}

.scrolled .header {
    box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    --nav-color: #ffffff;
    --nav-hover-color: #f87500;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #40372e;
    --nav-dropdown-hover-color: #f87500;
}

.scrolled .header {
    --background-color: rgba(34, 18, 2, 0.9);
}

/* Navmenu - Desktop */
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }

        .navmenu ul {
            margin: 0;
            padding: 0;
            display: flex;
            list-style: none;
            align-items: center;
        }

        .navmenu li {
            position: relative;
        }

        .navmenu a, .navmenu a:focus {
            color: var(--nav-color);
            padding: 18px 15px;
            font-size: 16px;
            font-family: var(--nav-font);
            font-weight: 400;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i, .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                transition: 0.3s;
            }

        .navmenu li:last-child a {
            padding-right: 0;
        }

        .navmenu li:hover > a, .navmenu .active, .navmenu .active:focus {
            color: var(--nav-hover-color);
        }

        .navmenu .dropdown ul {
            margin: 0;
            padding: 10px 0;
            background: var(--nav-dropdown-background-color);
            display: block;
            position: absolute;
            visibility: hidden;
            left: 14px;
            top: 130%;
            opacity: 0;
            transition: 0.3s;
            border-radius: 4px;
            z-index: 99;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

            .navmenu .dropdown ul li {
                min-width: 200px;
            }

            .navmenu .dropdown ul a {
                padding: 10px 20px;
                font-size: 15px;
                text-transform: none;
                color: var(--nav-dropdown-color);
            }

                .navmenu .dropdown ul a i {
                    font-size: 12px;
                }

                .navmenu .dropdown ul a:hover, .navmenu .dropdown ul .active, .navmenu .dropdown ul .active:hover, .navmenu .dropdown ul li:hover > a {
                    color: var(--nav-dropdown-hover-color);
                }

        .navmenu .dropdown:hover > ul {
            opacity: 1;
            top: 100%;
            visibility: visible;
        }

        .navmenu .dropdown .dropdown ul {
            top: 0;
            left: -90%;
            visibility: hidden;
        }

        .navmenu .dropdown .dropdown:hover > ul {
            opacity: 1;
            top: 0;
            left: -100%;
            visibility: visible;
        }
}
/* Navmenu - Mobile */
@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }

    .navmenu {
        padding: 0;
        z-index: 9997;
    }

        .navmenu ul {
            display: none;
            list-style: none;
            position: absolute;
            inset: 60px 20px 20px 20px;
            padding: 10px 0;
            margin: 0;
            border-radius: 6px;
            background-color: var(--nav-mobile-background-color);
            overflow-y: auto;
            transition: 0.3s;
            z-index: 9998;
            box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
        }

        .navmenu a, .navmenu a:focus {
            color: var(--nav-dropdown-color);
            padding: 10px 20px;
            font-family: var(--nav-font);
            font-size: 17px;
            font-weight: 500;
            display: flex;
            align-items: center;
            justify-content: space-between;
            white-space: nowrap;
            transition: 0.3s;
        }

            .navmenu a i, .navmenu a:focus i {
                font-size: 12px;
                line-height: 0;
                margin-left: 5px;
                width: 30px;
                height: 30px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                transition: 0.3s;
                background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
            }

                .navmenu a i:hover, .navmenu a:focus i:hover {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                }

            .navmenu a:hover, .navmenu .active, .navmenu .active:focus {
                color: var(--nav-dropdown-hover-color);
            }

                .navmenu .active i, .navmenu .active:focus i {
                    background-color: var(--accent-color);
                    color: var(--contrast-color);
                    transform: rotate(180deg);
                }

        .navmenu .dropdown ul {
            position: static;
            display: none;
            z-index: 99;
            padding: 10px 0;
            margin: 10px 20px;
            background-color: var(--nav-dropdown-background-color);
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            box-shadow: none;
            transition: all 0.5s ease-in-out;
        }

            .navmenu .dropdown ul ul {
                background-color: rgba(33, 37, 41, 0.1);
            }

        .navmenu .dropdown > .dropdown-active {
            display: block;
            background-color: rgba(33, 37, 41, 0.03);
        }

    .mobile-nav-active {
        overflow: hidden;
    }

        .mobile-nav-active .mobile-nav-toggle {
            color: #fff;
            position: absolute;
            font-size: 32px;
            top: 15px;
            right: 15px;
            margin-right: 0;
            z-index: 9999;
        }

        .mobile-nav-active .navmenu {
            position: fixed;
            overflow: hidden;
            inset: 0;
            background: rgba(33, 37, 41, 0.8);
            transition: 0.3s;
        }

            .mobile-nav-active .navmenu > ul {
                display: block;
            }
}

 .footer {
    color: var(--default-color);
    background-color: var(--background-color);
    font-size: 14px;
    position: relative;
}

.footer .footer-top {
    padding-top: 50px;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .footer-about .logo {
    line-height: 1;
    margin-bottom: 25px;
}

    .footer .footer-about .logo img {
        max-height: 40px;
        margin-right: 6px;
    }

    .footer .footer-about .logo span {
        color: var(--heading-color);
        font-family: var(--heading-font);
        font-size: 26px;
        font-weight: 700;
        letter-spacing: 1px;
    }

.footer .footer-about p {
    font-size: 14px;
    font-family: var(--heading-font);
}

.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
    font-size: 16px;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-right: 10px;
    transition: 0.3s;
}

    .footer .social-links a:hover {
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

.footer h4 {
    font-size: 16px;
    font-weight: bold;
    position: relative;
    padding-bottom: 12px;
}

.footer .footer-links {
    margin-bottom: 30px;
}

    .footer .footer-links ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .footer .footer-links ul i {
            padding-right: 2px;
            font-size: 12px;
            line-height: 0;
        }

        .footer .footer-links ul li {
            padding: 10px 0;
            display: flex;
            align-items: center;
        }

            .footer .footer-links ul li:first-child {
                padding-top: 0;
            }

        .footer .footer-links ul a {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            display: inline-block;
            line-height: 1;
        }

            .footer .footer-links ul a:hover {
                color: var(--accent-color);
            }

.footer .footer-contact p {
    margin-bottom: 5px;
}

.footer .copyright {
    padding: 25px 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .footer .copyright p {
        margin-bottom: 0;
    }

.footer .credits {
    margin-top: 8px;
    font-size: 13px;
}

.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 4px;
    transition: all 0.4s;
}

.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}

.scroll-top:hover {
    background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
    color: var(--contrast-color);
}

.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

 .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("https://builder.bootstrapmade.com/static/img/events/showcase-1.webp");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

@media (max-width: 768px) {
    .hero {
        background-attachment: scroll;
        min-height: 90vh;
    }
}

.hero .background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, color-mix(in srgb, var(--background-color), transparent 30%) 0%, color-mix(in srgb, var(--background-color), transparent 50%) 100%);
    z-index: 1;
}

.hero .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

@media (max-width: 768px) {
    .hero .hero-content {
        padding: 100px 0 60px;
    }
}

.hero .hero-text {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero .hero-text {
        margin-bottom: 40px;
    }
}

.hero .hero-title {
    font-size: 3.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 24px;
}

@media (max-width: 1200px) {
    .hero .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero .hero-title {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }
}

.hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 30px;
    }
}

.hero .event-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .hero .event-details {
        flex-direction: column;
        gap: 16px;
        align-items: center;
    }
}

.hero .detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    font-weight: 500;
}

    .hero .detail-item i {
        font-size: 1.2rem;
        color: var(--accent-color);
    }

@media (max-width: 768px) {
    .hero .detail-item {
        font-size: 1rem;
    }
}

.hero .countdown-section {
    margin-bottom: 50px;
}

@media (max-width: 768px) {
    .hero .countdown-section {
        margin-bottom: 40px;
    }
}

.hero .countdown-label {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .hero .countdown-label {
        font-size: 1rem;
        margin-bottom: 24px;
    }
}

.hero .countdown {
    gap: 30px;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero .countdown {
        gap: 20px;
    }
}

.hero .countdown div {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 24px 20px;
    min-width: 120px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

    .hero .countdown div:hover {
        background: rgba(255, 255, 255, 0.15);
        transform: translateY(-2px);
    }

@media (max-width: 768px) {
    .hero .countdown div {
        padding: 16px 12px;
        min-width: 90px;
    }
}

.hero .countdown div h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1;
}

@media (max-width: 768px) {
    .hero .countdown div h3 {
        font-size: 2rem;
    }
}

.hero .countdown div h4 {
    font-size: 0.9rem;
    color: color-mix(in srgb, var(--default-color) 90%, white 15%);
    margin: 0;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .hero .countdown div h4 {
        font-size: 0.8rem;
    }
}

.hero .cta-section {
    margin-bottom: 60px;
}

@media (max-width: 768px) {
    .hero .cta-section {
        margin-bottom: 50px;
    }
}

.hero .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 24px;
}

@media (max-width: 576px) {
    .hero .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
}

.hero .btn-cta {
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
}

@media (max-width: 768px) {
    .hero .btn-cta {
        padding: 14px 28px;
        font-size: 1rem;
        min-width: 160px;
    }
}

.hero .btn-cta.btn-primary {
    color: var(--contrast-color);
    background-color: var(--accent-color);
    border-color: var(--accent-color);
}

    .hero .btn-cta.btn-primary:hover {
        transform: translateY(-2px);
    }

.hero .btn-cta.btn-secondary {
    background: transparent;
    border: 2px solid var(--default-color);
    color: var(--default-color);
}

    .hero .btn-cta.btn-secondary:hover {
        transform: translateY(-2px);
    }

.hero .cta-note {
    color: color-mix(in srgb, var(--contrast-color), transparent 30%);
    font-size: 0.95rem;
    font-style: italic;
    margin: 0;
}

@media (max-width: 768px) {
    .hero .cta-note {
        font-size: 0.9rem;
    }
}

.hero .sponsors-section {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 40px;
}

@media (max-width: 768px) {
    .hero .sponsors-section {
        padding-top: 30px;
    }
}

.hero .sponsors-label {
    color: color-mix(in srgb, var(--contrast-color), transparent 25%);
    font-size: 0.9rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .hero .sponsors-label {
        font-size: 0.85rem;
        margin-bottom: 24px;
    }
}

.hero .sponsors-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero .sponsors-logos {
        gap: 24px;
    }
}

.hero .sponsor-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

    .hero .sponsor-logo:hover {
        opacity: 1;
        transform: scale(1.1);
    }

@media (max-width: 768px) {
    .hero .sponsor-logo {
        height: 40px;
    }
}

 .intro {
    position: relative;
    background: linear-gradient(135deg, var(--background-color) 0%, color-mix(in srgb, var(--accent-color), transparent 90%) 100%);
    overflow: hidden;
}

.intro::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 40%;
    height: 200%;
    background: linear-gradient(45deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, transparent 70%);
    transform: rotate(-15deg);
    z-index: 1;
}

.intro .container {
    position: relative;
    z-index: 2;
}

.intro .content h2 {
    font-size: 3.2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background-clip: text;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .intro .content h2 {
        font-size: 2.5rem;
    }
}

.intro .content .lead {
    font-size: 1.25rem;
    font-weight: 500;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.intro .content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.intro .stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
}

.intro .stat-item {
    text-align: center;
    position: relative;
}

    .intro .stat-item .stat-number {
        font-size: 3rem;
        font-weight: 900;
        color: var(--accent-color);
        line-height: 1;
        margin-bottom: 0.5rem;
        text-shadow: 0 4px 8px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .intro .stat-item .stat-label {
        font-size: 0.9rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        color: var(--heading-color);
    }

    .intro .stat-item::after {
        content: "";
        position: absolute;
        bottom: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 3px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), transparent 70%));
        border-radius: 2px;
    }

.intro .cta-section {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .intro .cta-section .btn {
        padding: 1rem 2rem;
        display: flex;
        align-items: center;
        font-weight: 600;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        overflow: hidden;
        transition: all 0.3s ease;
        box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 75%);
    }

        .intro .cta-section .btn.btn-primary {
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
            border: none;
            color: var(--contrast-color);
        }

            .intro .cta-section .btn.btn-primary:hover {
                transform: translateY(-3px);
                box-shadow: 0 12px 35px color-mix(in srgb, var(--accent-color), transparent 60%);
            }

        .intro .cta-section .btn.btn-outline {
            background: transparent;
            border: 2px solid var(--accent-color);
            color: var(--accent-color);
        }

            .intro .cta-section .btn.btn-outline:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-3px);
            }

.intro .visual-section {
    position: relative;
}

.intro .image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px color-mix(in srgb, var(--default-color), transparent 85%);
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.3s ease;
}

    .intro .image-wrapper:hover {
        transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
    }

    .intro .image-wrapper img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

    .intro .image-wrapper .gradient-overlay {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 60%) 0%, transparent 100%);
    }

    .intro .image-wrapper .floating-badge {
        position: absolute;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 20%));
        color: var(--contrast-color);
        padding: 0.75rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 70%);
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .intro .image-wrapper .floating-badge i {
            font-size: 1.1rem;
        }

.intro .highlight-cards {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .intro .highlight-cards {
        flex-direction: column;
    }
}

.intro .highlight-card {
    flex: 1;
    background: var(--surface-color);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 90%);
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 90%);
    transition: all 0.3s ease;
}

    .intro .highlight-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 85%);
    }

    .intro .highlight-card i {
        font-size: 2.5rem;
        color: var(--accent-color);
        margin-bottom: 1rem;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 30%));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .intro .highlight-card h4 {
        font-size: 1.2rem;
        font-weight: 700;
        margin-bottom: 0.75rem;
    }

    .intro .highlight-card p {
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin: 0;
        line-height: 1.6;
    }

.intro .founder-quote {
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 97%) 100%);
    border-radius: 25px;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
    position: relative;
    overflow: hidden;
}

    .intro .founder-quote::before {
        content: '"';
        position: absolute;
        top: -20px;
        left: 30px;
        font-size: 8rem;
        font-family: Georgia, serif;
        color: color-mix(in srgb, var(--accent-color), transparent 85%);
        font-weight: bold;
        line-height: 1;
    }

    .intro .founder-quote .founder-img {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid var(--accent-color);
        box-shadow: 0 10px 30px color-mix(in srgb, var(--accent-color), transparent 75%);
    }

    .intro .founder-quote blockquote {
        margin: 0;
    }

        .intro .founder-quote blockquote p {
            font-size: 1.3rem;
            font-style: italic;
            line-height: 1.7;
            color: var(--heading-color);
            margin-bottom: 1.5rem;
            position: relative;
            z-index: 2;
        }

@media (max-width: 768px) {
    .intro .founder-quote blockquote p {
        font-size: 1.1rem;
    }
}

.intro .founder-quote blockquote cite {
    display: block;
    text-align: left;
}

    .intro .founder-quote blockquote cite strong {
        display: block;
        font-size: 1.2rem;
        font-weight: 700;
        color: var(--heading-color);
        margin-bottom: 0.25rem;
    }

    .intro .founder-quote blockquote cite span {
        color: var(--accent-color);
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 0.9rem;
    }

@media (max-width: 992px) {
    .intro .founder-quote {
        text-align: center;
    }

        .intro .founder-quote .founder-img {
            margin-bottom: 2rem;
        }

        .intro .founder-quote blockquote cite {
            text-align: center;
        }
}

@media (max-width: 768px) {
    .intro .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .intro .cta-section {
        justify-content: center;
    }

        .intro .cta-section .btn {
            flex: 1;
            text-align: center;
        }
}

 .featured-speakers .speaker-card {
    background: var(--surface-color);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 30px 0 color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}

.featured-speakers .speaker-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 45px 0 color-mix(in srgb, var(--default-color), transparent 80%);
}

.featured-speakers .speaker-card.featured {
    background: var(--surface-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .featured-speakers .speaker-card.featured .speaker-image {
        position: relative;
        overflow: hidden;
        height: 340px;
    }

        .featured-speakers .speaker-card.featured .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .featured-speakers .speaker-card.featured .speaker-image .speaker-social {
            position: absolute;
            bottom: 20px;
            right: 20px;
            display: flex;
            gap: 10px;
        }

            .featured-speakers .speaker-card.featured .speaker-image .speaker-social a {
                width: 40px;
                height: 40px;
                background: var(--accent-color);
                color: var(--contrast-color);
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                text-decoration: none;
                transition: all 0.3s ease;
            }

                .featured-speakers .speaker-card.featured .speaker-image .speaker-social a:hover {
                    background: var(--heading-color);
                    transform: translateY(-3px);
                }

                .featured-speakers .speaker-card.featured .speaker-image .speaker-social a i {
                    font-size: 16px;
                }

    .featured-speakers .speaker-card.featured .speaker-content {
        padding: 30px;
    }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-category {
            display: inline-block;
            background: var(--accent-color);
            color: var(--contrast-color);
            padding: 6px 15px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 15px;
        }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-name {
            font-size: 24px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-company {
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 20px;
        }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-session {
            margin-bottom: 25px;
        }

            .featured-speakers .speaker-card.featured .speaker-content .speaker-session h4 {
                font-size: 16px;
                font-weight: 600;
                color: var(--heading-color);
                margin-bottom: 10px;
            }

            .featured-speakers .speaker-card.featured .speaker-content .speaker-session p {
                font-size: 14px;
                line-height: 1.6;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                margin: 0;
            }

        .featured-speakers .speaker-card.featured .speaker-content .btn-speaker {
            display: inline-block;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 12px 25px;
            border-radius: 25px;
            text-decoration: none;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

            .featured-speakers .speaker-card.featured .speaker-content .btn-speaker:hover {
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

@media (max-width: 768px) {
    .featured-speakers .speaker-card.featured .speaker-image {
        height: 250px;
    }

    .featured-speakers .speaker-card.featured .speaker-content {
        padding: 20px;
    }

        .featured-speakers .speaker-card.featured .speaker-content .speaker-name {
            font-size: 20px;
        }
}

.featured-speakers .speaker-card.compact {
    text-align: center;
    transition: all 0.3s ease;
}

    .featured-speakers .speaker-card.compact .speaker-image {
        position: relative;
        overflow: hidden;
        height: 280px;
    }

        .featured-speakers .speaker-card.compact .speaker-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all 0.3s ease;
        }

        .featured-speakers .speaker-card.compact .speaker-image .speaker-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(180deg, transparent 60%, color-mix(in srgb, var(--default-color), transparent 30%) 100%);
            opacity: 0;
            transition: all 0.3s ease;
            display: flex;
            align-items: flex-end;
            justify-content: center;
            padding: 20px;
        }

            .featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social {
                display: flex;
                gap: 10px;
                transform: translateY(20px);
                transition: all 0.3s ease;
            }

                .featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a {
                    width: 36px;
                    height: 36px;
                    background: var(--contrast-color);
                    color: var(--accent-color);
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    text-decoration: none;
                    transition: all 0.3s ease;
                }

                    .featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a:hover {
                        background: var(--accent-color);
                        color: var(--contrast-color);
                    }

                    .featured-speakers .speaker-card.compact .speaker-image .speaker-overlay .speaker-social a i {
                        font-size: 14px;
                    }

        .featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay {
            opacity: 1;
        }

            .featured-speakers .speaker-card.compact .speaker-image:hover .speaker-overlay .speaker-social {
                transform: translateY(0);
            }

        .featured-speakers .speaker-card.compact .speaker-image:hover img {
            transform: scale(1.05);
        }

    .featured-speakers .speaker-card.compact .speaker-content {
        padding: 25px 20px;
    }

        .featured-speakers .speaker-card.compact .speaker-content .speaker-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--heading-color);
            margin-bottom: 8px;
            line-height: 1.3;
        }

        .featured-speakers .speaker-card.compact .speaker-content .speaker-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent-color);
            margin-bottom: 5px;
        }

        .featured-speakers .speaker-card.compact .speaker-content .speaker-company {
            font-size: 13px;
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin-bottom: 15px;
        }

        .featured-speakers .speaker-card.compact .speaker-content .speaker-topic {
            display: inline-block;
            background: color-mix(in srgb, var(--accent-color), transparent 90%);
            color: var(--accent-color);
            padding: 6px 12px;
            border-radius: 15px;
            font-size: 12px;
            font-weight: 500;
            font-style: italic;
        }

@media (max-width: 768px) {
    .featured-speakers .speaker-card.compact .speaker-image {
        height: 250px;
    }

    .featured-speakers .speaker-card.compact .speaker-content {
        padding: 20px 15px;
    }

        .featured-speakers .speaker-card.compact .speaker-content .speaker-name {
            font-size: 16px;
        }
}

.featured-speakers .speaker-quote {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

    .featured-speakers .speaker-quote::before {
        content: '"';
        position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        font-size: 80px;
        color: var(--accent-color);
        font-family: serif;
        line-height: 1;
        opacity: 0.3;
    }

    .featured-speakers .speaker-quote blockquote {
        margin: 0;
        position: relative;
        z-index: 1;
    }

        .featured-speakers .speaker-quote blockquote p {
            font-size: 18px;
            line-height: 1.6;
            color: var(--default-color);
            font-style: italic;
            margin-bottom: 25px;
        }

    .featured-speakers .speaker-quote .quote-author {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 15px;
        position: relative;
        z-index: 1;
    }

        .featured-speakers .speaker-quote .quote-author img {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--accent-color);
        }

        .featured-speakers .speaker-quote .quote-author .author-info {
            text-align: left;
        }

            .featured-speakers .speaker-quote .quote-author .author-info h5 {
                font-size: 16px;
                font-weight: 700;
                color: var(--heading-color);
                margin: 0;
                line-height: 1.3;
            }

            .featured-speakers .speaker-quote .quote-author .author-info span {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 30%);
                line-height: 1.4;
            }

@media (max-width: 768px) {
    .featured-speakers .speaker-quote {
        padding: 30px 20px;
    }

        .featured-speakers .speaker-quote::before {
            font-size: 60px;
            top: -5px;
        }

        .featured-speakers .speaker-quote blockquote p {
            font-size: 16px;
        }

        .featured-speakers .speaker-quote .quote-author {
            flex-direction: column;
            text-align: center;
        }

            .featured-speakers .speaker-quote .quote-author .author-info {
                text-align: center;
            }
}

.schedule .schedule-tabs .nav-pills .nav-item {
    margin: 0 8px;
}

.schedule .schedule-tabs .nav-pills .nav-item .nav-link {
    background: transparent;
    border: 2px solid color-mix(in srgb, var(--default-color), transparent 80%);
    color: var(--default-color);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .schedule .schedule-tabs .nav-pills .nav-item .nav-link:hover {
        border-color: var(--accent-color);
        color: var(--accent-color);
        transform: translateY(-2px);
    }

    .schedule .schedule-tabs .nav-pills .nav-item .nav-link.active {
        background: var(--accent-color);
        border-color: var(--accent-color);
        color: var(--contrast-color);
        transform: translateY(-2px);
    }

.schedule .track-headers {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
    padding: 0 60px;
}

    .schedule .track-headers .track-header {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 15px;
        border-radius: 12px;
        font-weight: 600;
        color: var(--contrast-color);
    }

        .schedule .track-headers .track-header i {
            margin-right: 8px;
            font-size: 18px;
        }

        .schedule .track-headers .track-header.development {
            background: linear-gradient(135deg, #4f46e5, #7c3aed);
        }

        .schedule .track-headers .track-header.design {
            background: linear-gradient(135deg, #f59e0b, #ef4444);
        }

        .schedule .track-headers .track-header.business {
            background: linear-gradient(135deg, #059669, #0891b2);
        }

@media (max-width: 768px) {
    .schedule .track-headers {
        grid-template-columns: 1fr;
        padding: 0;
    }
}

.schedule .schedule-timeline .time-slot {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    margin-bottom: 40px;
    align-items: start;
}

    .schedule .schedule-timeline .time-slot .time-label {
        text-align: right;
        padding-top: 20px;
        position: sticky;
        top: 100px;
    }

        .schedule .schedule-timeline .time-slot .time-label .time {
            display: block;
            font-size: 18px;
            font-weight: 700;
            color: var(--heading-color);
        }

        .schedule .schedule-timeline .time-slot .time-label .duration {
            display: block;
            font-size: 14px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin-top: 4px;
        }

    .schedule .schedule-timeline .time-slot .sessions-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 20px;
    }

        .schedule .schedule-timeline .time-slot .sessions-row .session-card {
            background: var(--surface-color);
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 20px color-mix(in srgb, var(--default-color), transparent 90%);
            transition: all 0.3s ease;
            border-left: 4px solid transparent;
        }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card:hover {
                transform: translateY(-4px);
                box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 85%);
            }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote {
                grid-column: 1/-1;
                border-left-color: #fbbf24;
                background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #fbbf24, transparent 95%));
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote .session-type {
                    color: #f59e0b;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.development {
                border-left-color: #4f46e5;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.development .session-type {
                    color: #4f46e5;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.design {
                border-left-color: #ef4444;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.design .session-type {
                    color: #ef4444;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.business {
                border-left-color: #059669;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.business .session-type {
                    color: #059669;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.break {
                grid-column: 1/-1;
                border-left-color: #6b7280;
                background: color-mix(in srgb, var(--default-color), transparent 95%);
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.break .session-type {
                    color: #6b7280;
                }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.break h4 {
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
                grid-column: 1/-1;
                border-left-color: #8b5cf6;
                background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, #8b5cf6, transparent 95%));
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop .session-type {
                    color: #8b5cf6;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type {
                display: flex;
                align-items: center;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                letter-spacing: 0.5px;
                margin-bottom: 12px;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-type i {
                    margin-right: 6px;
                    font-size: 14px;
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card h4 {
                font-size: 18px;
                font-weight: 700;
                color: var(--heading-color);
                margin-bottom: 16px;
                line-height: 1.4;
            }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker {
                display: flex;
                align-items: center;
                margin-bottom: 12px;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-image {
                    width: 48px;
                    height: 48px;
                    border-radius: 50%;
                    object-fit: cover;
                    margin-right: 12px;
                }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details h5 {
                    font-size: 14px;
                    font-weight: 600;
                    color: var(--heading-color);
                    margin: 0;
                }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .speaker .speaker-details span {
                    font-size: 12px;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card p {
                font-size: 14px;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                margin-bottom: 16px;
                line-height: 1.5;
            }

            .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta {
                display: flex;
                align-items: center;
                flex-wrap: wrap;
                gap: 12px;
            }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue {
                    font-size: 12px;
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                    display: flex;
                    align-items: center;
                }

                    .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .venue:before {
                        content: "\f3c5";
                        font-family: "bootstrap-icons";
                        margin-right: 4px;
                    }

                .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level {
                    font-size: 11px;
                    padding: 4px 8px;
                    border-radius: 12px;
                    font-weight: 600;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }

                    .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.beginner {
                        background: color-mix(in srgb, #10b981, transparent 85%);
                        color: #059669;
                    }

                    .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.intermediate {
                        background: color-mix(in srgb, #f59e0b, transparent 85%);
                        color: #d97706;
                    }

                    .schedule .schedule-timeline .time-slot .sessions-row .session-card .session-meta .level.advanced {
                        background: color-mix(in srgb, #ef4444, transparent 85%);
                        color: #dc2626;
                    }

    .schedule .schedule-timeline .time-slot.break-slot .sessions-row {
        grid-template-columns: 1fr;
    }

@media (max-width: 992px) {
    .schedule .schedule-timeline .time-slot .sessions-row {
        grid-template-columns: 1fr;
    }

        .schedule .schedule-timeline .time-slot .sessions-row .session-card.keynote,
        .schedule .schedule-timeline .time-slot .sessions-row .session-card.workshop {
            grid-column: 1;
        }
}

@media (max-width: 768px) {
    .schedule .schedule-timeline .time-slot {
        grid-template-columns: 80px 1fr;
        gap: 20px;
    }

        .schedule .schedule-timeline .time-slot .time-label {
            text-align: left;
        }

            .schedule .schedule-timeline .time-slot .time-label .time {
                font-size: 16px;
            }
}

.schedule .download-cta {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 40px;
    margin-top: 60px;
    box-shadow: 0 8px 30px color-mix(in srgb, var(--default-color), transparent 90%);
}

    .schedule .download-cta h4 {
        font-size: 24px;
        margin-bottom: 12px;
        color: var(--heading-color);
    }

    .schedule .download-cta p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 24px;
    }

    .schedule .download-cta .cta-buttons {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

        .schedule .download-cta .cta-buttons .btn {
            padding: 12px 24px;
            border-radius: 50px;
            font-weight: 600;
            display: flex;
            align-items: center;
            transition: all 0.3s ease;
        }

            .schedule .download-cta .cta-buttons .btn i {
                margin-right: 8px;
            }

            .schedule .download-cta .cta-buttons .btn.btn-primary {
                background: var(--accent-color);
                border-color: var(--accent-color);
                color: var(--contrast-color);
            }

                .schedule .download-cta .cta-buttons .btn.btn-primary:hover {
                    transform: translateY(-2px);
                    box-shadow: 0 8px 25px color-mix(in srgb, var(--accent-color), transparent 60%);
                }

            .schedule .download-cta .cta-buttons .btn.btn-outline-primary {
                border-color: var(--accent-color);
                color: var(--accent-color);
            }

                .schedule .download-cta .cta-buttons .btn.btn-outline-primary:hover {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                    transform: translateY(-2px);
                }


.tickets-2 .ticket-card {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
    height: 100%;
}

.tickets-2 .ticket-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.tickets-2 .ticket-card.featured {
    border-color: var(--accent-color);
    transform: scale(1.05);
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--accent-color), transparent 95%) 100%);
}

    .tickets-2 .ticket-card.featured:hover {
        transform: scale(1.05) translateY(-5px);
    }

.tickets-2 .popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tickets-2 .ticket-header {
    text-align: center;
    margin-bottom: 30px;
}

    .tickets-2 .ticket-header h3 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--heading-color);
    }

    .tickets-2 .ticket-header .ticket-price {
        margin-bottom: 10px;
    }

        .tickets-2 .ticket-header .ticket-price .currency {
            font-size: 20px;
            color: var(--accent-color);
            font-weight: 600;
            vertical-align: top;
        }

        .tickets-2 .ticket-header .ticket-price .amount {
            font-size: 48px;
            font-weight: 700;
            color: var(--accent-color);
            line-height: 1;
        }

        .tickets-2 .ticket-header .ticket-price .period {
            font-size: 16px;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            font-weight: 500;
        }

        .tickets-2 .ticket-header .ticket-price .original-price {
            font-size: 18px;
            color: color-mix(in srgb, var(--default-color), transparent 50%);
            text-decoration: line-through;
            margin-right: 10px;
        }

    .tickets-2 .ticket-header .ticket-duration {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 16px;
        font-weight: 500;
        margin: 0;
    }

.tickets-2 .ticket-body {
    margin-bottom: 30px;
}

    .tickets-2 .ticket-body .ticket-features {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .tickets-2 .ticket-body .ticket-features li {
            display: flex;
            align-items: flex-start;
            margin-bottom: 15px;
            font-size: 15px;
            line-height: 1.5;
            color: var(--default-color);
        }

            .tickets-2 .ticket-body .ticket-features li i {
                color: var(--accent-color);
                font-size: 18px;
                margin-right: 12px;
                margin-top: 2px;
                flex-shrink: 0;
            }

            .tickets-2 .ticket-body .ticket-features li:last-child {
                margin-bottom: 0;
            }

.tickets-2 .ticket-footer {
    text-align: center;
}

    .tickets-2 .ticket-footer .btn-ticket {
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        font-size: 16px;
        text-decoration: none;
        display: inline-block;
        transition: all 0.3s ease;
        border: 2px solid var(--accent-color);
        width: 100%;
        margin-bottom: 15px;
    }

        .tickets-2 .ticket-footer .btn-ticket:hover {
            background: var(--contrast-color);
            color: var(--accent-color);
            transform: translateY(-2px);
        }

    .tickets-2 .ticket-footer .availability-info {
        margin: 0;
        font-size: 14px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        font-weight: 500;
    }

.tickets-2 .ticket-info-bar {
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .tickets-2 .ticket-info-bar .countdown-info {
        margin-bottom: 30px;
    }

        .tickets-2 .ticket-info-bar .countdown-info h4 {
            color: var(--heading-color);
            font-size: 24px;
            font-weight: 600;
            margin-bottom: 20px;
        }

            .tickets-2 .ticket-info-bar .countdown-info h4 i {
                color: var(--accent-color);
                margin-right: 10px;
            }

        .tickets-2 .ticket-info-bar .countdown-info .countdown {
            display: flex;
            justify-content: center;
            gap: 30px;
        }

            .tickets-2 .ticket-info-bar .countdown-info .countdown > div {
                background: var(--surface-color);
                padding: 20px 15px;
                border-radius: 10px;
                min-width: 80px;
                box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            }

                .tickets-2 .ticket-info-bar .countdown-info .countdown > div h3 {
                    font-size: 32px;
                    font-weight: 700;
                    color: var(--accent-color);
                    margin: 0 0 5px 0;
                    line-height: 1;
                }

                .tickets-2 .ticket-info-bar .countdown-info .countdown > div h4 {
                    font-size: 14px;
                    font-weight: 500;
                    color: color-mix(in srgb, var(--default-color), transparent 30%);
                    margin: 0;
                    text-transform: uppercase;
                    letter-spacing: 0.5px;
                }

    .tickets-2 .ticket-info-bar .support-info p {
        margin-bottom: 10px;
        font-size: 16px;
        color: var(--default-color);
    }

    .tickets-2 .ticket-info-bar .support-info .contact-link {
        color: var(--accent-color);
        text-decoration: none;
        font-weight: 600;
    }

        .tickets-2 .ticket-info-bar .support-info .contact-link:hover {
            color: color-mix(in srgb, var(--accent-color), transparent 25%);
        }

    .tickets-2 .ticket-info-bar .support-info .divider {
        margin: 0 15px;
        color: color-mix(in srgb, var(--default-color), transparent 50%);
    }

@media (max-width: 768px) {
    .tickets-2 .ticket-card {
        padding: 30px 20px;
    }

        .tickets-2 .ticket-card.featured {
            transform: none;
        }

            .tickets-2 .ticket-card.featured:hover {
                transform: translateY(-5px);
            }

    .tickets-2 .ticket-header .ticket-price .amount {
        font-size: 36px;
    }

    .tickets-2 .ticket-info-bar {
        padding: 30px 20px;
    }

        .tickets-2 .ticket-info-bar .countdown {
            gap: 15px !important;
        }

            .tickets-2 .ticket-info-bar .countdown > div {
                padding: 15px 10px;
                min-width: 60px;
            }

                .tickets-2 .ticket-info-bar .countdown > div h3 {
                    font-size: 24px;
                }

                .tickets-2 .ticket-info-bar .countdown > div h4 {
                    font-size: 12px;
                }

        .tickets-2 .ticket-info-bar .support-info .divider {
            display: block;
            margin: 10px 0;
        }
}

.sponsors-2 .clients-wrap {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-left: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.sponsors-2 .client-logo {
    background-color: var(--surface-color);
    display: flex;
    justify-content: center;
    align-items: center;
    border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
    overflow: hidden;
}

    .sponsors-2 .client-logo img {
        padding: 50px;
        max-width: 80%;
        transition: 0.3s;
    }

@media (max-width: 640px) {
    .sponsors-2 .client-logo img {
        padding: 30px;
        max-width: 50%;
    }
}

.sponsors-2 .client-logo:hover img {
    transform: scale(1.1);
}

 .call-to-action {
    position: relative;
    overflow: hidden;
}

.call-to-action::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("https://builder.bootstrapmade.com/static/img/events/showcase-1.webp") center/cover no-repeat;
    opacity: 0.1;
    z-index: 1;
}

.call-to-action .container {
    position: relative;
    z-index: 2;
}

.call-to-action .display-4 {
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.call-to-action .lead {
    font-size: 1.125rem;
    line-height: 1.6;
    font-weight: 400;
}

.call-to-action .stats-wrapper {
    background: var(--surface-color);
    border-radius: 16px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.call-to-action .stat-item {
    text-align: center;
    padding: 1rem 0;
}

    .call-to-action .stat-item .stat-icon {
        width: 60px;
        height: 60px;
        background: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1rem;
        transition: all 0.3s ease;
    }

        .call-to-action .stat-item .stat-icon i {
            font-size: 1.5rem;
            color: var(--accent-color);
        }

    .call-to-action .stat-item .stat-number {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--heading-color);
        line-height: 1;
        margin-bottom: 0.5rem;
    }

    .call-to-action .stat-item .stat-label {
        font-size: 0.875rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

    .call-to-action .stat-item:hover .stat-icon {
        background: var(--accent-color);
        transform: translateY(-2px);
    }

        .call-to-action .stat-item:hover .stat-icon i {
            color: var(--contrast-color);
        }

.call-to-action .cta-content h3 {
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 1rem;
}

.call-to-action .cta-content p {
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-size: 1.125rem;
    line-height: 1.6;
}

.call-to-action .cta-buttons {
    margin-bottom: 2rem;
}

    .call-to-action .cta-buttons .btn {
        border-radius: 50px;
        padding: 0.875rem 2rem;
        font-weight: 600;
        font-size: 1rem;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        border-width: 2px;
    }

        .call-to-action .cta-buttons .btn.btn-primary {
            background: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);
        }

            .call-to-action .cta-buttons .btn.btn-primary:hover {
                background: color-mix(in srgb, var(--accent-color), black 15%);
                border-color: color-mix(in srgb, var(--accent-color), black 15%);
                transform: translateY(-2px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }

        .call-to-action .cta-buttons .btn.btn-outline-secondary {
            color: var(--default-color);
            border-color: color-mix(in srgb, var(--default-color), transparent 70%);
            background: transparent;
        }

            .call-to-action .cta-buttons .btn.btn-outline-secondary:hover {
                background: var(--accent-color);
                border-color: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
            }

.call-to-action .security-note {
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    padding-top: 1rem;
}

    .call-to-action .security-note small {
        display: inline-flex;
        align-items: center;
        font-size: 0.875rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
    }

        .call-to-action .security-note small i {
            color: var(--accent-color);
        }

@media (max-width: 768px) {
    .call-to-action .display-4 {
        font-size: 2rem;
    }

    .call-to-action .stats-wrapper {
        padding: 2rem 1rem;
    }

    .call-to-action .stat-item {
        margin-bottom: 2rem;
    }

        .call-to-action .stat-item .stat-number {
            font-size: 2rem;
        }

    .call-to-action .cta-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 1rem;
    }

        .call-to-action .cta-buttons .btn:last-child {
            margin-bottom: 0;
        }
}

.testimonials {
    position: relative;
    overflow: hidden;
    /* Swiper Navigation */
    /* Swiper Pagination */
    /* Responsive Styles */
}

.testimonials .testimonial-slider {
    position: relative;
    padding-bottom: 50px;
}

    .testimonials .testimonial-slider .swiper-wrapper {
        height: auto !important;
    }

.testimonials .testimonial-item {
    background: linear-gradient(135deg, var(--surface-color) 0%, color-mix(in srgb, var(--surface-color), var(--accent-color) 2%) 100%);
    border-radius: 20px;
    padding: 0;
    height: 100%;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.4s ease;
    overflow: hidden;
    position: relative;
}

    .testimonials .testimonial-item::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 4px;
        background: linear-gradient(90deg, var(--accent-color), color-mix(in srgb, var(--accent-color), var(--heading-color) 30%));
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.4s ease;
    }

    .testimonials .testimonial-item:hover {
        border-color: var(--accent-color);
    }

        .testimonials .testimonial-item:hover::before {
            transform: scaleX(1);
        }

        .testimonials .testimonial-item:hover .testimonial-header img {
            transform: scale(1.05);
        }

        .testimonials .testimonial-item:hover .quote-icon {
            color: var(--accent-color);
            transform: scale(1.1);
        }

.testimonials .testimonial-header {
    position: relative;
    text-align: center;
    padding: 30px 30px 20px;
    background: linear-gradient(135deg, color-mix(in srgb, var(--surface-color), var(--accent-color) 3%) 0%, var(--surface-color) 100%);
}

    .testimonials .testimonial-header img {
        width: 80px;
        height: 80px;
        border-radius: 50%;
        object-fit: cover;
        border: 4px solid color-mix(in srgb, var(--accent-color), transparent 70%);
        margin-bottom: 15px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .testimonials .testimonial-header .rating {
        display: flex;
        justify-content: center;
        gap: 3px;
    }

        .testimonials .testimonial-header .rating i {
            color: #ffc107;
            font-size: 0.9rem;
        }

.testimonials .testimonial-body {
    padding: 0 30px 20px;
}

    .testimonials .testimonial-body p {
        font-size: 1rem;
        line-height: 1.6;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        margin: 0;
        font-style: italic;
        text-align: center;
        position: relative;
    }

        .testimonials .testimonial-body p::before, .testimonials .testimonial-body p::after {
            content: '"';
            font-size: 1.5rem;
            color: var(--accent-color);
            opacity: 0.6;
            font-family: serif;
            position: absolute;
        }

        .testimonials .testimonial-body p::before {
            top: -5px;
            left: -10px;
        }

        .testimonials .testimonial-body p::after {
            bottom: -20px;
            right: -5px;
        }

.testimonials .testimonial-footer {
    padding: 20px 30px 30px;
    text-align: center;
    position: relative;
}

    .testimonials .testimonial-footer h5 {
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--heading-color);
        margin: 0 0 5px;
    }

    .testimonials .testimonial-footer span {
        font-size: 0.85rem;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        display: block;
        margin-bottom: 15px;
    }

    .testimonials .testimonial-footer .quote-icon {
        position: absolute;
        bottom: 15px;
        right: 25px;
        color: color-mix(in srgb, var(--accent-color), transparent 60%);
        font-size: 1.5rem;
        transition: all 0.3s ease;
    }

.testimonials .swiper-navigation {
    position: relative;
    margin-top: 25px;
    display: flex;
    justify-content: flex-end;
}

.testimonials .swiper-button-prev,
.testimonials .swiper-button-next {
    position: static;
    width: 45px;
    height: 45px;
    margin: 0 10px;
    background: var(--accent-color);
    border-radius: 50%;
    color: var(--contrast-color);
    font-size: 16px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

    .testimonials .swiper-button-prev:hover,
    .testimonials .swiper-button-next:hover {
        background: color-mix(in srgb, var(--accent-color), var(--heading-color) 20%);
        transform: scale(1.05);
    }

    .testimonials .swiper-button-prev::after,
    .testimonials .swiper-button-next::after {
        font-size: 16px;
        font-weight: 600;
    }

.testimonials .swiper-pagination {
    position: static;
    margin-top: 30px;
    text-align: center;
}

    .testimonials .swiper-pagination .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        background: color-mix(in srgb, var(--default-color), transparent 70%);
        opacity: 1;
        margin: 0 6px;
        transition: all 0.3s ease;
    }

        .testimonials .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
            background: var(--accent-color);
            transform: scale(1.2);
        }

@media (max-width: 1199px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 25px 25px 15px;
    }

        .testimonials .testimonial-item .testimonial-header img {
            width: 70px;
            height: 70px;
        }

    .testimonials .testimonial-item .testimonial-body,
    .testimonials .testimonial-item .testimonial-footer {
        padding-left: 25px;
        padding-right: 25px;
    }
}

@media (max-width: 991px) {
    .testimonials .testimonial-item {
        margin-bottom: 30px;
    }
}

@media (max-width: 767px) {
    .testimonials .testimonial-item .testimonial-header {
        padding: 20px 20px 10px;
    }

        .testimonials .testimonial-item .testimonial-header img {
            width: 60px;
            height: 60px;
        }

        .testimonials .testimonial-item .testimonial-header .rating i {
            font-size: 0.8rem;
        }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 20px 15px;
    }

        .testimonials .testimonial-item .testimonial-body p {
            font-size: 0.95rem;
        }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 15px 20px 20px;
    }

        .testimonials .testimonial-item .testimonial-footer h5 {
            font-size: 1rem;
        }

        .testimonials .testimonial-item .testimonial-footer span {
            font-size: 0.8rem;
        }

        .testimonials .testimonial-item .testimonial-footer .quote-icon {
            font-size: 1.3rem;
            bottom: 10px;
            right: 15px;
        }

    .testimonials .swiper-button-prev,
    .testimonials .swiper-button-next {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

        .testimonials .swiper-button-prev::after,
        .testimonials .swiper-button-next::after {
            font-size: 14px;
        }
}

@media (max-width: 575px) {
    .testimonials .testimonial-slider {
        padding-bottom: 30px;
    }

    .testimonials .testimonial-item .testimonial-header {
        padding: 15px 15px 10px;
    }

        .testimonials .testimonial-item .testimonial-header img {
            width: 55px;
            height: 55px;
        }

    .testimonials .testimonial-item .testimonial-body {
        padding: 0 15px 10px;
    }

        .testimonials .testimonial-item .testimonial-body p {
            font-size: 0.9rem;
        }

    .testimonials .testimonial-item .testimonial-footer {
        padding: 10px 15px 15px;
    }

        .testimonials .testimonial-item .testimonial-footer h5 {
            font-size: 0.95rem;
        }

        .testimonials .testimonial-item .testimonial-footer .quote-icon {
            font-size: 1.2rem;
        }

    .testimonials .swiper-navigation {
        margin-top: 10px;
    }
}

.gallery .gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
}

.gallery .gallery-item img {
    transition: 0.3s;
}

.gallery .gallery-links {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: all ease-in-out 0.3s;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3;
}

    .gallery .gallery-links .preview-link, .gallery .gallery-links .details-link {
        font-size: 20px;
        color: rgba(255, 255, 255, 0.5);
        transition: 0.3s;
        line-height: 1.2;
        margin: 30px 8px 0 8px;
    }

        .gallery .gallery-links .preview-link:hover, .gallery .gallery-links .details-link:hover {
            color: #ffffff;
        }

    .gallery .gallery-links .details-link {
        font-size: 30px;
        line-height: 0;
    }

.gallery .gallery-item:hover .gallery-links {
    opacity: 1;
}

.gallery .gallery-item:hover .preview-link, .gallery .gallery-item:hover .details-link {
    margin-top: 0;
}

.gallery .gallery-item:hover img {
    transform: scale(1.1);
}

.glightbox-clean .gslide-description {
    background: #272727;
}

.glightbox-clean .gslide-title {
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}
