/* ============================================
   Generative AI Workshop - Dark Neon Theme
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Michroma&family=Orbitron:wght@400..900&display=swap');

:root {
    /* Dark Neon Color Palette */
    --primary-color: #00f0ff;
    --primary-dark: #00b8d4;
    --primary-light: #67f7ff;
    --secondary-color: #a855f7;
    --accent-pink: #f472b6;
    --accent-orange: #fb923c;
    --success-color: #22d3ee;
    --danger-color: #f43f5e;
    --warning-color: #fbbf24;

    /* Dark Backgrounds */
    --dark-color: #0a0a0f;
    --dark-surface: #12121a;
    --dark-card: #16162a;
    --dark-elevated: #1e1e35;
    --dark-border: rgba(0, 240, 255, 0.12);

    /* Text Colors */
    --text-primary: #eef2ff;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;

    /* Neon Glows */
    --glow-cyan: 0 0 20px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 20px rgba(168, 85, 247, 0.3);
    --glow-pink: 0 0 20px rgba(244, 114, 182, 0.3);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-neon: 0 0 30px rgba(0, 240, 255, 0.15), 0 0 60px rgba(168, 85, 247, 0.08);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --white: #ffffff;
    --gray-100: #1a1a2e;
    --gray-200: #1e1e35;
    --gray-300: #2a2a45;
    --gray-400: #64748b;
    --gray-500: #94a3b8;
    --gray-600: #94a3b8;
    --gray-700: #cbd5e1;
}

/* ============================================
   GLOBAL RESETS
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

pre {
    font-family: inherit;
    white-space: pre-wrap;
    margin: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--dark-color);
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    line-height: 1.3;
    color: var(--text-primary);
}

a {
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--primary-light);
}

::selection {
    background: rgba(0, 240, 255, 0.3);
    color: var(--white);
}

/* ============================================
   ANIMATED BACKGROUND PARTICLES
   ============================================ */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(circle at 20% 50%, rgba(0, 240, 255, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(168, 85, 247, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(244, 114, 182, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ============================================
   SCROLLBAR
   ============================================ */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--dark-color);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--primary-light), var(--accent-pink));
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    padding: 0.75rem 0;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background-color: rgba(10, 10, 15, 0.85) !important;
    border-bottom: 1px solid var(--dark-border);
    transition: var(--transition);
    z-index: 1050;
}

.navbar.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), var(--shadow-neon);
}

.navbar-brand {
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition);
}

.brand-name {
    font-weight: 600;
    color: var(--text-primary);
}

/* LOGO FONT - DO NOT CHANGE */
.brand-name h4 {
    font-family: "Michroma", sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    font-style: normal;
    color: var(--white);
    margin: 0;
}

.brand-name p {
    padding-left: 0.3rem;
}

.brand-subtitle {
    font-size: 0.7rem;
    color: var(--text-secondary);
    font-weight: 500;
    line-height: 1;
}

.logo-wrapper {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.logo-wrapper img {
    width: 10rem;
    height: 4rem;
}

.footer-brand img {
    width: 20%;
    height: 20%;
}

.nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    padding: 0.5rem 1rem !important;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color) !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

.btn-enroll {
    padding: 0.6rem 1.5rem;
    font-weight: 600;
    border-radius: 10px;
    transition: var(--transition);
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)) !important;
    border: none !important;
    color: var(--dark-color) !important;
    font-size: 0.9rem;
}

.btn-enroll:hover {
    box-shadow: var(--glow-cyan);
    color: var(--dark-color) !important;
}

/* Mobile Navbar */
.navbar-toggler {
    border: 1px solid var(--dark-border);
    padding: 0.5rem;
}

.navbar-toggler-icon {
    filter: invert(1);
}

/* ============================================
   BUTTONS - Global Styles
   ============================================ */

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark)) !important;
    border: none !important;
    color: var(--dark-color) !important;
    font-weight: 600;
    transition: var(--transition);
}

.btn-primary:hover {
    box-shadow: var(--glow-cyan);
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
    color: var(--dark-color) !important;
}

