:root {
    --bg-color: #000000;
    --bg-darker: #050505;
    --text-color: #ffffff;
    --text-muted: #888888;
    --primary: #FF0033;
    /* Rail Red */
    --accent: #0066FF;
    /* Tech Blue */
    --gradient: linear-gradient(135deg, var(--primary), var(--accent));
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    --container-width: 1200px;
    --header-height: 80px;

    /* Take Off Clone Colors */
    --to-blue: #3899FC;
    --to-dark-blue: #2D50F8;
    --to-card-bg: rgba(11, 21, 39, 0.7);
    --to-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Metro Map Background */
.metro-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
    opacity: 0.6;
    will-change: transform;
    /* Hint for browser optimization */
}

.metro-map {
    width: 100%;
    height: 100%;
}

/* Station Animations */
.station {
    fill: currentColor;
    will-change: r, fill, filter;
    /* Hint for animation optimization */
}

.station-red {
    color: #FF0033;
    animation: pulseRed 2s ease-in-out infinite;
}

.station-green {
    color: #00FF66;
    animation: pulseGreen 2.5s ease-in-out infinite;
}

/* Stagger animations for different stations */
.station:nth-child(odd) {
    animation-delay: 0.5s;
}

.station:nth-child(3n) {
    animation-delay: 1s;
}

.station:nth-child(4n) {
    animation-delay: 1.5s;
}

@keyframes pulseRed {

    0%,
    100% {
        fill: rgba(255, 0, 51, 0.3);
        /* Simplified filter for performance */
        filter: drop-shadow(0 0 2px rgba(255, 0, 51, 0.5));
        r: 8;
    }

    50% {
        fill: rgba(255, 0, 51, 0.9);
        /* Reduced blur radius and number of shadows */
        filter: drop-shadow(0 0 10px rgba(255, 0, 51, 1));
        r: 10;
    }
}

@keyframes pulseGreen {

    0%,
    100% {
        fill: rgba(0, 255, 100, 0.3);
        filter: drop-shadow(0 0 2px rgba(0, 255, 100, 0.5));
        r: 8;
    }

    50% {
        fill: rgba(0, 255, 100, 0.9);
        filter: drop-shadow(0 0 10px rgba(0, 255, 100, 1));
        r: 10;
    }
}

/* Animated Train Lights - Controlled by JS */
.train-light {
    stroke-linecap: round;
    /* Reduced shadow complexity */
    filter: drop-shadow(0 0 10px white) drop-shadow(0 0 20px rgba(255, 255, 255, 0.5));
    will-change: stroke-dashoffset;
}



h1,
h2,
h3,
h4,
.logo,
.nav-actions a,
.btn {
    font-family: var(--font-heading);
    text-transform: uppercase;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

.text-gradient {
    background: var(--gradient);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.btn {
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--primary);
    color: white;
}

.btn-primary:hover {
    background: transparent;
    border-color: var(--primary);
    box-shadow: 0 0 15px var(--primary);
}

.btn-outline {
    border-color: white;
    color: white;
}

.btn-outline:hover {
    background: white;
    color: black;
}



.btn-large {
    padding: 15px 40px;
    font-size: 1.1rem;
}

/* Header */
/* New Header Styles */
#main-header {
    position: relative;
    /* Was fixed, now relative so it scrolls */
    width: 100%;
    z-index: 1000;
}

#hero {
    padding-top: 0;
    /* Removed 140px padding since header is now relative */
}

/* Top Bar */
.top-bar {
    background: #ffffff;
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e0e0e0;
}

.top-bar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logos-area {
    display: flex;
    align-items: center;
    gap: 20px;
}

.main-logo img {
    height: 60px;
    width: auto;
}

.header-ministry-logo,
.header-mth-logo {
    height: 40px;
    width: auto;
    filter: none;
    /* Reset filter for white bg */
}

.top-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.social-icons {
    display: flex;
    gap: 10px;
}

.social-icon {
    font-size: 1.2rem;
    color: #555;
    transition: color 0.3s;
}

.social-icon:hover {
    color: var(--primary);
}

.lang-switch {
    font-size: 0.9rem;
    font-weight: 600;
    color: #555;
}

.lang-switch span {
    color: #aaa;
    cursor: pointer;
}

.btn-member-login {
    background: #ff3355;
    color: white;
    padding: 8px 15px;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

.btn-member-login:hover {
    background: #e62e4d;
}

/* Bottom Bar */
.bottom-bar {
    background: #000000;
    /* Black requested */
    height: 50px;
    display: flex;
    align-items: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 3px solid var(--primary);
}

.bottom-bar.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: slideDown 0.3s ease-in-out;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 25px;
    width: 100%;
}

.desktop-nav a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    padding: 5px 0;
    position: relative;
}

.desktop-nav a:hover,
.desktop-nav a.active {
    color: white;
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #ff3355;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
    width: 100%;
}

@media (max-width: 992px) {
    .top-bar {
        height: auto;
        padding: 10px 0;
    }

    .top-bar-container {
        flex-direction: column;
        gap: 15px;
    }

    .bottom-bar {
        display: none;
        /* Use mobile menu instead */
    }

    #hero {
        padding-top: 130px;
    }
}



.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: #111;
    z-index: 999;
    padding: 100px 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: 0.4s ease;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu a {
    font-size: 1.2rem;
    font-weight: 700;
}

/* Hero Section */
/* Hero Section */
#hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: var(--header-height);
    background: #000;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.5;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-label {
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    font-weight: 800;
    margin-bottom: 30px;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Common Section Styles */
.section {
    padding: 100px 0;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.mb-large {
    margin-bottom: 60px;
}

.text-center {
    text-align: center;
}

/* About Section */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #ccc;
}

.stats-mini {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    line-height: 1.2;
    color: #ccc;
}

.img-box {
    width: 100%;
    height: 400px;
    background: #222;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.glow-effect {
    box-shadow: 0 0 30px rgba(0, 102, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px 30px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.icon-box {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.feature-card p {
    color: #aaa;
    font-size: 0.95rem;
}

/* Speakers */
/* Speakers */
.speakers-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.speaker-card {
    text-align: center;
}

.speaker-img {
    width: 100%;
    aspect-ratio: 1;
    background: #333;
    border-radius: 4px;
    margin-bottom: 15px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.speaker-card:hover .speaker-img {
    filter: grayscale(0%);
    box-shadow: 4px 4px 0 var(--primary);
}

.speaker-card h4 {
    font-size: 0.95rem;
    margin-bottom: 3px;
    line-height: 1.2;
}

.speaker-card p {
    color: var(--text-muted);
    font-size: 0.8rem;
    line-height: 1.2;
}

/* More Speakers Toggle */
.more-speakers-hidden {
    display: none;
}

.more-speakers-hidden.show {
    display: contents;
}

#toggle-speakers-btn {
    background: #000;
    color: #fff;
    border: 1px solid #fff;
}

#toggle-speakers-btn:hover {
    background: #111;
    color: #fff;
}

/* Zigzag Timeline Styles */
.zigzag-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.zigzag-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 6px;
    background: white;
    transform: translateX(-50%);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    animation: lineGlow 3s ease-in-out infinite;
    border-radius: 3px;
}

@keyframes lineGlow {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 255, 255, 0.8);
    }
}

