/* ============================================================
   AI Training Program 2026 — Master Stylesheet
   Mandela AI Hub Foundation
   ============================================================ */

/* === Google Fonts Import === */
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Poppins:wght@600;700;800;900&display=swap");

/* === CSS Custom Properties === */
:root {
    --navy: #0a1628;
    --deep-navy: #060d18;
    --navy-light: #112240;
    --navy-mid: #1a2f4a;
    --blue-royal: #1a237e;
    --blue-mid: #1565c0;
    --blue-bright: #2196f3;
    --gold: #ffd700;
    --gold-dark: #f9a825;
    --gold-deeper: #ff8f00;
    --teal: #00bfa5;
    --green: #4caf50;
    --green-dark: #2e7d32;
    --mpesa-green: #00a651;
    --mpesa-dark: #007a3d;
    --red: #f44336;
    --red-dark: #c62828;
    --white: #ffffff;
    --off-white: #f5f6fa;
    --gray-50: #fafafa;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-500: #adb5bd;
    --gray-600: #6c757d;
    --gray-700: #495057;
    --dark-text: #1a1a2e;

    --gradient-hero: linear-gradient(
        135deg,
        #060d18 0%,
        #0a1628 45%,
        #112a4a 100%
    );
    --gradient-dark: linear-gradient(180deg, #0a1628 0%, #112240 100%);
    --gradient-darker: linear-gradient(180deg, #112240 0%, #0a1628 100%);
    --gradient-cta: linear-gradient(135deg, #0a1628 0%, #1a237e 100%);
    --gradient-gold: linear-gradient(135deg, #ffd700 0%, #ff8f00 100%);
    --gradient-green: linear-gradient(135deg, #00a651 0%, #007a3d 100%);
    --gradient-card: linear-gradient(
        145deg,
        rgba(255, 255, 255, 0.07) 0%,
        rgba(255, 255, 255, 0.02) 100%
    );

    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-bg-light: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-border-gold: rgba(255, 215, 0, 0.25);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);

    --glow-gold: 0 0 35px rgba(255, 215, 0, 0.25);
    --glow-blue: 0 0 35px rgba(33, 150, 243, 0.25);
    --glow-green: 0 0 35px rgba(0, 166, 81, 0.3);

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 30px 80px rgba(0, 0, 0, 0.18);

    --radius-xs: 6px;
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;

    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --trans-fast: all 0.18s ease;
    --trans: all 0.3s var(--ease);
    --trans-slow: all 0.5s var(--ease);

    --font-body: "Inter", system-ui, -apple-system, sans-serif;
    --font-heading: "Poppins", system-ui, -apple-system, sans-serif;

    --navbar-height: 76px;
}

/* ============================================================
   BASE & RESET
   ============================================================ */

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--navbar-height);
}

body {
    font-family: var(--font-body);
    color: var(--dark-text);
    background-color: var(--white);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.15;
}

img {
    max-width: 100%;
    height: auto;
}
a {
    text-decoration: none;
    transition: var(--trans-fast);
}

/* ============================================================
   NAVBAR
   ============================================================ */

.navbar-custom {
    background: rgba(6, 13, 24, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: var(--trans);
    height: var(--navbar-height);
    display: flex;
    align-items: center;
}

.navbar-custom.scrolled {
    padding: 0.55rem 0;
    height: 64px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.55);
    border-bottom-color: rgba(255, 215, 0, 0.1);
}

/* Brand */
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient-gold);
    border-radius: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 900;
    color: var(--navy);
    flex-shrink: 0;
    box-shadow: 0 4px 14px rgba(255, 215, 0, 0.35);
    letter-spacing: -0.5px;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.brand-text .brand-main {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--white);
    letter-spacing: 0.3px;
}

.brand-text .brand-sub {
    font-size: 0.62rem;
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 0.2px;
}

/* Nav links */
.navbar-custom .nav-link {
    color: rgba(255, 255, 255, 0.78) !important;
    font-weight: 500;
    font-size: 0.875rem;
    padding: 0.45rem 0.9rem !important;
    border-radius: var(--radius-sm);
    transition: var(--trans-fast);
}

.navbar-custom .nav-link:hover,
.navbar-custom .nav-link.active {
    color: var(--gold) !important;
    background: rgba(255, 215, 0, 0.07);
}