.btn-outline-primary {
    border: 2px solid var(--primary-color) !important;
    color: var(--primary-color) !important;
    background: transparent !important;
    font-weight: 600;
}

.btn-outline-primary:hover {
    background: rgba(0, 240, 255, 0.1) !important;
    border-color: var(--primary-light) !important;
    color: var(--primary-light) !important;
    box-shadow: var(--glow-cyan);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    background: var(--dark-color);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -20%;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 240, 255, 0.08) 0%, rgba(168, 85, 247, 0.04) 50%, transparent 70%);
    z-index: 0;
    animation: floatSlow 15s ease-in-out infinite;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -15%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, rgba(244, 114, 182, 0.03) 50%, transparent 70%);
    z-index: 0;
    animation: floatSlow 20s ease-in-out infinite reverse;
}

@keyframes floatSlow {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(30px, -20px);
    }
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.badge-live {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--danger-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
    box-shadow: 0 0 8px rgba(244, 63, 94, 0.6);
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.3);
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.text-primary {
    color: var(--primary-color) !important;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: gradientShift 4s ease-in-out infinite;
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    transition: var(--transition);
}

.feature-item:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-sm);
}

.feature-item i {
    font-size: 1.4rem;
    color: var(--primary-color);
}

.feature-item span {
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.9rem;
}

/* ============================================
   HERO CARDS (Enrollment/Countdown/Benefits)
   ============================================ */

.hero-card {
    position: relative;
    z-index: 1;
}

.countdown-card,
.enrollment-card,
.benefits-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 1.5rem;
    padding-top: 2rem !important;
    border: 1px solid var(--dark-border);
    backdrop-filter: blur(5px);
}

.countdown-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05) 0%, var(--dark-card) 100%);
    border: 1px solid rgba(0, 240, 255, 0.15);
}

.countdown-card h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0 0.25rem;
}

.time-unit {
    text-align: center;
    padding: 0.75rem 0.5rem;
    background: var(--dark-elevated);
    border: 1px solid rgba(0, 240, 255, 0.15);
    border-radius: 12px;
    min-width: 65px;
    width: 70px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.time-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    min-width: 2.5ch;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.5);
}

.time-label {
    display: block;
    font-size: 0.7rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.time-separator {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    animation: pulse 1.5s infinite;
}

/* Enrollment Card */
.enrollment-card h4 {
    color: var(--text-primary);
    font-size: 1.5rem;
}

.form-control-lg,
.form-control {
    padding: 0.875rem 1.25rem;
    border-radius: 12px;
    border: 1px solid var(--dark-border);
    background: var(--dark-surface) !important;
    color: var(--text-primary) !important;
    transition: var(--transition);
    font-size: 0.95rem;
}

.form-control-lg:focus,
.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
    background: var(--dark-elevated) !important;
}

.form-control-lg::placeholder,
.form-control::placeholder {
    color: var(--text-muted);
}

select.form-control-lg,
select.form-control {
    appearance: auto;
}

select.form-control option {
    background: var(--dark-surface);
    color: var(--text-primary);
}

/* Benefits List */
.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.benefits-list i {
    color: var(--success-color);
    font-size: 1.25rem;
    margin-top: 0.1rem;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    background: var(--dark-surface);
    border-top: 1px solid var(--dark-border);
    border-bottom: 1px solid var(--dark-border);
}

.stat-item {
    padding: 1.5rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}

.stat-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    margin: 0;
}

/* ============================================
   SECTIONS
   ============================================ */

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--primary-color);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-section {
    background: var(--dark-color);
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    border: 1px solid var(--dark-border);
    box-shadow: var(--shadow-neon);
}

.feature-box {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 16px;
    transition: var(--transition);
}

.feature-box:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon i {
    font-size: 1.75rem;
    color: var(--dark-color);
}

.feature-box h5 {
    font-size: 1.15rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-box p {
    margin: 0;
    color: var(--text-secondary);
}

/* ============================================
   CURRICULUM / PROGRAM CARDS
   ============================================ */

.curriculum-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.curriculum-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    opacity: 0;
    transition: var(--transition);
}