.train-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 2rem;
    z-index: 10;
    filter: drop-shadow(0 0 10px rgba(255, 51, 153, 0.8));
    transition: top 0.1s ease-out;
    animation: trainPulse 2s ease-in-out infinite;
}

@keyframes trainPulse {

    0%,
    100% {
        filter: drop-shadow(0 0 10px rgba(255, 51, 153, 0.8));
        transform: translateX(-50%) scale(1);
    }

    50% {
        filter: drop-shadow(0 0 20px rgba(56, 153, 252, 1));
        transform: translateX(-50%) scale(1.1);
    }
}

/* Track Dots */
.track-dots {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 0;
    z-index: 5;
}

.track-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #00cc66;
    box-shadow: 0 0 12px rgba(0, 204, 102, 0.7);
    transition: all 0.3s ease;
}

.track-dot.passed {
    background: #ff3333;
    box-shadow: 0 0 10px rgba(255, 51, 51, 0.6);
    animation: dotPassed 0.5s ease;
}

@keyframes dotPassed {
    0% {
        transform: scale(1.5);
    }

    100% {
        transform: scale(1);
    }
}

.zigzag-item {
    position: relative;
    width: 45%;
    margin-bottom: 60px;
}

.zigzag-item.right {
    margin-left: 55%;
}

.zigzag-item.left {
    margin-left: 0;
    text-align: right;
}

.zigzag-connector {
    position: absolute;
    width: 20px;
    height: 20px;
    background: linear-gradient(135deg, #ff3399, #3899FC);
    border-radius: 50%;
    top: 30px;
    z-index: 2;
    box-shadow: 0 0 15px rgba(255, 51, 153, 0.5);
}

.zigzag-item.right .zigzag-connector {
    left: -35px;
    transform: translateX(-50%);
    animation: connectorPulse 2s ease-in-out infinite;
}

.zigzag-item.left .zigzag-connector {
    right: -35px;
    transform: translateX(50%);
    animation: connectorPulse 2s ease-in-out infinite 0.5s;
}

@keyframes connectorPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 51, 153, 0.5);
        transform: translateX(-50%) scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(56, 153, 252, 0.8), 0 0 50px rgba(255, 51, 153, 0.4);
        transform: translateX(-50%) scale(1.2);
    }
}

.zigzag-item.left .zigzag-connector {
    animation: connectorPulseLeft 2s ease-in-out infinite 0.5s;
}

@keyframes connectorPulseLeft {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(56, 153, 252, 0.5);
        transform: translateX(50%) scale(1);
    }

    50% {
        box-shadow: 0 0 30px rgba(255, 51, 153, 0.8), 0 0 50px rgba(56, 153, 252, 0.4);
        transform: translateX(50%) scale(1.2);
    }
}

.zigzag-content {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 18px;
    transition: all 0.3s ease;
}

.zigzag-item.right .zigzag-content {
    border-left: 3px solid #ff3399;
}

.zigzag-item.left .zigzag-content {
    border-right: 3px solid #3899FC;
}