.btn-register-nav {
    background: var(--gradient-gold) !important;
    color: var(--navy) !important;
    font-weight: 700 !important;
    padding: 0.45rem 1.4rem !important;
    border-radius: var(--radius-full) !important;
    font-size: 0.82rem !important;
    box-shadow: 0 4px 16px rgba(255, 215, 0, 0.3);
    letter-spacing: 0.2px;
}

.btn-register-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 7px 22px rgba(255, 215, 0, 0.42) !important;
    color: var(--navy) !important;
}

/* Mobile menu */
.mobile-menu-btn {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    transition: var(--trans-fast);
}

.mobile-menu-btn:hover {
    background: var(--glass-bg);
}

.mobile-menu {
    display: none;
    padding: 1rem 0 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    margin-top: 0.75rem;
    animation: fadeInDown 0.25s ease;
}

.mobile-menu.open {
    display: block;
}

.mobile-menu .nav-link {
    display: block;
    padding: 0.6rem 0.5rem !important;
    font-size: 0.9rem !important;
    border-radius: var(--radius-sm);
}

.mobile-register-btn {
    display: block;
    width: 100%;
    margin-top: 0.75rem;
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.65rem 1rem;
    border-radius: var(--radius-sm);
    text-align: center;
    transition: var(--trans-fast);
}

.mobile-register-btn:hover {
    opacity: 0.9;
    color: var(--navy);
}

/* ============================================================
   HERO SECTION
   ============================================================ */

.hero-section {
    background: var(--gradient-hero);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--navbar-height);
}

/* Ambient glow orbs */
.hero-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -5%;
    width: 650px;
    height: 650px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.07) 0%,
        transparent 68%
    );
    border-radius: 50%;
    animation: pulseOrb 5s ease-in-out infinite;
    pointer-events: none;
}

.hero-section::after {
    content: "";
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 550px;
    height: 550px;
    background: radial-gradient(
        circle,
        rgba(33, 150, 243, 0.07) 0%,
        transparent 68%
    );
    border-radius: 50%;
    animation: pulseOrb 5s ease-in-out infinite 2.5s;
    pointer-events: none;
}

/* Floating particles */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    border-radius: 50%;
    animation: floatParticle linear infinite;
    opacity: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: var(--gold);
    padding: 0.38rem 1.1rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    animation: fadeInDown 0.6s var(--ease) both;
}

/* Title */
.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 6vw, 4.4rem);
    font-weight: 900;
    color: var(--white);
    line-height: 1.05;
    margin-bottom: 0.9rem;
    letter-spacing: -1.5px;
    animation: fadeInUp 0.65s var(--ease) 0.1s both;
}

.hero-title .highlight {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(0.88rem, 2vw, 1.05rem);
    color: rgba(255, 255, 255, 0.72);
    margin-bottom: 0.6rem;
    font-weight: 500;
    animation: fadeInUp 0.65s var(--ease) 0.2s both;
    line-height: 1.5;
}

.hero-tagline {
    font-size: clamp(0.95rem, 2.2vw, 1.2rem);
    color: var(--gold);
    margin-bottom: 2rem;
    font-weight: 600;
    font-style: italic;
    animation: fadeInUp 0.65s var(--ease) 0.3s both;
}

/* Event detail badges */
.hero-details {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-bottom: 2.25rem;
    animation: fadeInUp 0.65s var(--ease) 0.4s both;
}

.hero-detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--white);
    padding: 0.48rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.82rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    white-space: nowrap;
}

.hero-detail-badge .badge-icon {
    font-size: 0.95rem;
}

/* CTA buttons */
.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    animation: fadeInUp 0.65s var(--ease) 0.5s both;
}

.btn-hero-primary {
    background: var(--gradient-gold);
    color: var(--navy) !important;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.97rem;
    padding: 0.9rem 2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: var(--trans);
    box-shadow: 0 8px 28px rgba(255, 215, 0, 0.35);
    border: none;
    letter-spacing: 0.3px;
    text-decoration: none;
    cursor: pointer;
}

.btn-hero-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 38px rgba(255, 215, 0, 0.5);
    color: var(--navy) !important;
}

.btn-hero-secondary {
    background: transparent;
    color: var(--white) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.97rem;
    padding: 0.88rem 2rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    transition: var(--trans);
    border: 2px solid rgba(255, 255, 255, 0.35);
    text-decoration: none;
}

.btn-hero-secondary:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.65);
    transform: translateY(-3px);
    color: var(--white) !important;
}

/* Countdown */
.countdown-section {
    margin-top: 2.75rem;
    animation: fadeInUp 0.65s var(--ease) 0.6s both;
}