.curriculum-card:hover {
    border-color: rgba(0, 240, 255, 0.25);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.curriculum-card:hover::before {
    opacity: 1;
}

.day-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.curriculum-card h5 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-primary);
}

.curriculum-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.curriculum-card-special {
    border: 1px solid rgba(168, 85, 247, 0.3);
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), var(--dark-card));
}

.curriculum-card-special .day-badge {
    background: linear-gradient(135deg, var(--secondary-color), var(--accent-pink));
}

.curriculum-meta {
    display: flex;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.curriculum-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq-section {
    background: var(--dark-color);
}

.accordion-item {
    border: 1px solid var(--dark-border);
    border-radius: 12px !important;
    margin-bottom: 1rem;
    overflow: hidden;
    background: var(--dark-card);
}

.accordion-button {
    font-weight: 600;
    color: var(--text-primary);
    padding: 1.25rem 1.5rem;
    background: var(--dark-card);
    font-size: 1.05rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.1));
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(0.6) sepia(1) saturate(5) hue-rotate(150deg);
}

.accordion-body {
    padding: 1.5rem;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    background: var(--dark-card);
    border-top: 1px solid var(--dark-border);
}

/* ============================================
   TESTIMONIALS
   ============================================ */

.testimonial-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2rem;
    height: 100%;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.testimonial-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-lg), var(--glow-purple);
}

.stars i {
    color: var(--warning-color);
    font-size: 1.1rem;
}

.testimonial-text {
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
}

.testimonial-author strong {
    color: var(--text-primary);
}

.text-muted {
    color: var(--text-muted) !important;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-card {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(168, 85, 247, 0.15));
    border: 1px solid rgba(0, 240, 255, 0.2);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--shadow-xl), var(--shadow-neon);
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    color: var(--white);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--dark-surface) !important;
    border-top: 1px solid var(--dark-border);
}

.bg-dark {
    background-color: var(--dark-surface) !important;
}

.footer-brand {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.footer-brand h4 {
    color: var(--white) !important;
    font-weight: 500;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.footer-contact i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--dark-elevated);
    border: 1px solid var(--dark-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-color: transparent;
    box-shadow: var(--glow-cyan);
}

.text-white-50 {
    color: var(--text-muted) !important;
}

.bg-secondary {
    background-color: var(--dark-border) !important;
}

/* ============================================
   FLOATING CTA
   ============================================ */

.floating-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    opacity: 0;
    transform: translateY(100px);
    transition: var(--transition);
}

.floating-cta.show {
    opacity: 1;
    transform: translateY(0);
}

.floating-btn {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    box-shadow: var(--shadow-xl), var(--glow-cyan);
    transition: var(--transition);
}

.floating-btn:hover {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-pink));
    color: var(--dark-color);
    box-shadow: 0 12px 32px rgba(0, 240, 255, 0.4);
}

.floating-btn i {
    font-size: 1.5rem;
}

/* ============================================
   BACKGROUND OVERRIDES
   ============================================ */

.bg-light {
    background-color: var(--dark-surface) !important;
}

.bg-white {
    background-color: var(--dark-color) !important;
}

.shadow-sm {
    box-shadow: var(--shadow-sm) !important;
}

.shadow {
    box-shadow: var(--shadow-md) !important;
}

.shadow-lg {
    box-shadow: var(--shadow-lg) !important;
}

.rounded-4 {
    border-radius: 20px !important;
}

/* ============================================
   FORM VALIDATION
   ============================================ */

.form-control.is-invalid:focus {
    border-color: var(--danger-color);
    box-shadow: 0 0 0 3px rgba(244, 63, 94, 0.15);
}

.invalid-feedback {
    display: block;
    width: 100%;
    margin-top: 0.5rem;
    font-size: 0.875rem;
    color: var(--danger-color);
    font-weight: 500;
}

.alert {
    border-radius: 12px;
    border: none;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
}

.alert-danger {
    background-color: rgba(244, 63, 94, 0.1);
    color: #fca5a5;
    border: 1px solid rgba(244, 63, 94, 0.2);
}