.zigzag-content:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 51, 153, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.zigzag-icon {
    display: block;
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.zigzag-content h3 {
    font-size: 0.85rem;
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.zigzag-content p {
    font-size: 0.8rem;
    color: #999;
    line-height: 1.7;
}

.zigzag-item.left .zigzag-content h3,
.zigzag-item.left .zigzag-content p {
    text-align: right;
}

/* Zigzag Responsive */
@media (max-width: 768px) {
    .zigzag-timeline {
        padding: 20px 0;
    }

    .zigzag-line {
        left: 15px;
        width: 3px;
    }

    .track-dots {
        left: 15px;
    }

    .track-dot {
        width: 10px;
        height: 10px;
    }

    .train-marker {
        left: 15px !important;
        transform: translateX(-50%) !important;
        font-size: 1.2rem;
        animation: none !important;
    }

    .zigzag-item {
        width: calc(100% - 45px);
        margin-left: 45px !important;
        margin-right: 0 !important;
        text-align: left !important;
        margin-bottom: 20px;
    }

    .zigzag-item.left,
    .zigzag-item.right {
        justify-content: flex-start;
    }

    .zigzag-connector {
        display: none;
    }

    .zigzag-item.left .zigzag-content,
    .zigzag-item.right .zigzag-content {
        border-left: 3px solid #ff3399;
        border-right: none;
        width: 100%;
        max-width: 100%;
    }

    .zigzag-item.left .zigzag-content h3,
    .zigzag-item.left .zigzag-content p,
    .zigzag-item.right .zigzag-content h3,
    .zigzag-item.right .zigzag-content p {
        text-align: left;
    }

    .zigzag-content {
        padding: 15px;
    }

    .zigzag-icon {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .zigzag-content h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .zigzag-content p {
        font-size: 0.8rem;
        line-height: 1.5;
    }
}

@media (max-width: 480px) {
    .zigzag-content {
        padding: 12px;
    }

    .zigzag-content h3 {
        font-size: 0.85rem;
    }

    .zigzag-content p {
        font-size: 0.75rem;
    }

    .zigzag-icon {
        font-size: 1.3rem;
    }
}


/* Response for smaller screens */
@media (max-width: 992px) {
    .speakers-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .speakers-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 576px) {
    .speakers-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Stats Section */
/* Stats Section */
.stats-section {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8));
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    position: relative;
    overflow: hidden;
}

.section-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.7;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, var(--bg-color), rgba(0, 0, 0, 0.4));
    z-index: 1;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.huge-number {
    display: inline;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #ff0033, #cc0066, #6633ff, #3366ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-plus {
    display: inline;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(90deg, #6633ff, #3366ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-box .stat-desc {
    display: block;
    margin-top: 10px;
}

.stat-desc {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
}

/* Footer */
.footer {
    background-color: var(--bg-darker);
    padding: 80px 0 0;
    font-size: 0.9rem;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Main Footer Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Section */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-brand {
    display: inline-block;
    max-width: fit-content;
}

.footer-logo-img {
    height: 100px;
    width: auto;
    transition: transform 0.3s ease;
}

.footer-brand:hover .footer-logo-img {
    transform: scale(1.05);
}

.footer-disclaimer {
    display: flex;
    align-items: flex-start;
    gap: 25px;
}

.footer-disclaimer p {
    flex: 1;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

.mth-logo-link {
    flex-shrink: 0;
    display: block;
    transition: transform 0.3s ease;
}

.mth-logo {
    height: 80px;
    width: auto;
    display: block;
}

.mth-logo-link:hover {
    transform: translateY(-3px);
}

/* Right Section */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.footer-partners-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-partners {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.partner-link {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.partner-link:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

.partner-logo {
    height: 45px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.partner-link:hover .partner-logo {
    opacity: 1;
}

.esca-link {
    flex-direction: column;
    align-items: flex-start;
}

.esca-label-text {
    font-size: 0.75rem;
    color: #C0C0C0;
    font-weight: 600;
    letter-spacing: 0.5px;
    line-height: 1.4;
    margin-top: 5px;
}

/* Footer Bottom */
.footer-bottom {
    padding: 30px 0;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
    margin: 0;
}

/* Responsive Footer */
@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-disclaimer {
        flex-direction: column;
        gap: 20px;
    }

    .mth-logo {
        height: 60px;
    }
}

/* Schedule View Styles */
.schedule-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    margin-top: -20px;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 15px 30px;
    border-radius: 12px;
    cursor: pointer;
    text-align: center;
    transition: all 0.3s ease;
    min-width: 160px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.tab-btn.active {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 10px 20px rgba(255, 0, 51, 0.3);
}

.tab-btn .day-label {
    display: block;
    font-size: 1.2rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: white;
}

.tab-btn .date-label {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.tab-btn.active .date-label {
    color: white;
}

/* Timeline Layout */
.schedule-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.schedule-day {
    display: none;
    animation: fadeIn 0.5s ease;
}

.schedule-day.active {
    display: block;
}

.schedule-item {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
    position: relative;
}

/* Time Column */
.time-col {
    min-width: 100px;
    text-align: right;
    padding-top: 15px;
    position: relative;
}

.time-col::after {
    content: '';
    position: absolute;
    top: 25px;
    right: -19px;
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--primary);
    z-index: 2;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 30px;
    bottom: -30px;
    left: 115px;
    width: 2px;
    background: rgba(255, 255, 255, 0.1);
}

.schedule-item:last-child::before {
    display: none;
}

.start-time {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.end-time {
    display: block;
    font-size: 0.9rem;
    color: #888;
}

/* Session Card */
.session-card {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.session-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.session-type {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.session-type.main-stage {
    background: rgba(255, 0, 51, 0.2);
    color: #ff3333;
}

.session-type.panel {
    background: rgba(0, 102, 255, 0.2);
    color: #3388ff;
}

.session-type.keynote {
    background: rgba(255, 200, 0, 0.2);
    color: #ffcc00;
}

.session-type.investment {
    background: rgba(0, 200, 100, 0.2);
    color: #00cc66;
}

.session-type.workshop {
    background: rgba(150, 50, 255, 0.2);
    color: #9933ff;
}

.session-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.3;
}

.session-desc {
    color: #aaa;
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.5;
}

.session-speakers {
    display: flex;
    gap: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 15px;
}

.mini-speaker {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: white;
}

.ms-img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #444;
}

@media (max-width: 768px) {
    .schedule-item {
        flex-direction: column;
        gap: 15px;
    }

    .time-col {
        text-align: left;
        padding-top: 0;
        display: flex;
        gap: 10px;
    }

    .time-col::after {
        display: none;
    }

    .schedule-item::before {
        display: none;
    }

    .session-speakers {
        flex-wrap: wrap;
    }
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #222;
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-right {
    opacity: 0;
    transform: translateX(-30px);
    transition: all 0.8s ease;
}

.fade-left {
    opacity: 0;
    transform: translateX(30px);
    transition: all 0.8s ease;
}

.visible {
    opacity: 1;
    transform: translateY(0) translateX(0);
}

.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

/* Responsive */
@media (max-width: 900px) {

    .desktop-nav,
    .nav-actions .btn {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .grid-2,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        flex-direction: column;
    }
}

/* Startup Invitation Timeline */
#startup-invite {
    position: relative;
    padding: 100px 0 150px;
    background: radial-gradient(circle at center, #0a0a0a 0%, #000 100%);
    overflow: hidden;
}

.text-blue {
    color: var(--accent);
    line-height: 1.2;
}

/* Modern Journey Timeline */
.journey-timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

/* The Central Path Line */
.journey-path {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg,
            rgba(0, 102, 255, 0.2) 0%,
            rgba(255, 0, 51, 0.2) 100%);
    transform: translateX(-50%);
    border-radius: 2px;
}

.path-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg,
            var(--accent) 0%,
            var(--primary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 20px var(--accent), 0 0 40px var(--accent);
    transition: height 0.1s ease-out;
}

/* Train Marker */
.train-marker {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    z-index: 10;
    transition: top 0.1s ease-out;
}

.train-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    border-radius: 50%;
    font-size: 24px;
    box-shadow: 0 0 30px var(--accent), 0 0 60px rgba(0, 102, 255, 0.5);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 0 30px var(--accent);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 0 50px var(--accent), 0 0 80px var(--primary);
    }
}

/* Journey Steps */
.journey-step {
    position: relative;
    display: flex;
    align-items: center;
    margin-bottom: 80px;
}

.journey-step:last-child {
    margin-bottom: 0;
}

.step-right {
    justify-content: flex-start;
    padding-left: calc(50% + 40px);
}

.step-left {
    justify-content: flex-end;
    padding-right: calc(50% + 40px);
}

/* Connector Line from center to card */
.step-connector {
    position: absolute;
    top: 50%;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), transparent);
    transform: translateY(-50%);
}

.step-right .step-connector {
    left: calc(50% + 2px);
}

.step-left .step-connector {
    right: calc(50% + 2px);
    background: linear-gradient(270deg, var(--accent), transparent);
}

/* Glass Card Style */
.glass-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    max-width: 380px;
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.step-badge {
    display: inline-block;
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 15px;
}

.step-card h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-card p {
    font-size: 1rem;
    color: #aaa;
    line-height: 1.6;
}

/* Timeline Responsive */
@media (max-width: 768px) {
    .journey-path {
        left: 30px;
    }

    .step-right,
    .step-left {
        padding-left: 70px;
        padding-right: 20px;
        justify-content: flex-start;
    }

    .step-connector {
        display: none;
    }

    .glass-card {
        max-width: 100%;
    }
}

/* =========================================
   TAKE OFF ISTANBUL CLONE STYLES
   ========================================= */

/* Layout */
.schedule-layout {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
}

/* Sidebar Filters */
.schedule-sidebar {
    background: transparent;
    position: sticky;
    top: 100px;
    height: fit-content;
}

.filter-box {
    border: 1px solid var(--to-border);
    border-radius: 20px;
    padding: 30px;
    margin-bottom: 25px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(15px);
    transition: all 0.3s ease;
}

.filter-box:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(56, 153, 252, 0.3);
}

.filter-title {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    display: block;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Day Tabs as Pills */
.day-pills {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.day-pill {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border: 2px solid var(--to-border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.02);
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.day-pill:hover {
    border-color: var(--to-blue);
    color: white;
    background: rgba(56, 153, 252, 0.1);
    transform: translateX(5px);
}

.day-pill.active {
    background: linear-gradient(135deg, #cc0000, #ff3333);
    border-color: #ff3333;
    color: white;
    box-shadow: 0 8px 20px rgba(255, 51, 51, 0.4);
    transform: translateX(5px);
}

.day-pill-date {
    font-size: 0.85rem;
    opacity: 0.8;
}

/* Stage Tags */
.stage-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.stage-tag {
    padding: 8px 16px;
    border: 1px solid var(--to-border);
    border-radius: 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
}

.stage-tag:hover,
.stage-tag.active {
    border-color: var(--to-blue);
    color: white;
    background: rgba(56, 153, 252, 0.1);
}

.stage-tag.active {
    background: var(--to-blue);
    color: white;
}

/* Search Input */
.filter-search {
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid var(--to-border);
    padding: 15px 18px;
    border-radius: 12px;
    color: white;
    outline: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.filter-search::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.filter-search:focus {
    border-color: var(--to-blue);
    background: rgba(0, 0, 0, 0.7);
    box-shadow: 0 0 0 3px rgba(56, 153, 252, 0.1);
}

/* Session Cards Clone */
/* Day Switching */
.schedule-day {
    display: none !important;
    animation: dayFadeIn 0.5s ease;
}

.schedule-day.active {
    display: flex !important;
    flex-direction: column;
    gap: 30px;
}

@keyframes dayFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.clone-card {
    background: var(--to-card-bg);
    border: 1px solid var(--to-border);
    border-radius: 24px;
    padding: 35px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.clone-card:hover {
    border-color: var(--to-blue);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(56, 153, 252, 0.2);
    background: rgba(0, 0, 0, 0.5);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.card-time {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--to-blue);
    margin-bottom: 10px;
    display: block;
}

.card-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: white;
    text-transform: uppercase;
    margin-bottom: 15px;
    line-height: 1.2;
    transition: color 0.3s;
}

.clone-card:hover .card-title {
    color: var(--to-blue);
}

.card-desc {
    font-size: 1.1rem;
    color: #b9b9b9;
    margin-bottom: 30px;
    line-height: 1.6;
    max-width: 90%;
}

/* Speaker Bottom Section */
.card-speaker-section {
    display: flex;
    align-items: center;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.speaker-label {
    background: rgba(56, 153, 252, 0.1);
    color: var(--to-blue);
    padding: 5px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-right: 20px;
}

.speaker-info {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    width: 100%;
}

.speaker-avatar {
    width: 50px;
    height: 50px;
    min-width: 50px;
    min-height: 50px;
    flex-shrink: 0;
    border-radius: 50%;
    background-color: #333;
    background-size: cover;
    background-position: center;
    object-fit: cover;
    border: 2px solid var(--to-border);
}

/* Make panelist sections vertical */
.card-speaker-section>div[style*="flex-wrap"] {
    flex-direction: column !important;
    gap: 15px !important;
}

.speaker-details h5 {
    font-size: 1rem;
    color: white;
    margin-bottom: 4px;
    font-weight: 600;
}

.speaker-details p {
    font-size: 0.85rem;
    color: #999;
}

/* Responsive */
@media (max-width: 900px) {
    .schedule-layout {
        grid-template-columns: 1fr;
    }

    .schedule-sidebar {
        margin-bottom: 20px;
        position: sticky;
        top: 70px;
        z-index: 100;
    }

    .filter-box {
        padding: 20px;
        border-radius: 16px;
    }

    .day-pills {
        flex-direction: row;
        gap: 10px;
    }

    .day-pill {
        flex: 1;
        padding: 15px;
        text-align: center;
        flex-direction: column;
        gap: 5px;
    }

    .day-name {
        font-size: 0.9rem;
    }

    .day-pill-date {
        font-size: 0.75rem;
    }

    .clone-card {
        padding: 20px;
        border-radius: 20px;
    }

    .card-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .card-time {
        font-size: 1.1rem;
    }

    .card-speaker-section {
        flex-direction: column;
        gap: 15px;
    }

    .speaker-info {
        width: 100%;
    }

    .speaker-details h5 {
        font-size: 0.95rem;
    }

    .speaker-details p {
        font-size: 0.8rem;
    }

    .speaker-label {
        font-size: 0.7rem;
    }
}

@media (max-width: 600px) {
    .schedule-section .container {
        padding: 0 15px;
    }

    .filter-box {
        padding: 15px;
        margin-bottom: 20px;
    }

    .filter-title {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .day-pill {
        padding: 12px 10px;
        border-radius: 12px;
    }

    .clone-card {
        padding: 15px;
        border-radius: 16px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-time {
        font-size: 0.95rem;
    }

    .card-desc {
        font-size: 0.85rem;
        line-height: 1.5;
    }

    .card-tags {
        margin-top: 10px;
    }

    .card-tag {
        font-size: 0.65rem;
        padding: 4px 8px;
    }

    .speaker-avatar {
        width: 40px;
        height: 40px;
        min-width: 40px;
        min-height: 40px;
    }

    .speaker-details h5 {
        font-size: 0.85rem;
    }

    .speaker-details p {
        font-size: 0.75rem;
    }
}

/* Registration Page Styles */
.register-hero {
    padding: 150px 0 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, var(--bg-dark) 100%);
}

.register-form-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.register-info {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.register-info h2 {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
}

.info-icon {
    font-size: 1.5rem;
}

.info-item strong {
    display: block;
    color: white;
    margin-bottom: 5px;
}

.info-item p {
    color: #999;
    font-size: 0.9rem;
}

.register-form-wrapper {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
}

.register-form-wrapper h2 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: white;
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
}

.form-group input::placeholder {
    color: #666;
}

@media (max-width: 768px) {
    .register-form-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .register-info,
    .register-form-wrapper {
        padding: 25px;
    }
}

/* Pricing Section */
.pricing-section {
    margin-top: 80px;
    padding-top: 60px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 700px;
    margin: 0 auto 50px;
}

.pricing-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(56, 153, 252, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.pricing-badge {
    background: linear-gradient(135deg, var(--primary), #ff3399);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 25px;
}

.pricing-amount {
    margin-bottom: 10px;
}

.pricing-amount .price {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
}

.pricing-amount .currency {
    font-size: 1rem;
    color: #999;
    display: block;
    margin-top: 5px;
}

.pricing-note {
    color: #666;
    font-size: 0.9rem;
}

/* Included Services */
.included-services {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
}

.included-services h3 {
    text-align: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 30px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.service-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.service-item p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .pricing-cards {
        grid-template-columns: 1fr;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .included-services {
        padding: 25px;
    }

    .pricing-amount .price {
        font-size: 2rem;
    }
}

/* Sponsors Page Styles */
.sponsors-hero {
    padding: 150px 0 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, var(--bg-dark) 100%);
}

.sponsor-category {
    margin-bottom: 60px;
}

.category-title {
    text-align: center;
    font-size: 1rem;
    letter-spacing: 3px;
    color: #fff;
    margin-bottom: 30px;
    position: relative;
}

.category-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), #ff3399);
}

.sponsor-grid {
    display: grid;
    gap: 20px;
    justify-items: center;
}

.sponsor-grid-1 {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
}

.sponsor-grid-2 {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

.sponsor-grid-3 {
    grid-template-columns: repeat(3, 1fr);
    max-width: 800px;
    margin: 0 auto;
}

.sponsor-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.sponsor-grid-5 {
    grid-template-columns: repeat(5, 1fr);
}

.sponsor-grid-6 {
    grid-template-columns: repeat(6, 1fr);
}

.sponsor-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    width: 100%;
}

.sponsor-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.sponsor-logo-placeholder {
    width: 100%;
    height: 80px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
}

.sponsor-yurutucu .sponsor-logo-placeholder {
    height: 100px;
    background: linear-gradient(135deg, rgba(56, 153, 252, 0.1), rgba(255, 51, 153, 0.1));
    border-color: rgba(56, 153, 252, 0.3);
}

.sponsor-platinum .sponsor-logo-placeholder {
    height: 100px;
    background: linear-gradient(135deg, rgba(229, 228, 226, 0.1), rgba(200, 200, 200, 0.05));
    border-color: rgba(229, 228, 226, 0.3);
}

.sponsor-gold .sponsor-logo-placeholder {
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1), rgba(255, 200, 0, 0.05));
    border-color: rgba(255, 215, 0, 0.3);
}

.sponsor-silver .sponsor-logo-placeholder {
    background: linear-gradient(135deg, rgba(192, 192, 192, 0.1), rgba(180, 180, 180, 0.05));
    border-color: rgba(192, 192, 192, 0.3);
}

.sponsor-card p {
    margin: 15px 0 0;
    color: #999;
    font-size: 0.85rem;
}

/* Sponsor Benefits */
.sponsor-benefits-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.benefit-card h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.benefit-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

.sponsor-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(56, 153, 252, 0.1), rgba(255, 51, 153, 0.1));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 25px;
    padding: 50px;
}

.sponsor-cta h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.sponsor-cta p {
    color: #999;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .sponsor-grid-4 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsor-grid-5 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsor-grid-6 {
        grid-template-columns: repeat(3, 1fr);
    }

    .sponsor-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .sponsor-grid-2 {
        grid-template-columns: 1fr;
    }

    .sponsor-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-5 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-grid-6 {
        grid-template-columns: repeat(2, 1fr);
    }

    .sponsor-benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* B2B Page Styles */
.b2b-hero {
    padding: 150px 0 60px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.9) 0%, var(--bg-dark) 100%);
}

.b2b-hero .hero-subtitle {
    color: #999;
    font-size: 1.2rem;
    max-width: 700px;
    margin: 20px auto 0;
}

.b2b-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.b2b-benefit-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
}

.b2b-benefit-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    background: rgba(0, 0, 0, 0.6);
}

.b2b-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 20px;
}