.countdown-label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.7rem;
    font-weight: 600;
}

.countdown-timer {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
}

.countdown-item {
    text-align: center;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm);
    padding: 0.8rem 1.15rem;
    min-width: 72px;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
}

.countdown-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-gold);
}

.countdown-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.countdown-unit {
    display: block;
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 0.3rem;
    font-weight: 600;
}

/* Hero poster image */
.hero-poster-wrap {
    position: relative;
    z-index: 2;
    animation: fadeInRight 0.8s var(--ease) 0.35s both;
}

.hero-poster-wrap::before {
    content: "";
    position: absolute;
    inset: -15px;
    background: radial-gradient(
        ellipse at center,
        rgba(255, 215, 0, 0.12) 0%,
        transparent 70%
    );
    border-radius: var(--radius-xl);
    pointer-events: none;
}

.hero-poster {
    border-radius: var(--radius-lg);
    box-shadow:
        0 30px 80px rgba(0, 0, 0, 0.6),
        var(--glow-gold);
    width: 100%;
    max-height: 580px;
    object-fit: cover;
    border: 2px solid rgba(255, 215, 0, 0.18);
    position: relative;
}

/* ============================================================
   SECTION BASE STYLES
   ============================================================ */

.section-light {
    padding: 5.5rem 0;
    background: var(--white);
}

.section-dark {
    padding: 5.5rem 0;
    background: var(--gradient-dark);
    color: var(--white);
}

.section-darker {
    padding: 5.5rem 0;
    background: var(--gradient-darker);
    color: var(--white);
}

.section-alt {
    padding: 5.5rem 0;
    background: var(--off-white);
}

.section-header {
    margin-bottom: 3.5rem;
}

.section-badge {
    display: inline-block;
    background: rgba(255, 215, 0, 0.1);
    color: var(--gold-deep, #e65100);
    border: 1px solid rgba(255, 215, 0, 0.28);
    padding: 0.3rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 0.7rem;
}

.section-dark .section-badge,
.section-darker .section-badge {
    color: var(--gold);
}

.section-badge-light {
    background: rgba(26, 35, 126, 0.08);
    color: var(--blue-royal);
    border-color: rgba(26, 35, 126, 0.2);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 800;
    margin-bottom: 0.9rem;
    color: var(--navy);
}

.section-dark .section-title,
.section-darker .section-title {
    color: var(--white);
}

.section-divider {
    width: 55px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    margin: 0.6rem auto 0;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    max-width: 580px;
    margin: 1rem auto 0;
    line-height: 1.7;
}

.section-dark .section-subtitle,
.section-darker .section-subtitle {
    color: rgba(255, 255, 255, 0.6);
}

/* ============================================================
   ABOUT / STAT CARDS
   ============================================================ */

.stat-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    transition: var(--trans);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.stat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--trans);
    transform-origin: left;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
}
.stat-card:hover::before {
    transform: scaleX(1);
}

.stat-icon {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    display: block;
    line-height: 1;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.stat-label {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.62);
    font-weight: 500;
}

/* ============================================================
   PERSON CARDS (Hosts & Speakers)
   ============================================================ */

.person-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.75rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    border: 1px solid var(--gray-200);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.person-card::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-gold);
    transform: scaleX(0);
    transition: var(--trans);
}

.person-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(255, 215, 0, 0.25);
}

.person-card:hover::after {
    transform: scaleX(1);
}

.person-card.dark-card {
    background: var(--glass-bg);
    border-color: var(--glass-border);
    color: var(--white);
}

.person-card.dark-card:hover {
    border-color: var(--glass-border-gold);
}

.person-avatar {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--white);
    background: var(--gradient-hero);
    border: 3px solid var(--gold);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
    flex-shrink: 0;
}

.person-avatar.avatar-gold {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: var(--navy);
}

.person-name {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.22rem;
}

.dark-card .person-name {
    color: var(--white);
}

.person-role {
    font-size: 0.83rem;
    color: var(--blue-mid);
    font-weight: 600;
    margin-bottom: 0.18rem;
}

.dark-card .person-role {
    color: var(--gold);
}

.person-org {
    font-size: 0.77rem;
    color: var(--gray-600);
    line-height: 1.4;
}

.dark-card .person-org {
    color: rgba(255, 255, 255, 0.55);
}

.person-badge {
    display: inline-block;
    padding: 0.2rem 0.85rem;
    border-radius: var(--radius-full);
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.7px;
    margin-top: 0.85rem;
}

