﻿/**
* Updated: Jul 19 2025 with Bootstrap v5.3.7
*/

@charset "UTF-8";

/*--------------------------------------------------------------
# Font & Color Variables
# NOTE: Variables have been extracted to theme-vars.css (e.g. themeA-vars.css, themeB-vars.css)
--------------------------------------------------------------*/

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
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);
}

/* PHP Email Form Messages
------------------------------*/
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

    .php-email-form .loading:before {
        content: "";
        display: inline-block;
        border-radius: 50%;
        width: 24px;
        height: 24px;
        margin: 0 10px -6px 0;
        border: 3px solid var(--accent-color);
        border-top-color: var(--surface-color);
        animation: php-email-form-loading 1s linear infinite;
    }

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --background-color: rgba(255, 255, 255, 0);
    --default-color: #ffffff;
    --heading-color: #ffffff;
    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);
}

/* Global Header on Scroll
------------------------------*/
.scrolled .header {
    --background-color: rgba(34, 18, 2, 0.9);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* 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;
            }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.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;
    }

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
    position: fixed;
    inset: 0;
    z-index: 999999;
    overflow: hidden;
    background: var(--background-color);
    transition: all 0.6s ease-out;
}

    #preloader:before {
        content: "";
        position: fixed;
        top: calc(50% - 30px);
        left: calc(50% - 30px);
        border: 6px solid #ffffff;
        border-color: var(--accent-color) transparent var(--accent-color) transparent;
        border-radius: 50%;
        width: 60px;
        height: 60px;
        animation: animate-preloader 1.5s linear infinite;
    }

@keyframes animate-preloader {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.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%);
            }

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
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;
    }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.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;
    }

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background-image: url("../images/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;
    }
}

/*--------------------------------------------------------------
# Intro Section
--------------------------------------------------------------*/
.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;
        }
}

/*--------------------------------------------------------------
# Schedule Section
--------------------------------------------------------------*/
.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);
                }

/*--------------------------------------------------------------
# Call To Action Section
--------------------------------------------------------------*/
.call-to-action {
    position: relative;
    overflow: hidden;
}

    .call-to-action::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url("../images/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 Section
--------------------------------------------------------------*/
.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 Section
--------------------------------------------------------------*/
.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;
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.about .content .lead {
    font-size: 1.1rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    margin-bottom: 1.5rem;
}

.about .content p {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about .content .quote-section {
    background-color: var(--surface-color);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
}

    .about .content .quote-section blockquote {
        margin: 0;
    }

        .about .content .quote-section blockquote p {
            font-style: italic;
            font-size: 1.1rem;
            margin-bottom: 1rem;
            color: var(--heading-color);
        }

        .about .content .quote-section blockquote cite {
            font-style: normal;
            font-weight: 600;
            color: var(--accent-color);
            font-size: 0.9rem;
        }

.about .content .cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

    .about .content .cta-buttons .btn-primary,
    .about .content .cta-buttons .btn-secondary {
        padding: 12px 30px;
        border-radius: 25px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
        border: 2px solid transparent;
        display: inline-block;
    }

    .about .content .cta-buttons .btn-primary {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }

        .about .content .cta-buttons .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), black 15%);
            transform: translateY(-2px);
        }

    .about .content .cta-buttons .btn-secondary {
        background-color: transparent;
        color: var(--accent-color);
        border-color: var(--accent-color);
    }

        .about .content .cta-buttons .btn-secondary:hover {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            transform: translateY(-2px);
        }

.about .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

    .about .stats-grid .stat-card {
        background-color: var(--surface-color);
        padding: 2rem;
        border-radius: 15px;
        text-align: center;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 90%);
        transition: all 0.3s ease;
    }

        .about .stats-grid .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px color-mix(in srgb, var(--default-color), transparent 85%);
        }

        .about .stats-grid .stat-card .stat-icon {
            margin-bottom: 1rem;
        }

            .about .stats-grid .stat-card .stat-icon i {
                font-size: 2.5rem;
                color: var(--accent-color);
            }

        .about .stats-grid .stat-card .stat-content h4 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 0.5rem;
            color: var(--heading-color);
        }

        .about .stats-grid .stat-card .stat-content p {
            color: color-mix(in srgb, var(--default-color), transparent 30%);
            margin: 0;
            font-size: 0.9rem;
        }