.b2b-benefit-card h3 {
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: white;
}

.b2b-benefit-card p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* How It Works */
.how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.how-step {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary), #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
}

.how-step h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: white;
}

.how-step p {
    color: #999;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* B2B Stats */
.b2b-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    text-align: center;
}

.b2b-stat {
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    background: linear-gradient(135deg, var(--primary), #ff3399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: #999;
    font-size: 0.95rem;
    margin-top: 10px;
    display: block;
}

/* Participant Grid */
.participant-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.participant-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}

.participant-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
}

.participant-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 15px;
}

.participant-card h3 {
    font-size: 1rem;
    margin-bottom: 10px;
    color: white;
}

.participant-card p {
    color: #999;
    font-size: 0.85rem;
}

/* B2B CTA */
.b2b-cta {
    text-align: center;
    background: linear-gradient(135deg, rgba(56, 153, 252, 0.15), rgba(255, 51, 153, 0.15));
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    padding: 60px 40px;
}

.b2b-cta h2 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.b2b-cta p {
    color: #999;
    max-width: 600px;
    margin: 0 auto 30px;
    font-size: 1.1rem;
}

@media (max-width: 992px) {
    .b2b-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .how-it-works-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .participant-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .b2b-benefits-grid {
        grid-template-columns: 1fr;
    }

    .how-it-works-grid {
        grid-template-columns: 1fr;
    }

    .b2b-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .participant-grid {
        grid-template-columns: 1fr;
    }
}