.badge-host {
    background: rgba(255, 215, 0, 0.13);
    color: #7d5a00;
    border: 1px solid rgba(255, 215, 0, 0.35);
}
.badge-speaker {
    background: rgba(21, 101, 192, 0.1);
    color: var(--blue-mid);
    border: 1px solid rgba(21, 101, 192, 0.22);
}
.badge-moderator {
    background: rgba(0, 191, 165, 0.1);
    color: #00796b;
    border: 1px solid rgba(0, 191, 165, 0.28);
}
.badge-guest {
    background: rgba(244, 162, 97, 0.12);
    color: #c05000;
    border: 1px solid rgba(244, 162, 97, 0.3);
}

.dark-card .badge-host {
    color: var(--gold);
    border-color: rgba(255, 215, 0, 0.35);
    background: rgba(255, 215, 0, 0.1);
}
.dark-card .badge-speaker {
    color: #90caf9;
    border-color: rgba(144, 202, 249, 0.3);
    background: rgba(144, 202, 249, 0.08);
}

/* ============================================================
   TOPICS GRID
   ============================================================ */

.topic-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1.6rem 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: var(--trans);
    border: 1px solid var(--gray-200);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    height: 100%;
}

.topic-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(255, 215, 0, 0.35);
}

.topic-icon-wrap {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-sm);
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.7rem;
    flex-shrink: 0;
    transition: var(--trans-fast);
}

.topic-card:hover .topic-icon-wrap {
    background: rgba(255, 215, 0, 0.1);
}

.topic-title {
    font-family: var(--font-heading);
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 0.22rem;
    line-height: 1.3;
}

.topic-desc {
    font-size: 0.8rem;
    color: var(--gray-600);
    margin: 0;
    line-height: 1.5;
}

/* ============================================================
   SCHEDULE / TIMELINE
   ============================================================ */

.schedule-section {
    background: var(--gradient-darker);
}

.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(255, 215, 0, 0.5) 10%,
        rgba(255, 215, 0, 0.5) 90%,
        transparent 100%
    );
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr 44px 1fr;
    gap: 0;
    margin-bottom: 1.75rem;
    position: relative;
    align-items: center;
}

.timeline-content {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
    padding: 1.1rem 1.4rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: var(--trans);
}

.timeline-content:hover {
    border-color: var(--glass-border-gold);
    box-shadow: var(--glow-gold);
}

.timeline-left {
    grid-column: 1;
    text-align: right;
    padding-right: 1.25rem;
}
.timeline-right {
    grid-column: 3;
    text-align: left;
    padding-left: 1.25rem;
}
.timeline-empty {
    grid-column: 1;
} /* For right-only items */
.timeline-empty-right {
    grid-column: 3;
}

.timeline-dot-col {
    grid-column: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot {
    width: 18px;
    height: 18px;
    background: var(--gold);
    border-radius: 50%;
    border: 3px solid var(--navy-light);
    box-shadow: 0 0 12px rgba(255, 215, 0, 0.55);
    flex-shrink: 0;
    z-index: 1;
}

.timeline-dot.break {
    background: var(--blue-bright);
    box-shadow: 0 0 12px rgba(33, 150, 243, 0.5);
}
.timeline-dot.close {
    background: var(--teal);
    box-shadow: 0 0 12px rgba(0, 191, 165, 0.5);
}

.timeline-time {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-bottom: 0.22rem;
}

.timeline-event {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    margin: 0 0 0.15rem;
    line-height: 1.3;
}

.timeline-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
    line-height: 1.4;
}

/* Mobile timeline */
@media (max-width: 767px) {
    .timeline-line {
        left: 22px;
        transform: none;
    }

    .timeline-item {
        grid-template-columns: 44px 1fr;
        grid-template-rows: auto;
        padding-left: 0;
    }

    .timeline-dot-col {
        grid-column: 1;
        grid-row: 1;
    }
    .timeline-right,
    .timeline-left {
        grid-column: 2;
        grid-row: 1;
        padding: 0 0 0 0.75rem;
        text-align: left;
    }
    .timeline-empty,
    .timeline-empty-right {
        display: none;
    }
}

/* ============================================================
   CTA SECTION
   ============================================================ */

.cta-section {
    background: var(--gradient-cta);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: "";
    position: absolute;
    top: -40%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        rgba(255, 215, 0, 0.07) 0%,
        transparent 68%
    );
    border-radius: 50%;
    pointer-events: none;
}