.alert-success {
    background-color: rgba(34, 211, 238, 0.1);
    color: #67e8f9;
    border: 1px solid rgba(34, 211, 238, 0.2);
}

.alert-info {
    background-color: rgba(0, 240, 255, 0.08) !important;
    color: var(--primary-color) !important;
    border: 1px solid rgba(0, 240, 255, 0.2) !important;
}

.alert ul {
    margin-bottom: 0;
    padding-left: 1.5rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

.enrollment-card {
    position: relative;
}

.enrollment-card .form-control {
    font-size: 1rem;
    padding: 0.875rem 1.25rem;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
}

.enrollment-card .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 240, 255, 0.1);
}

#submitBtn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ============================================
   WORKSHOP PAGE - ENHANCED STYLES
   ============================================ */

/* Benefits Grid */
.wk-benefit-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 1.75rem;
    text-align: center;
    border: 1px solid var(--dark-border);
    transition: var(--transition);
    height: 100%;
}

.wk-benefit-card:hover {
    border-color: rgba(0, 240, 255, 0.3);
    box-shadow: var(--shadow-lg), var(--shadow-neon);
}

.wk-benefit-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.wk-benefit-card h5 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.wk-benefit-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}

/* Stats Bar */
.wk-stats-bar {
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.08), rgba(168, 85, 247, 0.08));
    border: 1px solid var(--dark-border);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    color: var(--white);
}

.wk-stat-item {
    text-align: center;
}

.wk-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    font-family: 'Orbitron', 'Poppins', sans-serif;
    line-height: 1;
    color: var(--primary-color);
    text-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.wk-stat-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    opacity: 0.85;
    margin-top: 0.25rem;
}

/* Bonus Cards */
.wk-bonus-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--dark-border);
    text-align: center;
    transition: var(--transition);
    height: 100%;
}

.wk-bonus-card:hover {
    border-color: rgba(168, 85, 247, 0.3);
    box-shadow: var(--shadow-md), var(--glow-purple);
}

.wk-bonus-card h6 {
    color: var(--text-primary);
}

.wk-bonus-num {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

/* Audience Cards */
.wk-audience-card {
    background: var(--dark-card);
    border-radius: 16px;
    padding: 1.75rem;
    border: 1px solid var(--dark-border);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
    height: 100%;
}

.wk-audience-card:hover {
    box-shadow: var(--shadow-md), var(--shadow-neon);
}

.wk-audience-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.wk-audience-card h5 {
    color: var(--text-primary);
}

/* Urgency Banner */
.wk-urgency-banner {
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    padding: 1rem;
    text-align: center;
    font-weight: 700;
    font-size: 1.05rem;
    border-radius: 12px;
}

/* Sticky Mobile CTA */
.wk-sticky-cta {
    display: none !important;
    /* Temporarily hidden as per user request */
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark-surface);
    padding: 0.75rem 1rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    border-top: 1px solid var(--dark-border);
    z-index: 1050;
}

@media (max-width: 767.98px) {
    .wk-sticky-cta {
        display: none !important;
        /* Temporarily hidden */
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    .wk-sticky-cta .btn {
        flex: 1;
    }
}

/* Google Rating Badge */
.wk-google-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 50px;
    padding: 0.5rem 1.25rem;
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
}

.wk-google-badge .stars {
    color: #fbbf24;
}

/* ============================================
   PRICE BOX
   ============================================ */

.price-box {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 240, 255, 0.05), rgba(168, 85, 247, 0.05));
    border-radius: 16px;
    border: 1px solid var(--dark-border);
}

.original-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
    margin-right: 0.5rem;
}

.current-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-right: 0.75rem;
    text-shadow: 0 0 10px rgba(0, 240, 255, 0.3);
}

.discount-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--dark-color);
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 6px;
}

/* ============================================
   TOAST NOTIFICATIONS
   ============================================ */