/* Partner Categories - B2B Page */
.partner-category {
    margin-bottom: 50px;
}

.partner-category-title {
    font-size: 1.1rem;
    color: white;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.partner-logos-large {
    grid-template-columns: repeat(2, 1fr);
    max-width: 500px;
}

.partner-logo-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.partner-logo-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.partner-logo-card.large {
    padding: 25px;
}

.partner-logo-placeholder {
    width: 100%;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 0.75rem;
    border: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 10px;
}

.partner-logo-card.large .partner-logo-placeholder {
    height: 70px;
    font-size: 0.9rem;
}

.partner-logo-img {
    width: 100%;
    height: 50px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 10px;
    background: rgba(255, 255, 255, 0.05);
    padding: 5px;
    filter: brightness(0) invert(1);
}

.partner-logo-card.large .partner-logo-img {
    height: 70px;
}

.partner-name {
    display: block;
    font-size: 0.75rem;
    color: #999;
    line-height: 1.3;
}

.partner-logo-card.large .partner-name {
    font-size: 0.85rem;
}

@media (max-width: 992px) {
    .partner-logos-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .partner-logos-large {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modern Stats Section */
.stats-modern {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 30px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    box-shadow: 0 8px 20px rgba(56, 153, 252, 0.15);
}

.stat-icon {
    font-size: 1.3rem;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(56, 153, 252, 0.2), rgba(255, 51, 153, 0.2));
    border-radius: 10px;
    flex-shrink: 0;
}

.stat-content {
    display: flex;
    flex-direction: column;
}

.stat-value {
    display: flex;
    align-items: baseline;
}

.stat-card .stat-number {
    font-size: 1.4rem;
    font-weight: 800;
    color: #ff0033;
    line-height: 1;
}

.stat-plus {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ff0033;
    margin-left: 1px;
}

.stat-card .stat-label {
    font-size: 0.65rem;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    margin-top: 3px;
    line-height: 1.2;
}

@media (max-width: 992px) {
    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .stats-modern {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .stat-card {
        padding: 15px;
    }

    .stat-icon {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .stat-card .stat-number {
        font-size: 1.5rem;
    }
}

/* ================================================
   STICKY SCROLL TIMELINE STYLES
   ================================================ */

.sticky-timeline-section {
    position: relative;
    height: auto;
    min-height: 100vh;
    /* Reduced height - scroll passes through quickly */
    background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
    padding: 80px 0;
}

.sticky-timeline-trigger {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.sticky-timeline-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.sticky-timeline-container {
    width: 100%;
    padding: 60px 0;
}

.sticky-timeline-container .section-title {
    margin-bottom: 50px;
}

.sticky-timeline-content {
    display: flex;
    gap: 60px;
    align-items: stretch;
    min-height: 400px;
}

/* Timeline Path Container */
.timeline-path-container {
    position: relative;
    width: 80px;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
}

/* Straight Line */
.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    border-radius: 3px;
}

.timeline-line-bg {
    top: 0;
    bottom: 0;
    background: #00cc44;
    /* Green for upcoming */
    z-index: 1;
}

.timeline-line-progress {
    top: 0;
    height: 0%;
    background: #ff0033;
    /* Red for passed */
    z-index: 2;
    transition: height 0.3s ease;
}

/* Station Wrapper */
.station-wrapper {
    position: absolute;
    display: flex;
    align-items: center;
    z-index: 10;
}

.station-wrapper.left {
    right: 50%;
    flex-direction: row-reverse;
    padding-right: 5px;
}

.station-wrapper.right {
    left: 50%;
    flex-direction: row;
    padding-left: 5px;
}

/* Station Connector Line */
.station-connector {
    width: 20px;
    height: 3px;
    background: #00cc44;
    transition: all 0.3s ease;
}

.station-wrapper.active .station-connector,
.station-wrapper.passed .station-connector {
    background: #ff0033;
}

/* Station Icons */
.timeline-station-icon {
    font-size: 1.2rem;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1a1a1a;
    border: 3px solid #00cc44;
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.station-wrapper.active .timeline-station-icon {
    border-color: #ff0033;
    background: rgba(255, 0, 51, 0.2);
    opacity: 1;
    transform: scale(1.15);
    box-shadow: 0 0 15px rgba(255, 0, 51, 0.6);
}

.station-wrapper.passed .timeline-station-icon {
    border-color: #ff0033;
    opacity: 1;
}

/* Station positions - evenly distributed */
.station-wrapper[data-index="0"] {
    top: 0%;
}

.station-wrapper[data-index="1"] {
    top: 14.28%;
}

.station-wrapper[data-index="2"] {
    top: 28.57%;
}

.station-wrapper[data-index="3"] {
    top: 42.85%;
}

.station-wrapper[data-index="4"] {
    top: 57.14%;
}

.station-wrapper[data-index="5"] {
    top: 71.42%;
}

.station-wrapper[data-index="6"] {
    top: 85.7%;
}

/* Moving Metro Icon */
.timeline-metro-icon {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    font-size: 1.6rem;
    z-index: 15;
    filter: drop-shadow(0 0 10px rgba(255, 0, 51, 0.8));
    transition: top 0.2s ease;
}




/* Timeline Items Container */
.timeline-items-container {
    flex: 1;
    position: relative;
    min-height: 350px;
}

.timeline-item {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ff0033;
    border-radius: 12px;
    padding: 30px;
}

.timeline-item.active {
    opacity: 1;
    visibility: visible;
}

.timeline-item-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.timeline-item h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.timeline-item p {
    font-size: 1rem;
    color: #999;
    line-height: 1.7;
}

/* Progress Bar */
.timeline-progress-bar {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    margin-top: 40px;
    overflow: hidden;
}

.timeline-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #ff0033, #ff3399);
    border-radius: 2px;
    transition: width 0.1s ease;
}

/* Responsive - Mobile Scroll Timeline */
@media (max-width: 768px) {
    .sticky-timeline-section {
        height: 350vh;
        padding: 0;
    }

    .sticky-timeline-wrapper {
        position: sticky;
        top: 0;
        height: 100vh;
        display: flex;
        align-items: center;
    }

    .sticky-timeline-container {
        padding: 20px 15px;
    }

    .sticky-timeline-container .section-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }

    .sticky-timeline-content {
        flex-direction: row;
        gap: 15px;
        align-items: stretch;
        min-height: 60vh;
    }

    /* Mobile Timeline Path */
    .timeline-path-container {
        display: block;
        width: 40px;
        min-width: 40px;
        position: relative;
        flex-shrink: 0;
    }

    .timeline-line {
        left: 50%;
        transform: translateX(-50%);
        width: 4px;
    }

    .timeline-line-bg {
        height: 100%;
    }

    /* Show Metro Icon on Mobile */
    .timeline-metro-icon {
        display: block;
        font-size: 1.2rem;
        left: 50%;
        transform: translateX(-50%);
        z-index: 20;
    }

    /* Hide Station Wrappers on Mobile */
    .station-wrapper {
        display: none;
    }

    /* Mobile Items Container */
    .timeline-items-container {
        flex: 1;
        position: relative;
        min-height: 250px;
    }

    .timeline-item {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        transform: translateY(-50%);
        opacity: 0;
        visibility: hidden;
        margin-bottom: 0;
        padding: 20px;
        border-radius: 10px;
        border-left: 3px solid #ff0033;
    }

    .timeline-item.active {
        opacity: 1;
        visibility: visible;
    }

    .timeline-item-icon {
        display: block;
        font-size: 1.5rem;
        margin-bottom: 10px;
    }

    .timeline-item h3 {
        font-size: 0.9rem;
        margin-bottom: 8px;
    }

    .timeline-item p {
        font-size: 0.8rem;
        line-height: 1.5;
    }

    .timeline-progress-bar {
        display: block;
        margin-top: 20px;
    }
}

@media (max-width: 480px) {
    .sticky-timeline-section {
        height: 300vh;
    }

    .sticky-timeline-container .section-title {
        font-size: 1rem;
    }

    .timeline-path-container {
        width: 35px;
        min-width: 35px;
    }

    .timeline-metro-icon {
        font-size: 1rem;
    }

    .timeline-item {
        padding: 15px;
    }

    .timeline-item-icon {
        font-size: 1.3rem;
    }

    .timeline-item h3 {
        font-size: 0.85rem;
    }

    .timeline-item p {
        font-size: 0.75rem;
    }
}

/* Register page helpers (non-breaking) */
.pricing-top {
    padding-top: 140px;
}

.pricing-subtitle {
    max-width: 800px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-label--spaced {
    margin-bottom: 20px;
}

.price-row {
    margin: 30px 0;
}

.price-number {
    font-size: 4rem;
}

.price-suffix {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    margin-left: 10px;
}

.price-per {
    color: rgba(255, 255, 255, 0.5);
}

.glass-card--accent {
    border-color: rgba(255, 0, 51, 0.3);
}

.hero-label--accent {
    background: rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.3);
}

.card-top-gap {
    margin-top: 40px;
}

.card-body {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin: 0;
}

.event-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
    align-items: start;
}

.section-title--sm {
    font-size: 1.5rem;
    margin-bottom: 25px;
}

.stat-gap {
    margin-bottom: 15px;
}

.stat-value--email {
    font-size: 0.95rem;
}

.hero-label--warning {
    background: rgba(255, 0, 51, 0.1);
    border-color: rgba(255, 0, 51, 0.3);
    margin-bottom: 20px;
    display: block;
    width: 100%;
}

.form-group {
    margin-bottom: 15px;
}

.form-group--last {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

.btn-block {
    width: 100%;
}

.btn[disabled],
button[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Register Page Text Visibility */
.card-body {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin: 0;
}

.price-row {
    margin: 30px 0;
}

.price-number {
    font-size: 4rem;
    color: #fff;
}

.price-suffix {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    margin-left: 10px;
}

.price-per {
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* ================================================
   STACKED CARDS TIMELINE EFFECT
   ================================================ */
.sticky-timeline-section .timeline-items-container {
    position: relative;
    height: 280px;
    perspective: 1000px;
}

.sticky-timeline-section .timeline-item {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(10, 10, 30, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 30px;
    opacity: 0;
    transform: translateY(100px) scale(0.9);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

/* Active card - on top */
.sticky-timeline-section .timeline-item.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    z-index: 10;
    pointer-events: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Different border colors for each card */
.sticky-timeline-section .timeline-item[data-index="0"].active {
    border-color: rgba(255, 0, 51, 0.6);
    box-shadow: 0 20px 60px rgba(255, 0, 51, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="1"].active {
    border-color: rgba(0, 102, 255, 0.6);
    box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="2"].active {
    border-color: rgba(0, 200, 100, 0.6);
    box-shadow: 0 20px 60px rgba(0, 200, 100, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="3"].active {
    border-color: rgba(255, 200, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 200, 0, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="4"].active {
    border-color: rgba(150, 50, 255, 0.6);
    box-shadow: 0 20px 60px rgba(150, 50, 255, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="5"].active {
    border-color: rgba(0, 200, 220, 0.6);
    box-shadow: 0 20px 60px rgba(0, 200, 220, 0.2);
}

.sticky-timeline-section .timeline-item[data-index="6"].active {
    border-color: rgba(255, 120, 0, 0.6);
    box-shadow: 0 20px 60px rgba(255, 120, 0, 0.2);
}

/* Cards behind - stacked effect */
.sticky-timeline-section .timeline-item[data-index="0"] {
    z-index: 7;
}

.sticky-timeline-section .timeline-item[data-index="1"] {
    z-index: 6;
}

.sticky-timeline-section .timeline-item[data-index="2"] {
    z-index: 5;
}

.sticky-timeline-section .timeline-item[data-index="3"] {
    z-index: 4;
}

.sticky-timeline-section .timeline-item[data-index="4"] {
    z-index: 3;
}

.sticky-timeline-section .timeline-item[data-index="5"] {
    z-index: 2;
}

.sticky-timeline-section .timeline-item[data-index="6"] {
    z-index: 1;
}

/* Visible stack below active */
.sticky-timeline-section .timeline-item:not(.active) {
    opacity: 0.4;
    transform: translateY(20px) scale(0.95);
}

/* Cards that are passed (above current) - slide up and fade */
.sticky-timeline-section .timeline-item.passed {
    opacity: 0;
    transform: translateY(-50px) scale(0.9);
    pointer-events: none;
}

/* Show next cards as stack below */
.sticky-timeline-section .timeline-item.next-1 {
    opacity: 0.5;
    transform: translateY(15px) scale(0.97);
    z-index: 9;
}

.sticky-timeline-section .timeline-item.next-2 {
    opacity: 0.3;
    transform: translateY(30px) scale(0.94);
    z-index: 8;
}

.sticky-timeline-section .timeline-item.next-3 {
    opacity: 0.15;
    transform: translateY(45px) scale(0.91);
    z-index: 7;
}

/* Timeline item content styling */
.sticky-timeline-section .timeline-item-icon {
    font-size: 2.5rem;
    display: block;
    margin-bottom: 15px;
}

.sticky-timeline-section .timeline-item h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sticky-timeline-section .timeline-item p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* ================================================
   SEGMENTED PROGRESS BAR
   ================================================ */
.timeline-progress-bar.segmented {
    display: flex;
    gap: 6px;
    padding: 0;
    background: transparent;
}

.progress-segment {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.progress-segment:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scaleY(1.5);
}

.progress-segment.active,
.progress-segment.passed {
    background: rgba(255, 255, 255, 0.8);
}

/* Color-coded segments matching card colors */
.progress-segment[data-index="0"].active,
.progress-segment[data-index="0"].passed {
    background: rgba(255, 0, 51, 0.8);
}

.progress-segment[data-index="1"].active,
.progress-segment[data-index="1"].passed {
    background: rgba(0, 102, 255, 0.8);
}

.progress-segment[data-index="2"].active,
.progress-segment[data-index="2"].passed {
    background: rgba(0, 200, 100, 0.8);
}

.progress-segment[data-index="3"].active,
.progress-segment[data-index="3"].passed {
    background: rgba(255, 200, 0, 0.8);
}

.progress-segment[data-index="4"].active,
.progress-segment[data-index="4"].passed {
    background: rgba(150, 50, 255, 0.8);
}

.progress-segment[data-index="5"].active,
.progress-segment[data-index="5"].passed {
    background: rgba(0, 200, 220, 0.8);
}

.progress-segment[data-index="6"].active,
.progress-segment[data-index="6"].passed {
    background: rgba(255, 120, 0, 0.8);
}

/* ================================================
   CIRCULAR NUMBER NAVIGATION
   ================================================ */
.number-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 10px;
}

.number-circle {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid rgba(255, 255, 255, 0.3);
    background: rgba(20, 20, 40, 0.8);
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.number-circle:hover {
    border-color: rgba(255, 255, 255, 0.7);
    transform: scale(1.1);
    color: white;
}

.number-circle.passed {
    border-color: rgba(255, 255, 255, 0.5);
    color: white;
}

/* Pulse animation keyframes */
@keyframes pulse-glow-red {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 51, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 0, 51, 0);
    }
}

@keyframes pulse-glow-blue {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 102, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 102, 255, 0);
    }
}

@keyframes pulse-glow-green {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 100, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 200, 100, 0);
    }
}

@keyframes pulse-glow-yellow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 200, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 200, 0, 0);
    }
}

@keyframes pulse-glow-purple {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(150, 50, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(150, 50, 255, 0);
    }
}

@keyframes pulse-glow-cyan {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(0, 200, 220, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(0, 200, 220, 0);
    }
}

@keyframes pulse-glow-orange {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 120, 0, 0.7);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(255, 120, 0, 0);
    }
}