.cta-section::after {
    content: "";
    position: absolute;
    bottom: -40%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        rgba(33, 150, 243, 0.07) 0%,
        transparent 68%
    );
    border-radius: 50%;
    pointer-events: none;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-price {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    color: var(--gold);
    line-height: 1;
}

.cta-price .kes {
    font-size: 1.6rem;
    font-weight: 600;
    vertical-align: super;
    margin-right: 0.15rem;
}

.cta-price-note {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.4rem;
}

.btn-cta-main {
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.08rem;
    padding: 1rem 3rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: var(--trans);
    box-shadow: 0 8px 30px rgba(255, 215, 0, 0.4);
    border: none;
    text-decoration: none;
    cursor: pointer;
    letter-spacing: 0.2px;
}

.btn-cta-main:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 42px rgba(255, 215, 0, 0.52);
    color: var(--navy);
}

/* ============================================================
   SPONSORS SECTION
   ============================================================ */

.sponsor-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2.5rem;
}

.sponsor-slot {
    background: var(--gray-100);
    border: 2px dashed var(--gray-300);
    border-radius: var(--radius-md);
    padding: 2.25rem 1.5rem;
    text-align: center;
    color: var(--gray-500);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 120px;
    transition: var(--trans);
    font-size: 0.82rem;
    font-weight: 500;
}

.sponsor-slot:hover {
    border-color: var(--gold-dark);
    background: rgba(255, 215, 0, 0.04);
    color: var(--gold-dark);
}

.sponsor-slot-icon {
    font-size: 1.8rem;
    opacity: 0.4;
}

.btn-sponsor {
    background: var(--navy);
    color: var(--gold);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.85rem 2.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--trans);
    text-decoration: none;
}

.btn-sponsor:hover {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(255, 215, 0, 0.3);
}

/* ============================================================
   REGISTRATION FORM
   ============================================================ */

.register-page {
    background: var(--off-white);
    min-height: calc(100vh - var(--navbar-height));
    padding-top: calc(var(--navbar-height) + 2rem);
    padding-bottom: 3rem;
}

.form-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
}

.form-card-header {
    background: var(--gradient-hero);
    padding: 2.5rem 2.5rem 2rem;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.form-card-header::before {
    content: "";
    position: absolute;
    top: -30px;
    right: -30px;
    width: 160px;
    height: 160px;
    background: rgba(255, 215, 0, 0.06);
    border-radius: 50%;
}

.form-card-header-title {
    font-family: var(--font-heading);
    font-size: 1.55rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.3rem;
    position: relative;
}

.form-card-header-sub {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    position: relative;
}

.form-card-body {
    padding: 2.5rem;
}

/* Progress Steps */
.progress-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 2.5rem;
    position: relative;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    max-width: 120px;
    position: relative;
    z-index: 1;
}

.step-circle {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: var(--gray-200);
    color: var(--gray-500);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
    transition: var(--trans);
    border: 3px solid var(--gray-200);
    margin-bottom: 0.5rem;
}

.step-circle.active {
    background: var(--gradient-gold);
    color: var(--navy);
    border-color: var(--gold);
    box-shadow: 0 0 22px rgba(255, 215, 0, 0.4);
}

.step-circle.completed {
    background: var(--gradient-hero);
    color: var(--gold);
    border-color: var(--blue-mid);
}

.step-label {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    line-height: 1.3;
}

.step-label.active {
    color: var(--navy);
    font-weight: 700;
}
.step-label.completed {
    color: var(--blue-mid);
}

.step-connector {
    flex: 1;
    height: 3px;
    background: var(--gray-200);
    margin-top: 21px; /* align with circle center */
    transition: var(--trans-slow);
    max-width: 80px;
}

.step-connector.completed {
    background: var(--gradient-gold);
}

/* Form steps */
.form-step {
    display: none;
}
.form-step.active {
    display: block;
    animation: stepFadeIn 0.35s var(--ease);
}

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

/* Form controls */
.form-label {
    font-weight: 600;
    font-size: 0.85rem;
    color: var(--navy);
    margin-bottom: 0.4rem;
}

.form-label .required {
    color: var(--red);
}

.form-control,
.form-select {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.68rem 1rem;
    font-size: 0.9rem;
    transition: var(--trans-fast);
    color: var(--dark-text);
    background-color: var(--white);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--gold-dark);
    box-shadow: 0 0 0 3px rgba(249, 168, 37, 0.15);
    outline: none;
}