.about .audience-section {
    text-align: center;
}

    .about .audience-section h3 {
        font-size: 2rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .about .audience-section p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 1.1rem;
    }

    .about .audience-section .audience-item {
        text-align: center;
        padding: 1.5rem 1rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

        .about .audience-section .audience-item:hover {
            background-color: var(--surface-color);
            transform: translateY(-5px);
        }

            .about .audience-section .audience-item:hover .audience-icon i {
                color: var(--accent-color);
                transform: scale(1.1);
            }

        .about .audience-section .audience-item .audience-icon {
            margin-bottom: 1rem;
        }

            .about .audience-section .audience-item .audience-icon i {
                font-size: 2rem;
                color: var(--heading-color);
                transition: all 0.3s ease;
            }

        .about .audience-section .audience-item h5 {
            font-size: 1rem;
            font-weight: 600;
            margin-bottom: 0.5rem;
            color: var(--heading-color);
        }

        .about .audience-section .audience-item p {
            font-size: 0.85rem;
            color: color-mix(in srgb, var(--default-color), transparent 40%);
            margin: 0;
            line-height: 1.4;
        }

@media (max-width: 992px) {
    .about .content {
        margin-bottom: 3rem;
    }

        .about .content .cta-buttons {
            justify-content: center;
        }

    .about .stats-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about .content h3 {
        font-size: 1.8rem;
    }

    .about .content .quote-section {
        padding: 1.5rem;
    }

    .about .content .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

        .about .content .cta-buttons .btn-primary,
        .about .content .cta-buttons .btn-secondary {
            width: 100%;
            max-width: 250px;
            text-align: center;
        }

    .about .audience-section .audience-item {
        padding: 1rem 0.5rem;
    }

        .about .audience-section .audience-item .audience-icon i {
            font-size: 1.8rem;
        }

        .about .audience-section .audience-item h5 {
            font-size: 0.9rem;
        }

        .about .audience-section .audience-item p {
            font-size: 0.8rem;
        }
}

/*--------------------------------------------------------------
# Speakers Section
--------------------------------------------------------------*/
.speakers .speakers-list .speaker-entry {
    margin-bottom: 2rem;
}

.speakers .speakers-list .speaker-profile {
    background: var(--surface-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

    .speakers .speakers-list .speaker-profile:hover {
        border-color: var(--accent-color);
        box-shadow: 0 8px 30px color-mix(in srgb, var(--accent-color), transparent 92%);
        transform: translateY(-3px);
    }

        .speakers .speakers-list .speaker-profile:hover .speaker-photo img {
            transform: scale(1.05);
        }

.speakers .speakers-list .speaker-meta {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.speakers .speakers-list .speaker-photo {
    flex-shrink: 0;
    width: 85px;
    height: 85px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid color-mix(in srgb, var(--accent-color), transparent 80%);
}

    .speakers .speakers-list .speaker-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.3s ease;
    }

.speakers .speakers-list .speaker-info {
    flex-grow: 1;
}

    .speakers .speakers-list .speaker-info h4 {
        font-size: 20px;
        font-weight: 700;
        margin-bottom: 6px;
        color: var(--heading-color);
    }

    .speakers .speakers-list .speaker-info .speaker-position {
        display: block;
        font-weight: 600;
        font-size: 15px;
        color: var(--accent-color);
        margin-bottom: 3px;
    }

    .speakers .speakers-list .speaker-info .speaker-org {
        display: block;
        font-size: 13px;
        color: color-mix(in srgb, var(--default-color), transparent 40%);
        margin-bottom: 10px;
    }

    .speakers .speakers-list .speaker-info .speaker-track {
        display: inline-block;
        background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #000000 15%));
        color: var(--contrast-color);
        font-size: 11px;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        padding: 4px 10px;
        border-radius: 15px;
    }

.speakers .speakers-list .speaker-details .speaker-topic {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 15px;
    padding: 12px;
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 8px;
    border-left: 3px solid var(--accent-color);
}

    .speakers .speakers-list .speaker-details .speaker-topic i {
        color: var(--accent-color);
        font-size: 16px;
        margin-top: 2px;
        flex-shrink: 0;
    }

    .speakers .speakers-list .speaker-details .speaker-topic span {
        font-weight: 600;
        font-size: 14px;
        color: var(--heading-color);
        line-height: 1.4;
    }

.speakers .speakers-list .speaker-details .speaker-summary {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin-bottom: 20px;
}

.speakers .speakers-list .speaker-details .speaker-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

    .speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 18px;
        border-radius: 25px;
        font-size: 13px;
        font-weight: 600;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .speakers .speakers-list .speaker-details .speaker-actions .profile-btn:hover {
            background: color-mix(in srgb, var(--accent-color), #000000 15%);
            transform: translateY(-2px);
        }

    .speakers .speakers-list .speaker-details .speaker-actions .speaker-social {
        display: flex;
        gap: 8px;
    }

        .speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link {
            width: 32px;
            height: 32px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            color: var(--default-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            transition: all 0.3s ease;
        }

            .speakers .speakers-list .speaker-details .speaker-actions .speaker-social .social-link:hover {
                border-color: var(--accent-color);
                background: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

@media (max-width: 992px) {
    .speakers .speakers-list .speaker-profile {
        padding: 20px;
    }

    .speakers .speakers-list .speaker-meta {
        gap: 15px;
    }

    .speakers .speakers-list .speaker-photo {
        width: 75px;
        height: 75px;
    }

    .speakers .speakers-list .speaker-info h4 {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .speakers .speakers-list .speaker-entry {
        margin-bottom: 1.5rem;
    }

    .speakers .speakers-list .speaker-profile {
        padding: 18px;
    }

    .speakers .speakers-list .speaker-meta {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 15px;
    }

    .speakers .speakers-list .speaker-photo {
        width: 80px;
        height: 80px;
    }

    .speakers .speakers-list .speaker-details .speaker-actions {
        flex-direction: column;
        gap: 15px;
    }

        .speakers .speakers-list .speaker-details .speaker-actions .profile-btn {
            align-self: stretch;
            text-align: center;
        }
}

@media (max-width: 576px) {
    .speakers .speakers-list .speaker-profile {
        padding: 15px;
    }

    .speakers .speakers-list .speaker-info h4 {
        font-size: 17px;
    }

    .speakers .speakers-list .speaker-info .speaker-position {
        font-size: 14px;
    }

    .speakers .speakers-list .speaker-details .speaker-topic {
        padding: 10px;
    }

        .speakers .speakers-list .speaker-details .speaker-topic span {
            font-size: 13px;
        }

    .speakers .speakers-list .speaker-details .speaker-summary {
        font-size: 13px;
    }
}

/*--------------------------------------------------------------
# Speaker Details 2 Section
--------------------------------------------------------------*/
.speaker-details-2 .speaker-profile-card {
    background: var(--surface-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px color-mix(in srgb, var(--default-color), transparent 90%);
    margin-bottom: 2rem;
}

    .speaker-details-2 .speaker-profile-card .profile-image-wrapper {
        position: relative;
    }

        .speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

@media (max-width: 768px) {
    .speaker-details-2 .speaker-profile-card .profile-image-wrapper img {
        height: 280px;
    }
}

.speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

    .speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge {
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 0.5rem 1rem;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 600;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

        .speaker-details-2 .speaker-profile-card .profile-image-wrapper .speaker-status .status-badge.keynote {
            background: linear-gradient(135deg, var(--accent-color), color-mix(in srgb, var(--accent-color), #ff6b6b 30%));
        }

.speaker-details-2 .speaker-profile-card .profile-content {
    padding: 2rem;
}

    .speaker-details-2 .speaker-profile-card .profile-content .speaker-name {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
        color: var(--heading-color);
    }

    .speaker-details-2 .speaker-profile-card .profile-content .speaker-title {
        color: var(--accent-color);
        font-size: 1.1rem;
        font-weight: 500;
        margin-bottom: 0.75rem;
    }

    .speaker-details-2 .speaker-profile-card .profile-content .speaker-company {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 2rem;
        font-size: 1rem;
    }

        .speaker-details-2 .speaker-profile-card .profile-content .speaker-company i {
            color: var(--accent-color);
        }

    .speaker-details-2 .speaker-profile-card .profile-content .connection-stats {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        margin-bottom: 2rem;
        padding: 1.5rem;
        background: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 12px;
    }

        .speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item {
            text-align: center;
        }

            .speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-number {
                display: block;
                font-size: 1.5rem;
                font-weight: 700;
                color: var(--accent-color);
                line-height: 1.2;
            }

            .speaker-details-2 .speaker-profile-card .profile-content .connection-stats .stat-item .stat-label {
                font-size: 0.8rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                text-transform: uppercase;
                letter-spacing: 0.5px;
            }

    .speaker-details-2 .speaker-profile-card .profile-content .social-connections {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

        .speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn {
            display: flex;
            align-items: center;
            gap: 0.75rem;
            padding: 0.75rem;
            background: transparent;
            border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
            border-radius: 10px;
            color: var(--default-color);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
        }

            .speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn:hover {
                transform: translateY(-2px);
                box-shadow: 0 5px 15px color-mix(in srgb, var(--default-color), transparent 85%);
            }

            .speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.linkedin:hover {
                border-color: #0077b5;
                color: #0077b5;
                background: color-mix(in srgb, #0077b5, transparent 95%);
            }

            .speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.twitter:hover {
                border-color: #1da1f2;
                color: #1da1f2;
                background: color-mix(in srgb, #1da1f2, transparent 95%);
            }

            .speaker-details-2 .speaker-profile-card .profile-content .social-connections .social-btn.website:hover {
                border-color: var(--accent-color);
                color: var(--accent-color);
                background: color-mix(in srgb, var(--accent-color), transparent 95%);
            }

.speaker-details-2 .speaker-highlight {
    background: linear-gradient(135deg, var(--surface-color), color-mix(in srgb, var(--accent-color), transparent 97%));
    border-radius: 15px;
    padding: 2.5rem;
    margin-bottom: 2.5rem;
    position: relative;
    border: 1px solid color-mix(in srgb, var(--accent-color), transparent 85%);
}

    .speaker-details-2 .speaker-highlight .quote-container {
        position: relative;
    }

        .speaker-details-2 .speaker-highlight .quote-container .quote-icon {
            position: absolute;
            top: -15px;
            left: -10px;
            width: 50px;
            height: 50px;
            background: var(--accent-color);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .speaker-details-2 .speaker-highlight .quote-container .quote-icon i {
                font-size: 1.5rem;
                color: var(--contrast-color);
            }

        .speaker-details-2 .speaker-highlight .quote-container blockquote {
            font-size: 1.25rem;
            font-style: italic;
            line-height: 1.6;
            color: var(--heading-color);
            margin: 0;
            padding-left: 3rem;
        }

@media (max-width: 768px) {
    .speaker-details-2 .speaker-highlight .quote-container blockquote {
        font-size: 1.1rem;
        padding-left: 2rem;
    }
}

.speaker-details-2 .speaker-biography,
.speaker-details-2 .session-schedule {
    margin-bottom: 2.5rem;
}

    .speaker-details-2 .speaker-biography .section-header,
    .speaker-details-2 .session-schedule .section-header {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-bottom: 2rem;
    }

        .speaker-details-2 .speaker-biography .section-header h3,
        .speaker-details-2 .session-schedule .section-header h3 {
            font-size: 1.6rem;
            color: var(--heading-color);
            margin: 0;
            white-space: nowrap;
        }

        .speaker-details-2 .speaker-biography .section-header .header-line,
        .speaker-details-2 .session-schedule .section-header .header-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, var(--accent-color), transparent);
        }

    .speaker-details-2 .speaker-biography .bio-content p,
    .speaker-details-2 .session-schedule .bio-content p {
        font-size: 1.05rem;
        line-height: 1.7;
        margin-bottom: 1.5rem;
        color: color-mix(in srgb, var(--default-color), transparent 10%);
    }

    .speaker-details-2 .speaker-biography .bio-content .expertise-areas,
    .speaker-details-2 .session-schedule .bio-content .expertise-areas {
        margin-top: 2rem;
    }

        .speaker-details-2 .speaker-biography .bio-content .expertise-areas h4,
        .speaker-details-2 .session-schedule .bio-content .expertise-areas h4 {
            font-size: 1.2rem;
            margin-bottom: 1rem;
            color: var(--heading-color);
        }

        .speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list,
        .speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list {
            display: flex;
            flex-wrap: wrap;
            gap: 0.75rem;
        }

            .speaker-details-2 .speaker-biography .bio-content .expertise-areas .tags-list .expertise-tag,
            .speaker-details-2 .session-schedule .bio-content .expertise-areas .tags-list .expertise-tag {
                background: var(--accent-color);
                color: var(--contrast-color);
                padding: 0.5rem 1rem;
                border-radius: 20px;
                font-size: 0.9rem;
                font-weight: 500;
            }

.speaker-details-2 .schedule-timeline {
    position: relative;
    padding-left: 2rem;
}

    .speaker-details-2 .schedule-timeline::before {
        content: "";
        position: absolute;
        left: 15px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: color-mix(in srgb, var(--accent-color), transparent 70%);
    }

    .speaker-details-2 .schedule-timeline .timeline-item {
        position: relative;
        margin-bottom: 2.5rem;
    }

        .speaker-details-2 .schedule-timeline .timeline-item:last-child {
            margin-bottom: 0;
        }

        .speaker-details-2 .schedule-timeline .timeline-item.featured .timeline-content {
            background: color-mix(in srgb, var(--accent-color), transparent 95%);
            border-left: 4px solid var(--accent-color);
        }

        .speaker-details-2 .schedule-timeline .timeline-item .timeline-marker {
            position: absolute;
            left: -2rem;
            top: 0.5rem;
        }

            .speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot {
                width: 16px;
                height: 16px;
                border-radius: 50%;
                margin-left: 8px;
                border: 3px solid var(--surface-color);
            }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.keynote {
                    background: var(--accent-color);
                }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.workshop {
                    background: #10b981;
                }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-marker .marker-dot.panel {
                    background: #8b5cf6;
                }

        .speaker-details-2 .schedule-timeline .timeline-item .timeline-content {
            background: var(--surface-color);
            padding: 2rem;
            border-radius: 12px;
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        }

            .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag {
                display: inline-block;
                padding: 0.3rem 0.8rem;
                border-radius: 15px;
                font-size: 0.75rem;
                font-weight: 600;
                text-transform: uppercase;
                margin-bottom: 1rem;
            }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.keynote {
                    background: var(--accent-color);
                    color: var(--contrast-color);
                }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.workshop {
                    background: #10b981;
                    color: white;
                }

                .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-tag.panel {
                    background: #8b5cf6;
                    color: white;
                }

            .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-name {
                font-size: 1.3rem;
                margin-bottom: 1.5rem;
                color: var(--heading-color);
            }

            .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
                display: grid;
                grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
                gap: 1rem;
                margin-bottom: 1rem;
            }

@media (max-width: 768px) {
    .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid {
        grid-template-columns: 1fr;
    }
}

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.95rem;
}

    .speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-meta-grid .meta-item i {
        color: var(--accent-color);
        font-size: 1rem;
    }

.speaker-details-2 .schedule-timeline .timeline-item .timeline-content .session-summary {
    line-height: 1.6;
    margin: 0;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
}

.speaker-details-2 .speaker-cta {
    padding: 2rem 0;
    border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

    .speaker-details-2 .speaker-cta .cta-buttons {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }

@media (max-width: 768px) {
    .speaker-details-2 .speaker-cta .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
}

.speaker-details-2 .speaker-cta .cta-buttons a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    justify-content: center;
}

    .speaker-details-2 .speaker-cta .cta-buttons a.btn-primary {
        background: var(--accent-color);
        color: var(--contrast-color);
        border: 2px solid var(--accent-color);
    }

        .speaker-details-2 .speaker-cta .cta-buttons a.btn-primary:hover {
            background: transparent;
            color: var(--accent-color);
            transform: translateY(-2px);
        }

    .speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary {
        background: var(--heading-color);
        color: var(--background-color);
        border: 2px solid var(--heading-color);
    }

        .speaker-details-2 .speaker-cta .cta-buttons a.btn-secondary:hover {
            background: transparent;
            color: var(--heading-color);
            transform: translateY(-2px);
        }

    .speaker-details-2 .speaker-cta .cta-buttons a.btn-outline {
        background: transparent;
        color: var(--default-color);
        border: 2px solid color-mix(in srgb, var(--default-color), transparent 70%);
    }

        .speaker-details-2 .speaker-cta .cta-buttons a.btn-outline:hover {
            background: var(--default-color);
            color: var(--background-color);
            border-color: var(--default-color);
            transform: translateY(-2px);
        }

/*--------------------------------------------------------------
# Venue 2 Section
--------------------------------------------------------------*/
.venue-2 .venue-content h3 {
    color: var(--heading-color);
    margin-bottom: 20px;
    font-size: 2rem;
}

.venue-2 .venue-content .venue-address {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    color: var(--accent-color);
    font-weight: 500;
}

    .venue-2 .venue-content .venue-address i {
        font-size: 1.2rem;
    }

.venue-2 .venue-content p {
    margin-bottom: 30px;
    line-height: 1.7;
}

.venue-2 .venue-image {
    position: relative;
}

    .venue-2 .venue-image img {
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .venue-2 .venue-image .venue-badge {
        position: absolute;
        top: 20px;
        left: 20px;
        background: var(--accent-color);
        color: var(--contrast-color);
        padding: 8px 16px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 6px;
        font-size: 0.9rem;
        font-weight: 500;
    }

.venue-2 .venue-features {
    margin-bottom: 30px;
}

    .venue-2 .venue-features .feature-item {
        display: flex;
        align-items: center;
        gap: 10px;
        margin-bottom: 15px;
    }

        .venue-2 .venue-features .feature-item i {
            color: var(--accent-color);
            font-size: 1.1rem;
            width: 20px;
        }

        .venue-2 .venue-features .feature-item span {
            font-weight: 500;
        }

.venue-2 .venue-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

    .venue-2 .venue-actions .btn {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 12px 24px;
        border-radius: 25px;
        font-weight: 500;
        transition: all 0.3s ease;
    }

        .venue-2 .venue-actions .btn.btn-primary {
            background-color: var(--accent-color);
            border-color: var(--accent-color);
            color: var(--contrast-color);
        }

            .venue-2 .venue-actions .btn.btn-primary:hover {
                background-color: color-mix(in srgb, var(--accent-color), black 10%);
                border-color: color-mix(in srgb, var(--accent-color), black 10%);
                transform: translateY(-2px);
            }

        .venue-2 .venue-actions .btn.btn-outline-primary {
            border-color: var(--accent-color);
            color: var(--accent-color);
        }

            .venue-2 .venue-actions .btn.btn-outline-primary:hover {
                background-color: var(--accent-color);
                color: var(--contrast-color);
                transform: translateY(-2px);
            }

.venue-2 .venue-map h4 {
    color: var(--heading-color);
    margin-bottom: 25px;
    text-align: center;
}

.venue-2 .venue-map .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .venue-2 .venue-map .map-container iframe {
        width: 100%;
        height: 400px;
    }

.venue-2 .travel-info {
    text-align: center;
    padding: 30px 20px;
    background-color: var(--surface-color);
    border-radius: 15px;
    height: 100%;
    transition: transform 0.3s ease;
}

    .venue-2 .travel-info:hover {
        transform: translateY(-5px);
    }

    .venue-2 .travel-info .travel-icon {
        width: 70px;
        height: 70px;
        margin: 0 auto 20px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 10%);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .venue-2 .travel-info .travel-icon i {
            font-size: 1.8rem;
            color: var(--contrast-color);
        }

    .venue-2 .travel-info h5 {
        color: var(--heading-color);
        margin-bottom: 15px;
    }

    .venue-2 .travel-info p {
        margin: 0;
        line-height: 1.6;
    }

.venue-2 .accommodation-section h4 {
    color: var(--heading-color);
    margin-bottom: 30px;
    text-align: center;
}

.venue-2 .accommodation-section .hotel-card {
    background-color: var(--surface-color);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    height: 100%;
}

    .venue-2 .accommodation-section .hotel-card:hover {
        transform: translateY(-5px);
    }

    .venue-2 .accommodation-section .hotel-card img {
        width: 100%;
        height: 200px;
        object-fit: cover;
    }

    .venue-2 .accommodation-section .hotel-card .hotel-info {
        padding: 20px;
    }

        .venue-2 .accommodation-section .hotel-card .hotel-info h6 {
            color: var(--heading-color);
            margin-bottom: 10px;
            font-weight: 600;
        }

        .venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance {
            display: flex;
            align-items: center;
            gap: 6px;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }

            .venue-2 .accommodation-section .hotel-card .hotel-info .hotel-distance i {
                color: var(--accent-color);
                font-size: 0.8rem;
            }

        .venue-2 .accommodation-section .hotel-card .hotel-info .hotel-price {
            font-weight: 600;
            color: var(--accent-color);
        }

@media (max-width: 768px) {
    .venue-2 .venue-actions {
        justify-content: center;
    }

        .venue-2 .venue-actions .btn {
            flex: 1;
            min-width: 150px;
        }

    .venue-2 .venue-map .map-container iframe {
        height: 300px;
    }

    .venue-2 .travel-info {
        margin-bottom: 30px;
    }

    .venue-2 .hotel-card {
        margin-bottom: 30px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-info-box {
    background-color: var(--surface-color);
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 25px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

    .contact .contact-info-box:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    }

    .contact .contact-info-box .icon-box {
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        color: var(--accent-color);
        width: 50px;
        height: 50px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
    }

        .contact .contact-info-box .icon-box i {
            font-size: 24px;
        }

    .contact .contact-info-box .info-content h4 {
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .contact .contact-info-box .info-content p {
        margin-bottom: 5px;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        font-size: 15px;
        line-height: 1.5;
    }

        .contact .contact-info-box .info-content p:last-child {
            margin-bottom: 0;
        }

.contact .map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

    .contact .map-section iframe {
        display: block;
        width: 100%;
        height: 100%;
        border: 0;
    }

.contact .form-container-overlap {
    position: relative;
    margin-top: -150px;
    margin-bottom: 60px;
    z-index: 10;
}

.contact .contact-form-wrapper {
    background-color: var(--surface-color);
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    padding: 40px;
}

    .contact .contact-form-wrapper h2 {
        font-size: 28px;
        font-weight: 700;
        margin-bottom: 30px;
        position: relative;
    }

        .contact .contact-form-wrapper h2:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: -10px;
            transform: translateX(-50%);
            width: 50px;
            height: 3px;
            background-color: var(--accent-color);
        }

    .contact .contact-form-wrapper .form-group {
        margin-bottom: 20px;
    }

        .contact .contact-form-wrapper .form-group .input-with-icon {
            position: relative;
        }

            .contact .contact-form-wrapper .form-group .input-with-icon i {
                position: absolute;
                left: 15px;
                top: 50%;
                transform: translateY(-50%);
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                font-size: 18px;
                z-index: 10;
            }

                .contact .contact-form-wrapper .form-group .input-with-icon i.message-icon {
                    top: 28px;
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea + i {
                top: 25px;
                transform: none;
            }

            .contact .contact-form-wrapper .form-group .input-with-icon .form-control {
                border-radius: 8px;
                padding: 12px 15px 12px 45px;
                height: 3.5rem;
                color: var(--default-color);
                background-color: var(--surface-color);
                font-size: 15px;
                border: 1px solid color-mix(in srgb, var(--default-color), transparent 80%);
            }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control:focus {
                    border-color: var(--accent-color);
                    box-shadow: 0 0 0 0.25rem color-mix(in srgb, var(--accent-color), transparent 90%);
                }

                .contact .contact-form-wrapper .form-group .input-with-icon .form-control::placeholder {
                    color: color-mix(in srgb, var(--default-color), transparent 40%);
                }

            .contact .contact-form-wrapper .form-group .input-with-icon textarea.form-control {
                height: 180px;
                resize: none;
                padding-top: 15px;
            }

    .contact .contact-form-wrapper .btn-submit {
        background-color: var(--accent-color);
        border: none;
        color: var(--contrast-color);
        padding: 12px 30px;
        font-size: 16px;
        font-weight: 600;
        letter-spacing: 1px;
        border-radius: 8px;
        transition: all 0.3s ease;
        box-shadow: 0 5px 15px color-mix(in srgb, var(--accent-color), transparent 70%);
    }

        .contact .contact-form-wrapper .btn-submit:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            transform: translateY(-3px);
            box-shadow: 0 8px 20px color-mix(in srgb, var(--accent-color), transparent 60%);
        }

        .contact .contact-form-wrapper .btn-submit:active {
            transform: translateY(0);
            box-shadow: 0 3px 10px color-mix(in srgb, var(--accent-color), transparent 70%);
        }

    .contact .contact-form-wrapper .loading,
    .contact .contact-form-wrapper .error-message,
    .contact .contact-form-wrapper .sent-message {
        margin-top: 10px;
        margin-bottom: 20px;
    }

@media (max-width: 992px) {
    .contact .form-container-overlap {
        margin-top: -120px;
    }

    .contact .contact-form-wrapper {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .contact .contact-info-box {
        margin-bottom: 20px;
    }

    .contact .form-container-overlap {
        margin-top: -100px;
    }

    .contact .contact-form-wrapper {
        padding: 25px;
    }

        .contact .contact-form-wrapper h2 {
            font-size: 24px;
        }

    .contact .map-section {
        height: 450px;
    }
}

@media (max-width: 576px) {
    .contact .form-container-overlap {
        margin-top: -80px;
    }

    .contact .contact-form-wrapper {
        padding: 20px;
    }

    .contact .btn-submit {
        width: 100%;
    }

    .contact .map-section {
        height: 400px;
    }
}

/*--------------------------------------------------------------
# Terms Of Service Section
--------------------------------------------------------------*/
.terms-of-service .tos-header {
    margin-bottom: 60px;
}

    .terms-of-service .tos-header .last-updated {
        display: inline-block;
        padding: 8px 20px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
        border-radius: 30px;
        color: var(--accent-color);
        font-size: 0.95rem;
        margin-bottom: 20px;
    }

    .terms-of-service .tos-header h2 {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .terms-of-service .tos-header p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        font-size: 1.1rem;
        max-width: 700px;
        margin: 0 auto;
    }

.terms-of-service .tos-content .content-section {
    margin-bottom: 50px;
    scroll-margin-top: 100px;
}

    .terms-of-service .tos-content .content-section:last-child {
        margin-bottom: 0;
    }

    .terms-of-service .tos-content .content-section h3 {
        font-size: 1.8rem;
        margin-bottom: 20px;
        color: var(--heading-color);
    }

    .terms-of-service .tos-content .content-section p {
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        line-height: 1.7;
        margin-bottom: 20px;
    }

        .terms-of-service .tos-content .content-section p:last-child {
            margin-bottom: 0;
        }

    .terms-of-service .tos-content .content-section .info-box {
        display: flex;
        align-items: flex-start;
        gap: 15px;
        padding: 20px;
        background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
        border-radius: 15px;
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .info-box i {
            font-size: 1.5rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .info-box p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .list-items {
        list-style: none;
        padding: 0;
        margin: 20px 0;
    }

        .terms-of-service .tos-content .content-section .list-items li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
        }

            .terms-of-service .tos-content .content-section .list-items li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .list-items li::before {
                content: "";
                position: absolute;
                left: 0;
                top: 10px;
                width: 6px;
                height: 6px;
                border-radius: 50%;
                background-color: var(--accent-color);
            }

    .terms-of-service .tos-content .content-section .alert-box {
        display: flex;
        gap: 20px;
        padding: 25px;
        background-color: var(--surface-color);
        border-radius: 15px;
        border-left: 4px solid var(--accent-color);
        margin-top: 20px;
    }

        .terms-of-service .tos-content .content-section .alert-box i {
            font-size: 2rem;
            color: var(--accent-color);
            flex-shrink: 0;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content h5 {
            font-size: 1.1rem;
            margin-bottom: 8px;
        }

        .terms-of-service .tos-content .content-section .alert-box .alert-content p {
            margin: 0;
            font-size: 0.95rem;
        }

    .terms-of-service .tos-content .content-section .prohibited-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 20px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-content .content-section .prohibited-list {
        grid-template-columns: 1fr;
    }
}

.terms-of-service .tos-content .content-section .prohibited-list .prohibited-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: var(--surface-color);
    border-radius: 12px;
}

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item i {
        color: #dc3545;
        font-size: 1.2rem;
    }

    .terms-of-service .tos-content .content-section .prohibited-list .prohibited-item span {
        font-size: 0.95rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
    }

.terms-of-service .tos-content .content-section .disclaimer-box {
    background-color: var(--surface-color);
    padding: 25px;
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .disclaimer-box p {
        margin-bottom: 15px;
        font-weight: 500;
    }

    .terms-of-service .tos-content .content-section .disclaimer-box ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

        .terms-of-service .tos-content .content-section .disclaimer-box ul li {
            position: relative;
            padding-left: 25px;
            margin-bottom: 12px;
            color: color-mix(in srgb, var(--default-color), transparent 20%);
            font-size: 0.95rem;
        }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li:last-child {
                margin-bottom: 0;
            }

            .terms-of-service .tos-content .content-section .disclaimer-box ul li::before {
                content: "•";
                position: absolute;
                left: 8px;
                color: var(--accent-color);
            }

.terms-of-service .tos-content .content-section .notice-box {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
    border-radius: 15px;
    margin-top: 20px;
}

    .terms-of-service .tos-content .content-section .notice-box i {
        font-size: 1.5rem;
        color: var(--accent-color);
        flex-shrink: 0;
    }

    .terms-of-service .tos-content .content-section .notice-box p {
        margin: 0;
        font-size: 0.95rem;
    }

.terms-of-service .tos-contact {
    margin-top: 60px;
}

    .terms-of-service .tos-contact .contact-box {
        background: linear-gradient(135deg, color-mix(in srgb, var(--accent-color), transparent 95%) 0%, color-mix(in srgb, var(--accent-color), transparent 98%) 100%);
        border-radius: 20px;
        padding: 40px;
        display: flex;
        align-items: center;
        gap: 30px;
    }

@media (max-width: 576px) {
    .terms-of-service .tos-contact .contact-box {
        flex-direction: column;
        text-align: center;
    }
}

.terms-of-service .tos-contact .contact-box .contact-icon {
    width: 60px;
    height: 60px;
    background-color: var(--accent-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

    .terms-of-service .tos-contact .contact-box .contact-icon i {
        font-size: 1.8rem;
        color: var(--contrast-color);
    }

.terms-of-service .tos-contact .contact-box .contact-content {
    flex: 1;
}

    .terms-of-service .tos-contact .contact-box .contact-content h4 {
        font-size: 1.4rem;
        margin-bottom: 8px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content p {
        color: color-mix(in srgb, var(--default-color), transparent 30%);
        margin-bottom: 15px;
    }

    .terms-of-service .tos-contact .contact-box .contact-content .contact-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 12px 25px;
        background-color: var(--accent-color);
        color: var(--contrast-color);
        border-radius: 30px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s;
    }

        .terms-of-service .tos-contact .contact-box .contact-content .contact-link:hover {
            transform: translateY(-2px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }

@media print {
    .terms-of-service .tos-contact {
        display: none;
    }

    .terms-of-service .content-section {
        page-break-inside: avoid;
    }
}

/*--------------------------------------------------------------
# Privacy Section
--------------------------------------------------------------*/
.privacy {
    font-size: 1rem;
    line-height: 1.7;
}

    .privacy .privacy-header {
        margin-bottom: 60px;
        text-align: center;
        border-bottom: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
        padding-bottom: 40px;
    }

        .privacy .privacy-header .header-content {
            max-width: 800px;
            margin: 0 auto;
        }

            .privacy .privacy-header .header-content .last-updated {
                font-size: 0.95rem;
                color: color-mix(in srgb, var(--default-color), transparent 40%);
                margin-bottom: 20px;
            }

            .privacy .privacy-header .header-content h1 {
                font-size: 2.8rem;
                color: var(--heading-color);
                margin-bottom: 20px;
                font-weight: 600;
            }

            .privacy .privacy-header .header-content .intro-text {
                font-size: 1.2rem;
                color: color-mix(in srgb, var(--default-color), transparent 20%);
                line-height: 1.6;
            }

    .privacy .privacy-content {
        max-width: 800px;
        margin: 0 auto 60px;
    }

        .privacy .privacy-content .content-section {
            margin-bottom: 50px;
        }

            .privacy .privacy-content .content-section:last-child {
                margin-bottom: 0;
            }

            .privacy .privacy-content .content-section h2 {
                font-size: 1.8rem;
                color: var(--heading-color);
                margin-bottom: 25px;
                font-weight: 600;
            }

            .privacy .privacy-content .content-section h3 {
                font-size: 1.4rem;
                color: var(--heading-color);
                margin: 30px 0 20px;
                font-weight: 500;
            }

            .privacy .privacy-content .content-section p {
                margin-bottom: 20px;
            }

                .privacy .privacy-content .content-section p:last-child {
                    margin-bottom: 0;
                }

            .privacy .privacy-content .content-section ul {
                list-style: none;
                padding: 0;
                margin: 0 0 20px;
            }

                .privacy .privacy-content .content-section ul li {
                    position: relative;
                    padding-left: 25px;
                    margin-bottom: 12px;
                }

                    .privacy .privacy-content .content-section ul li:last-child {
                        margin-bottom: 0;
                    }

                    .privacy .privacy-content .content-section ul li::before {
                        content: "•";
                        position: absolute;
                        left: 8px;
                        color: var(--accent-color);
                    }

    .privacy .privacy-contact {
        max-width: 800px;
        margin: 0 auto;
        padding-top: 40px;
        border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    }

        .privacy .privacy-contact h2 {
            font-size: 1.8rem;
            color: var(--heading-color);
            margin-bottom: 20px;
            font-weight: 600;
        }

        .privacy .privacy-contact p {
            margin-bottom: 20px;
        }

        .privacy .privacy-contact .contact-details {
            background-color: var(--surface-color);
            padding: 25px;
            border-radius: 10px;
        }

            .privacy .privacy-contact .contact-details p {
                margin-bottom: 10px;
            }

                .privacy .privacy-contact .contact-details p:last-child {
                    margin-bottom: 0;
                }

                .privacy .privacy-contact .contact-details p strong {
                    color: var(--heading-color);
                    font-weight: 600;
                }

@media print {
    .privacy {
        font-size: 12pt;
        line-height: 1.5;
    }

        .privacy .privacy-header {
            text-align: left;
            border-bottom: 1pt solid #000;
            padding-bottom: 20pt;
            margin-bottom: 30pt;
        }

        .privacy h1 {
            font-size: 24pt;
        }

        .privacy h2 {
            font-size: 18pt;
            page-break-after: avoid;
        }

        .privacy h3 {
            font-size: 14pt;
            page-break-after: avoid;
        }

        .privacy p,
        .privacy ul {
            page-break-inside: avoid;
        }

        .privacy .contact-details {
            border: 1pt solid #000;
            padding: 15pt;
        }
}

@media (max-width: 767px) {
    .privacy .privacy-header {
        margin-bottom: 40px;
        padding-bottom: 30px;
    }

        .privacy .privacy-header .header-content h1 {
            font-size: 2.2rem;
        }

        .privacy .privacy-header .header-content .intro-text {
            font-size: 1.1rem;
        }

    .privacy .privacy-content .content-section {
        margin-bottom: 40px;
    }

        .privacy .privacy-content .content-section h2 {
            font-size: 1.6rem;
        }

        .privacy .privacy-content .content-section h3 {
            font-size: 1.3rem;
        }
}

/*--------------------------------------------------------------
# Error 404 Section
--------------------------------------------------------------*/
.error-404 {
    padding: 80px 0;
    margin: 0 auto;
}

    .error-404 .error-icon {
        font-size: 5rem;
        color: color-mix(in srgb, var(--accent-color), transparent 15%);
    }

    .error-404 .error-code {
        font-size: clamp(6rem, 15vw, 12rem);
        font-weight: 800;
        color: color-mix(in srgb, var(--heading-color), transparent 10%);
        font-family: var(--heading-font);
        line-height: 1;
    }

    .error-404 .error-title {
        font-size: 2rem;
        color: var(--heading-color);
        font-weight: 600;
    }

    .error-404 .error-text {
        font-size: 1.1rem;
        color: color-mix(in srgb, var(--default-color), transparent 20%);
        max-width: 600px;
        margin: 0 auto;
    }

    .error-404 .search-box {
        max-width: 500px;
        margin: 0 auto;
    }

        .error-404 .search-box .input-group {
            border-radius: 50px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }

        .error-404 .search-box .form-control {
            border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
            padding: 0.75rem 1.5rem;
            font-size: 1rem;
            color: var(--default-color);
            background-color: var(--surface-color);
            border-radius: 50px;
        }

            .error-404 .search-box .form-control:focus {
                box-shadow: none;
                border-color: var(--accent-color);
            }

            .error-404 .search-box .form-control::placeholder {
                color: color-mix(in srgb, var(--default-color), transparent 60%);
            }

        .error-404 .search-box .search-btn {
            background-color: var(--accent-color);
            color: var(--contrast-color);
            border: none;
            padding: 0.75rem 1.5rem;
            transition: all 0.3s ease;
        }

            .error-404 .search-box .search-btn:hover {
                background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            }

    .error-404 .error-action .btn-primary {
        padding: 0.75rem 2rem;
        font-size: 1.1rem;
        background-color: var(--accent-color);
        border: none;
        color: var(--contrast-color);
        border-radius: 50px;
        transition: all 0.3s ease;
    }

        .error-404 .error-action .btn-primary:hover {
            background-color: color-mix(in srgb, var(--accent-color), transparent 15%);
            transform: translateY(-2px);
        }

@media (max-width: 768px) {
    .error-404 {
        padding: 60px 0;
    }

        .error-404 .error-code {
            font-size: clamp(4rem, 12vw, 8rem);
        }

        .error-404 .error-title {
            font-size: 1.5rem;
        }

        .error-404 .error-text {
            font-size: 1rem;
            padding: 0 20px;
        }

        .error-404 .search-box {
            margin: 0 20px;
        }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
    /* Add your styles here */
}