/* Active states with pulse animation */
.number-circle[data-index="0"].active {
    border-color: rgba(255, 0, 51, 1);
    background: rgba(255, 0, 51, 0.3);
    color: white;
    animation: pulse-glow-red 1.5s infinite;
}

.number-circle[data-index="0"].passed {
    border-color: rgba(255, 0, 51, 0.8);
    background: rgba(255, 0, 51, 0.2);
    color: white;
}

.number-circle[data-index="1"].active {
    border-color: rgba(0, 102, 255, 1);
    background: rgba(0, 102, 255, 0.3);
    color: white;
    animation: pulse-glow-blue 1.5s infinite;
}

.number-circle[data-index="1"].passed {
    border-color: rgba(0, 102, 255, 0.8);
    background: rgba(0, 102, 255, 0.2);
    color: white;
}

.number-circle[data-index="2"].active {
    border-color: rgba(0, 200, 100, 1);
    background: rgba(0, 200, 100, 0.3);
    color: white;
    animation: pulse-glow-green 1.5s infinite;
}

.number-circle[data-index="2"].passed {
    border-color: rgba(0, 200, 100, 0.8);
    background: rgba(0, 200, 100, 0.2);
    color: white;
}

.number-circle[data-index="3"].active {
    border-color: rgba(255, 200, 0, 1);
    background: rgba(255, 200, 0, 0.3);
    color: white;
    animation: pulse-glow-yellow 1.5s infinite;
}