.form-control.is-valid,
.form-select.is-valid {
    border-color: var(--green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.12);
}

.form-control.is-invalid,
.form-select.is-invalid {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(244, 67, 54, 0.1);
}

.invalid-feedback {
    font-size: 0.78rem;
    color: var(--red);
    margin-top: 0.25rem;
}
.valid-feedback {
    font-size: 0.78rem;
    color: var(--green);
    margin-top: 0.25rem;
}

/* Review card (Step 2) */
.review-card {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
}

.review-title {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--gray-600);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--gray-300);
}

.review-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    gap: 1rem;
    font-size: 0.875rem;
}

.review-row:last-child {
    border-bottom: none;
}
.review-label {
    color: var(--gray-600);
    font-weight: 500;
    flex-shrink: 0;
}
.review-value {
    font-weight: 600;
    color: var(--navy);
    text-align: right;
    word-break: break-word;
}

.ticket-type-box {
    background: var(--gradient-hero);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.ticket-type-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}
.ticket-type-price {
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gold);
}

/* M-Pesa box */
.mpesa-box {
    background: linear-gradient(135deg, #1b5e20 0%, #00a651 100%);
    border-radius: var(--radius-md);
    padding: 1.75rem;
    color: var(--white);
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

.mpesa-box::before {
    content: "";
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.mpesa-logo-text {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.5px;
    line-height: 1;
}

.mpesa-logo-text span {
    color: #ffce00;
}

.mpesa-sub {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.68);
    margin-top: 0.15rem;
}

/* Payment form (Step 3) */
.payment-instruction {
    background: rgba(0, 166, 81, 0.06);
    border: 1px solid rgba(0, 166, 81, 0.2);
    border-radius: var(--radius-sm);
    padding: 1rem 1.25rem;
    font-size: 0.85rem;
    color: #1b5e20;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
}

.payment-amount-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--off-white);
    border-radius: var(--radius-sm);
    padding: 0.85rem 1.15rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.payment-amount-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-600);
}

.payment-amount-value {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 900;
    color: var(--mpesa-green);
}

/* Pay button */
.btn-pay {
    background: linear-gradient(135deg, #00a651 0%, #007a3d 100%);
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.05rem;
    padding: 1rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 8px 26px rgba(0, 166, 81, 0.4);
    letter-spacing: 0.2px;
}

.btn-pay:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(0, 166, 81, 0.5);
}

.btn-pay:disabled {
    opacity: 0.65;
    cursor: not-allowed;
    transform: none;
}

.pay-spinner {
    width: 20px;
    height: 20px;
    border: 2.5px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.75s linear infinite;
    display: none;
    flex-shrink: 0;
}

.pay-spinner.active {
    display: block;
}

/* Nav buttons */
.btn-step-next {
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0.75rem 2rem;
    border-radius: var(--radius-full);
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--trans);
    box-shadow: 0 5px 18px rgba(255, 215, 0, 0.28);
}

.btn-step-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 26px rgba(255, 215, 0, 0.4);
}

.btn-step-prev {
    background: transparent;
    color: var(--gray-600);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.92rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 2px solid var(--gray-300);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: var(--trans);
}

.btn-step-prev:hover {
    border-color: var(--gray-500);
    color: var(--gray-700);
    background: var(--gray-100);
}

/* ============================================================
   TICKET PAGE
   ============================================================ */

.ticket-page {
    background: var(--off-white);
    min-height: calc(100vh - var(--navbar-height));
    padding-top: calc(var(--navbar-height) + 2.5rem);
    padding-bottom: 3rem;
}

.ticket-wrapper {
    max-width: 680px;
    margin: 0 auto;
}

.ticket-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    position: relative;
}

/* Ticket header */
.ticket-header {
    background: var(--gradient-hero);
    padding: 2.5rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.ticket-header::before {
    content: "";
    position: absolute;
    top: -40px;
    right: -40px;
    width: 180px;
    height: 180px;
    background: rgba(255, 215, 0, 0.07);
    border-radius: 50%;
}

.ticket-header::after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 120px;
    height: 120px;
    background: rgba(33, 150, 243, 0.07);
    border-radius: 50%;
}

.ticket-org {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 2.5px;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    font-weight: 600;
}

.ticket-event-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--white);
    line-height: 1.1;
    position: relative;
    z-index: 1;
}

.ticket-event-title span {
    color: var(--gold);
}