.custom-toast {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 9999;
    min-width: 320px;
    max-width: 400px;
    background: var(--dark-card);
    border: 1px solid var(--dark-border);
    border-radius: 12px;
    box-shadow: var(--shadow-xl);
    animation: slideInRight 0.4s ease-out;
    overflow: hidden;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.custom-toast.hiding {
    animation: slideOutRight 0.4s ease-out forwards;
}

@keyframes slideOutRight {
    from {
        opacity: 1;
        transform: translateX(0);
    }

    to {
        opacity: 0;
        transform: translateX(100px);
    }
}

.toast-header-custom {
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid var(--dark-border);
}

.toast-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.toast-icon.success {
    color: var(--success-color);
}

.toast-icon.error {
    color: var(--danger-color);
}

.toast-icon.info {
    color: var(--primary-color);
}

.toast-icon.warning {
    color: var(--warning-color);
}

.toast-content {
    flex: 1;
}

.toast-title {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.toast-message {
    font-size: 0.875rem;
    color: var(--text-secondary);
    margin: 0;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.25rem;
    cursor: pointer;
    padding: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: var(--transition);
}

.toast-close:hover {
    background: var(--dark-elevated);
    color: var(--text-primary);
}

.toast-progress {
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    width: 100%;
    animation: progressBar 4s linear forwards;
}

@keyframes progressBar {
    from {
        width: 100%;
    }

    to {
        width: 0%;
    }
}

/* ============================================
   NEON GLOW ANIMATIONS
   ============================================ */

@keyframes neonPulse {

    0%,
    100% {
        box-shadow: 0 0 5px rgba(0, 240, 255, 0.2),
            0 0 10px rgba(0, 240, 255, 0.1);
    }

    50% {
        box-shadow: 0 0 15px rgba(0, 240, 255, 0.4),
            0 0 30px rgba(0, 240, 255, 0.2),
            0 0 45px rgba(0, 240, 255, 0.1);
    }
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .wk-stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .current-price {
        font-size: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .countdown-timer {
        flex-wrap: wrap;
    }

    .time-unit {
        min-width: 60px;
    }

    .time-value {
        font-size: 1.5rem;
    }

    .floating-cta {
        bottom: 20px;
        right: 20px;
    }

    .floating-btn span {
        display: none;
    }

    .floating-btn {
        width: 60px;
        height: 60px;
        justify-content: center;
        padding: 0;
    }

    .wk-stat-number {
        font-size: 1.75rem;
    }

    .wk-stat-label {
        font-size: 0.8rem;
    }

    .wk-stats-bar {
        padding: 1.5rem 1rem;
    }

    .custom-toast {
        min-width: 280px;
        right: 10px;
        top: 80px;
    }

    .feature-box {
        gap: 1rem;
        padding: 1rem;
    }

    .feature-icon {
        width: 50px;
        height: 50px;
    }

    .feature-icon i {
        font-size: 1.4rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .btn-hero-cta {
        width: 100%;
        text-align: center;
    }

    .cta-card {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .navbar {
        padding: 0.5rem 0;
    }
}

/* ============================================
   Bootstrap Dark Overrides
   ============================================ */

.navbar-light {
    background-color: transparent !important;
}

.text-white {
    color: var(--text-primary) !important;
}

.btn-close {
    filter: invert(1);
}

hr {
    border-color: var(--dark-border);
    opacity: 0.5;
}

/* ============================================
   NEON LINE ACCENTS
   ============================================ */

.hero-section .container::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -5%;
    width: 1px;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--primary-color), transparent);
    transform: translateY(-50%);
    opacity: 0.3;
}

/* ============================================
   LINK & MISC OVERRIDES
   ============================================ */

.mainHeading {
    color: var(--primary-color);
}

.btn-light {
    background: var(--white) !important;
    color: var(--dark-color) !important;
    font-weight: 700;
}

.btn-light:hover {
    background: var(--primary-color) !important;
    color: var(--dark-color) !important;
    box-shadow: var(--glow-cyan);
}

/* Accent for hero title */
.hero-title .accent {
    color: var(--primary-color);
}

/* Smooth page-level transitions */
section {
    position: relative;
    z-index: 1;
}