.number-circle[data-index="3"].passed {
    border-color: rgba(255, 200, 0, 0.8);
    background: rgba(255, 200, 0, 0.2);
    color: white;
}

.number-circle[data-index="4"].active {
    border-color: rgba(150, 50, 255, 1);
    background: rgba(150, 50, 255, 0.3);
    color: white;
    animation: pulse-glow-purple 1.5s infinite;
}

.number-circle[data-index="4"].passed {
    border-color: rgba(150, 50, 255, 0.8);
    background: rgba(150, 50, 255, 0.2);
    color: white;
}

.number-circle[data-index="5"].active {
    border-color: rgba(0, 200, 220, 1);
    background: rgba(0, 200, 220, 0.3);
    color: white;
    animation: pulse-glow-cyan 1.5s infinite;
}

.number-circle[data-index="5"].passed {
    border-color: rgba(0, 200, 220, 0.8);
    background: rgba(0, 200, 220, 0.2);
    color: white;
}

.number-circle[data-index="6"].active {
    border-color: rgba(255, 120, 0, 1);
    background: rgba(255, 120, 0, 0.3);
    color: white;
    animation: pulse-glow-orange 1.5s infinite;
}

.number-circle[data-index="6"].passed {
    border-color: rgba(255, 120, 0, 0.8);
    background: rgba(255, 120, 0, 0.2);
    color: white;
}