.ticket-event-sub {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 0.4rem;
    position: relative;
    z-index: 1;
}

/* Ticket body */
.ticket-body {
    padding: 2rem;
}

.ticket-number-block {
    text-align: center;
    padding: 1.1rem;
    background: var(--off-white);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
    border: 1px solid var(--gray-200);
}

.ticket-number-label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--gray-500);
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.ticket-number-value {
    font-family: "Courier New", "Courier", monospace;
    font-size: 1.9rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 4px;
}

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

.ticket-info-item label {
    display: block;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1.3px;
    color: var(--gray-500);
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.ticket-info-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--navy);
    word-break: break-word;
}

.ticket-divider {
    border: none;
    border-top: 2px dashed var(--gray-300);
    margin: 1.5rem 0;
}

.ticket-qr-block {
    text-align: center;
    padding: 1rem 0 0.5rem;
}

.ticket-qr-block img {
    border: 3px solid var(--gray-200);
    border-radius: var(--radius-sm);
    padding: 8px;
    background: var(--white);
}

.ticket-qr-label {
    font-size: 0.72rem;
    color: var(--gray-500);
    margin-top: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.ticket-footer {
    background: var(--off-white);
    padding: 1.25rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    border-top: 1px solid var(--gray-200);
}

.ticket-receipt {
    font-size: 0.82rem;
    color: var(--gray-600);
}
.ticket-receipt strong {
    color: var(--navy);
}

.admit-one-stamp {
    display: inline-block;
    border: 3px solid rgba(26, 35, 126, 0.18);
    border-radius: 8px;
    padding: 0.3rem 0.8rem;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 900;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(26, 35, 126, 0.35);
    transform: rotate(-3deg);
    white-space: nowrap;
}

/* Buttons */
.btn-print {
    background: var(--gradient-hero);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans);
    text-decoration: none;
}

.btn-print:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    color: var(--white);
}

/* ============================================================
   PAYMENT SUCCESS PAGE
   ============================================================ */

.success-page {
    background: var(--off-white);
    min-height: calc(100vh - var(--navbar-height));
    padding-top: calc(var(--navbar-height) + 3rem);
    padding-bottom: 3rem;
}

.success-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--gray-200);
    max-width: 580px;
    margin: 0 auto;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #4caf50, #2e7d32);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.75rem;
    font-size: 2.6rem;
    box-shadow: 0 12px 35px rgba(76, 175, 80, 0.4);
    animation: bounceIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}

.success-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.success-subtitle {
    font-size: 1rem;
    color: var(--gray-600);
    margin-bottom: 2rem;
}

.success-ticket-info {
    background: var(--off-white);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-bottom: 2rem;
    border: 1px solid var(--gray-200);
    text-align: left;
}

.success-ticket-num {
    font-family: "Courier New", monospace;
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: 3px;
    text-align: center;
    margin-bottom: 0.75rem;
}

.btn-view-ticket {
    background: var(--gradient-gold);
    color: var(--navy);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition: var(--trans);
    box-shadow: 0 8px 26px rgba(255, 215, 0, 0.35);
    text-decoration: none;
    border: none;
    margin-bottom: 1rem;
}

.btn-view-ticket:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 36px rgba(255, 215, 0, 0.5);
    color: var(--navy);
}

.btn-whatsapp {
    background: #25d366;
    color: var(--white);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.7rem 1.75rem;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--trans);
    text-decoration: none;
    border: none;
}

.btn-whatsapp:hover {
    background: #128c7e;
    transform: translateY(-2px);
    color: var(--white);
}

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */

.toast-container {
    position: fixed;
    top: calc(var(--navbar-height) + 0.75rem);
    right: 1.25rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    pointer-events: none;
}

.toast-note {
    min-width: 270px;
    max-width: 360px;
    padding: 0.9rem 1.1rem;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 500;
    font-size: 0.875rem;
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
    animation: toastSlideIn 0.3s var(--ease);
    pointer-events: all;
    line-height: 1.4;
}

.toast-note.success {
    background: linear-gradient(135deg, #4caf50, #2e7d32);
}
.toast-note.error {
    background: linear-gradient(135deg, #f44336, #c62828);
}
.toast-note.info {
    background: linear-gradient(135deg, #2196f3, #1565c0);
}
.toast-note.warning {
    background: linear-gradient(135deg, #ff9800, #e65100);
}

.toast-note .toast-icon {
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
    background: var(--deep-navy);
    color: rgba(255, 255, 255, 0.72);
    padding: 4.5rem 0 1.5rem;
    border-top: 1px solid var(--glass-border);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.12rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.7rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-brand-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient-gold);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 900;
    color: var(--navy);
    flex-shrink: 0;
}

.footer-description {
    font-size: 0.845rem;
    color: rgba(255, 255, 255, 0.47);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 1.25rem;
    padding-bottom: 0.6rem;
    border-bottom: 1px solid rgba(255, 215, 0, 0.15);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    font-size: 0.865rem;
    transition: var(--trans-fast);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.footer-links a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    margin-bottom: 0.8rem;
    font-size: 0.855rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.5;
}

.footer-contact-icon {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-divider {
    border-color: var(--glass-border);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
}

.footer-social {
    display: flex;
    gap: 0.65rem;
}

.social-link {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-xs);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--trans-fast);
}

.social-link:hover {
    background: var(--gold);
    color: var(--navy);
    border-color: var(--gold);
}

/* ============================================================
   SCROLL ANIMATIONS
   ============================================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.6s var(--ease),
        transform 0.6s var(--ease);
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up.delay-1 {
    transition-delay: 0.1s;
}
.fade-in-up.delay-2 {
    transition-delay: 0.2s;
}
.fade-in-up.delay-3 {
    transition-delay: 0.3s;
}
.fade-in-up.delay-4 {
    transition-delay: 0.4s;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */

.text-gold {
    color: var(--gold) !important;
}
.text-navy {
    color: var(--navy) !important;
}
.bg-navy {
    background-color: var(--navy) !important;
}
.bg-dark-section {
    background: var(--gradient-dark) !important;
}

.divider-gold {
    width: 55px;
    height: 4px;
    background: var(--gradient-gold);
    border-radius: 2px;
    border: none;
    margin: 0.75rem 0 0;
    display: block;
}

.divider-gold.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */

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

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

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(35px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes floatParticle {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.4;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    60% {
        transform: scale(1.12);
        opacity: 1;
    }
    80% {
        transform: scale(0.94);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes toastSlideIn {
    from {
        transform: translateX(110%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastSlideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(110%);
        opacity: 0;
    }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 991px) {
    :root {
        --navbar-height: 70px;
    }
    .hero-section {
        padding-bottom: 3rem;
    }
    .hero-poster-wrap {
        margin-top: 2.5rem;
    }
}

@media (max-width: 767px) {
    :root {
        --navbar-height: 66px;
    }

    .hero-title {
        letter-spacing: -0.5px;
    }
    .hero-cta {
        flex-direction: column;
    }
    .btn-hero-primary,
    .btn-hero-secondary {
        justify-content: center;
        width: 100%;
    }

    .countdown-item {
        min-width: 60px;
        padding: 0.65rem 0.85rem;
    }
    .countdown-number {
        font-size: 1.65rem;
    }

    .section-light,
    .section-dark,
    .section-darker,
    .section-alt {
        padding: 3.5rem 0;
    }

    .cta-price {
        font-size: 3rem;
    }
    .btn-cta-main {
        width: 100%;
        justify-content: center;
    }

    .ticket-info-grid {
        grid-template-columns: 1fr;
    }
    .ticket-footer {
        flex-direction: column;
        align-items: flex-start;
    }

    .form-card-body {
        padding: 1.5rem;
    }
    .form-card-header {
        padding: 1.75rem 1.5rem 1.5rem;
    }
    .step-label {
        font-size: 0.62rem;
    }

    .success-card {
        padding: 2rem 1.5rem;
    }

    .toast-container {
        right: 0.75rem;
        left: 0.75rem;
    }
    .toast-note {
        min-width: unset;
        max-width: 100%;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================================
   PRINT STYLES
   ============================================================ */

@media print {
    .navbar-custom,
    .btn-print,
    .btn-view-ticket,
    .back-link,
    .no-print,
    footer,
    .toast-container {
        display: none !important;
    }

    body {
        background: white !important;
        margin: 0;
    }

    .ticket-page {
        padding-top: 0 !important;
        background: white !important;
    }

    .ticket-wrapper {
        max-width: 100%;
        margin: 0;
    }

    .ticket-card {
        box-shadow: none !important;
        border: 1px solid #ccc !important;
        border-radius: 12px;
        page-break-inside: avoid;
    }

    .ticket-header {
        background: #0a1628 !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .ticket-number-value {
        font-size: 1.6rem;
    }
}