/* Responsive */
@media (max-width: 768px) {
    .number-nav {
        gap: 12px;
    }

    .number-circle {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        border-width: 2px;
    }
}

@media (max-width: 480px) {
    .number-nav {
        gap: 8px;
    }

    .number-circle {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

.timeline-cta {
    margin: 30px 0;
}

/* ================================================
   B2B PARTNER LOGO STYLES
   ================================================ */
.partner-logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 20px;
}

.partner-logos-large {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
}

.partner-logo-card {
    background: rgba(20, 20, 30, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 150px;
}

.partner-logo-card:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.partner-logo-card.large {
    min-height: 200px;
    padding: 30px;
}

.partner-logo-img {
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 15px;
}

.partner-logo-card.large .partner-logo-img {
    max-height: 100px;
}

.partner-logo-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 15px;
}

.partner-name {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    text-align: center;
    line-height: 1.3;
}

.partner-category {
    margin-bottom: 40px;
}

.partner-category-title {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .partner-logos-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .partner-logo-card {
        padding: 15px;
        min-height: 120px;
    }

    .partner-logo-img {
        max-height: 60px;
    }

    .partner-name {
        font-size: 0.75rem;
    }
}

/* ===== COMPREHENSIVE MOBILE RESPONSIVE CSS ===== */

/* Mobile Menu Button */
@media (max-width: 992px) {
    .desktop-nav {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem !important;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem !important;
        margin-bottom: 30px;
    }

    .hero-label {
        font-size: 0.75rem;
        letter-spacing: 1px;
    }

    .hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .hero-actions .btn {
        width: 100%;
        text-align: center;
    }

    #hero {
        min-height: 100vh;
        padding: 100px 15px 50px;
    }
}

/* About Section Mobile */
@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .about-text p {
        font-size: 1rem;
    }

    .stats-mini {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

/* Stats Section Mobile */
@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .stat-box {
        padding: 25px;
    }

    .huge-number {
        font-size: 3rem;
    }
}

/* Footer Mobile */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 30px;
        text-align: center;
    }

    .footer-col {
        align-items: center;
    }

    .footer-col h4 {
        margin-bottom: 15px;
    }

    .cluster-logos {
        justify-content: center;
    }

    .footer-logo img {
        max-height: 60px;
    }
}

/* Sponsor Section Mobile */
@media (max-width: 768px) {
    .sponsor-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .sponsor-grid-1 {
        grid-template-columns: 1fr !important;
    }

    .sponsor-card {
        padding: 15px;
        min-height: auto !important;
    }

    .category-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .sponsor-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Program Page Mobile */
@media (max-width: 768px) {
    .clone-card {
        padding: 20px;
    }

    .card-title {
        font-size: 1rem;
    }

    .card-time {
        font-size: 0.85rem;
    }

    .speakers-list {
        flex-direction: column;
        gap: 15px;
    }

    .speaker-item {
        width: 100%;
    }
}

/* B2B Page Mobile */
@media (max-width: 768px) {
    .partner-card {
        padding: 20px;
    }

    .b2b-floor-plan img {
        width: 100%;
        height: auto;
    }
}

/* Form Sections Mobile */
@media (max-width: 768px) {
    .form-group {
        margin-bottom: 15px;
    }

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px !important;
        /* Prevents zoom on iOS */
        padding: 12px;
    }

    .submit-btn {
        width: 100%;
        padding: 15px;
        font-size: 1rem;
    }
}

/* General Mobile Spacing */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }

    .container {
        padding: 0 15px;
    }

    .mb-large {
        margin-bottom: 30px;
    }

    .text-center h2 {
        font-size: 1.6rem;
    }
}

/* Very Small Screens */
@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem !important;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .btn-large {
        padding: 12px 25px;
        font-size: 1rem;
    }

    .stats-mini {
        grid-template-columns: 1fr;
    }

    .speaker-card h4 {
        font-size: 0.85rem;
    }

    .speaker-card p {
        font-size: 0.7rem;
    }
}

/* Header Overflow Fix for Large Logos */
/* Ensure the top bar expands to fit the logos and has minimum height */
.top-bar {
    height: auto !important;
    min-height: 120px;
    padding: 15px 0 !important;
}

/* Align items vertically in the top bar container */
.top-bar-container {
    align-items: center !important;
}

/* Ensure flex display for logos area */
.logos-area {
    display: flex;
    align-items: center;
}

/* Ensure header has enough space if it relies on fixed height */
#main-header {
    height: auto !important;
}

/* =========================================
   NEW 3-COLUMN FOOTER STYLES (Overrides)
   ========================================= */

/* Footer Container */
.footer {
    padding: 60px 0 0 !important;
}

/* 3-Column Footer Layout */
.footer-3-col {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 20px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Left Column: Text */
.footer-col-left {
    text-align: left;
}

.footer-disclaimer-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    line-height: 1.5;
    margin: 0;
}

/* Center Column: MTH Logo */
.footer-col-center {
    display: flex;
    justify-content: center;
    align-items: center;
    order: 2;
}

.mth-logo {
    height: 120px;
    width: auto;
    max-width: 100%;
    transition: transform 0.3s ease;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.mth-logo-link:hover .mth-logo {
    transform: scale(1.05);
}

/* Right Column: Logos */
.footer-col-right {
    display: flex;
    justify-content: flex-end;
    order: 3;
}

.footer-partners-grid {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-3-col {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-col-left {
        text-align: center;
        order: 2;
    }

    .footer-col-center {
        order: 1;
    }

    .footer-col-right {
        justify-content: center;
        order: 3;
    }

    .footer-partners-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
}