/* ============================================================
   WILDWOODS MUSIC SCHOOL — Premium Stylesheet
   Design System: Dark Luxury / Cinematic / Music-Focused
   ============================================================ */

/* ---------- CSS Custom Properties (Design Tokens) ---------- */
:root {
    /* Color Palette — Premium Brand Identity */
    --primary-yellow: #FFC600;
    --yellow-hover: #FFD633;
    --gradient-start: #8B5CF6;
    --gradient-end: #3B82F6;

    --bg-dark: #0B0B0B;
    --bg-card: #121212;
    --bg-section: #1A1A1A;

    --bg-primary: var(--bg-dark);
    --bg-secondary: var(--bg-card);
    --bg-card-element: var(--bg-section);

    --accent-purple: #FFC600;
    /* Maps primary accent color to details */
    --accent-blue: #3B82F6;
    --accent-gradient: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    --accent-gradient-hover: linear-gradient(135deg, #A78BFA, #60A5FA);

    --text-white: #FFFFFF;
    --text-gray: #B3B3B3;
    --white: var(--text-white);
    --light-gray: var(--text-gray);
    --dark-gray: #2A2A2A;
    --border-glass: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;

    /* Spacing */
    --section-padding: 80px 0;
    --section-padding-mobile: 50px 0;

    /* Transitions */
    --transition-fast: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-medium: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: 1px solid rgba(255, 255, 255, 0.08);
    --glass-blur: blur(20px);

    /* Shadows */
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow-purple: 0 0 40px rgba(255, 198, 0, 0.15);
    --shadow-glow-blue: 0 0 40px rgba(59, 130, 246, 0.15);
}

/* ---------- Global Reset & Base ---------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-purple) var(--bg-secondary);
    overflow-x: hidden;
    width: 100%;
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-secondary);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-purple);
    border-radius: 4px;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ---------- Typography ---------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--light-gray);
    max-width: 640px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ---------- Buttons ---------- */
.btn-primary-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 700;
    color: #000;
    background: var(--primary-yellow);
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--yellow-hover);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    border-radius: 50px;
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 198, 0, 0.45);
    color: #000;
}

.btn-primary-custom:hover::before {
    opacity: 1;
}

.btn-outline-custom {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-outline-custom::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent-gradient);
    opacity: 0;
    transition: var(--transition-fast);
    z-index: -1;
    border-radius: 50px;
}

.btn-outline-custom:hover {
    border-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25);
}

.btn-outline-custom:hover::before {
    opacity: 1;
}

.btn-sm-custom {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar-wildwoods {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 20px 0;
    transition: var(--transition-fast);
    background: transparent;
}

.navbar-wildwoods.scrolled {
    background: rgba(11, 11, 11, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Brand Logo + Subtitle */
.navbar-brand-custom {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white) !important;
    letter-spacing: -0.02em;
    display: flex;
    align-items: baseline;
    gap: 6px;
}

.navbar-brand-custom span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand-custom .brand-sub {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--light-gray) !important;
    opacity: 0.7;
    -webkit-text-fill-color: initial;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
}

/* Nav Links */
.navbar-wildwoods .nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--light-gray) !important;
    padding: 8px 14px !important;
    transition: var(--transition-fast);
    position: relative;
}

.navbar-wildwoods .nav-link:hover,
.navbar-wildwoods .nav-link.active {
    color: var(--white) !important;
}

/* Underline effect — only for non-dropdown links */
.navbar-wildwoods .nav-item:not(.dropdown)>.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: var(--transition-fast);
    transform: translateX(-50%);
    border-radius: 2px;
}

.navbar-wildwoods .nav-item:not(.dropdown)>.nav-link:hover::after {
    width: 60%;
}

/* Dropdown Toggle Caret Override */
.navbar-wildwoods .dropdown-toggle::after {
    border: none;
    content: '\F282';
    font-family: 'bootstrap-icons';
    font-size: 0.65rem;
    vertical-align: middle;
    margin-left: 4px;
    transition: transform 0.3s ease;
}

.navbar-wildwoods .dropdown-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
}

/* ============================================================
   DROPDOWN MENUS — Dark Glassmorphism
   ============================================================ */
.dropdown-menu-wildwoods {
    background: rgba(18, 18, 18, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 8px;
    margin-top: 12px !important;
    min-width: 240px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(255, 255, 255, 0.04);
    animation: dropdown-fade-in 0.25s ease;
}

@keyframes dropdown-fade-in {
    from {
        opacity: 0;
        transform: translateY(-8px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu-wildwoods .dropdown-item {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--light-gray);
    padding: 10px 16px;
    border-radius: 10px;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
}

.dropdown-menu-wildwoods .dropdown-item i {
    font-size: 1rem;
    width: 24px;
    text-align: center;
    color: var(--accent-purple);
    transition: var(--transition-fast);
}

.dropdown-menu-wildwoods .dropdown-item:hover,
.dropdown-menu-wildwoods .dropdown-item:focus {
    background: rgba(139, 92, 246, 0.1);
    color: var(--white);
}

.dropdown-menu-wildwoods .dropdown-item:hover i {
    color: var(--white);
    transform: scale(1.15);
}

.dropdown-menu-wildwoods .dropdown-item.active {
    background: var(--accent-gradient);
    color: var(--white);
}

.dropdown-menu-wildwoods .dropdown-item.active i {
    color: var(--white);
}

.dropdown-menu-wildwoods .dropdown-divider {
    border-color: rgba(255, 255, 255, 0.06);
    margin: 6px 12px;
}

/* Mobile Toggler */
.navbar-toggler {
    border: none !important;
    box-shadow: none !important;
    padding: 4px 8px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
}

/* CTA Buttons in Nav */
.nav-cta .btn-primary-custom {
    padding: 10px 24px;
    font-size: 0.85rem;
}

.nav-cta .btn-outline-custom {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ============================================================
   SECTION 1: HERO
   ============================================================ */
#hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-video-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11, 11, 11, 0.92) 0%, rgba(11, 11, 11, 0.8) 30%, rgba(11, 11, 11, 0.5) 65%, rgba(11, 11, 11, 1) 100%);
    z-index: 1;
}

/* Animated background pattern fallback */
.hero-bg-pattern {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 60% 40% at 70% 80%, rgba(59, 130, 246, 0.08) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 160px;
}

@media (max-width: 991px) {
    .hero-content {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding-top: 120px;
    }
}

.hero-tagline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--accent-purple);
    margin-bottom: 24px;
    opacity: 0;
}

.hero-tagline .dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-purple);
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.5);
    }
}

.hero-headline {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    font-weight: 900;
    line-height: 1.05;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
    opacity: 0;
}

.hero-headline .line {
    display: block;
    overflow: hidden;
}

.hero-headline .line span {
    display: inline-block;
}

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

.hero-subheadline {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    font-weight: 500;
    color: var(--light-gray);
    margin-bottom: 16px;
    max-width: 580px;
    opacity: 0;
}

.hero-paragraph {
    font-size: 0.95rem;
    color: rgba(179, 179, 179, 0.8);
    margin-bottom: 40px;
    max-width: 520px;
    line-height: 1.8;
    opacity: 0;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
}

/* Floating Music Notes */
.floating-notes {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.floating-notes .note {
    position: absolute;
    font-size: 1.5rem;
    color: rgba(139, 92, 246, 0.15);
    animation: float-note 15s infinite linear;
}

.floating-notes .note:nth-child(1) {
    left: 10%;
    animation-delay: 0s;
    animation-duration: 18s;
}

.floating-notes .note:nth-child(2) {
    left: 25%;
    animation-delay: 3s;
    animation-duration: 22s;
}

.floating-notes .note:nth-child(3) {
    left: 45%;
    animation-delay: 6s;
    animation-duration: 16s;
}

.floating-notes .note:nth-child(4) {
    left: 60%;
    animation-delay: 2s;
    animation-duration: 20s;
}

.floating-notes .note:nth-child(5) {
    left: 80%;
    animation-delay: 5s;
    animation-duration: 19s;
}

.floating-notes .note:nth-child(6) {
    left: 90%;
    animation-delay: 1s;
    animation-duration: 24s;
}

.floating-notes .note:nth-child(7) {
    left: 35%;
    animation-delay: 8s;
    animation-duration: 17s;
}

.floating-notes .note:nth-child(8) {
    left: 70%;
    animation-delay: 4s;
    animation-duration: 21s;
}

@keyframes float-note {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(-100vh) rotate(720deg);
        opacity: 0;
    }
}

/* Sound Wave */
.hero-soundwave {
    position: absolute;
    bottom: 120px;
    right: 60px;
    z-index: 2;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 60px;
}

.hero-soundwave .bar {
    width: 4px;
    background: var(--accent-gradient);
    border-radius: 4px;
    animation: soundwave 1.2s ease-in-out infinite alternate;
}

.hero-soundwave .bar:nth-child(1) {
    height: 20px;
    animation-delay: 0s;
}

.hero-soundwave .bar:nth-child(2) {
    height: 35px;
    animation-delay: 0.1s;
}

.hero-soundwave .bar:nth-child(3) {
    height: 50px;
    animation-delay: 0.2s;
}

.hero-soundwave .bar:nth-child(4) {
    height: 30px;
    animation-delay: 0.3s;
}

.hero-soundwave .bar:nth-child(5) {
    height: 45px;
    animation-delay: 0.4s;
}

.hero-soundwave .bar:nth-child(6) {
    height: 25px;
    animation-delay: 0.5s;
}

.hero-soundwave .bar:nth-child(7) {
    height: 55px;
    animation-delay: 0.6s;
}

.hero-soundwave .bar:nth-child(8) {
    height: 15px;
    animation-delay: 0.7s;
}

@keyframes soundwave {
    0% {
        transform: scaleY(0.4);
    }

    100% {
        transform: scaleY(1);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fade-in-up 1s 2.5s forwards;
}

.scroll-indicator .mouse {
    width: 28px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 14px;
    margin: 0 auto 10px;
    position: relative;
}

.scroll-indicator .mouse .wheel {
    width: 4px;
    height: 8px;
    background: var(--accent-purple);
    border-radius: 4px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 2s infinite;
}

@keyframes scroll-wheel {
    0% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    100% {
        transform: translateX(-50%) translateY(16px);
        opacity: 0;
    }
}

.scroll-indicator span {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translate(-50%, 20px);
    }

    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

/* ============================================================
   SECTION 2: TRUST / STATS
   ============================================================ */
#trust {
    padding: 65px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
    margin-top: 25px;
}

#trust::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
}

#trust::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
}

.stat-card {
    text-align: center;
    padding: 40px 20px;
    position: relative;
}

.stat-card::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 50%;
    background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.08), transparent);
}

.stat-card:last-child::after {
    display: none;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number.text-long {
    font-size: clamp(1.8rem, 2.8vw, 2.8rem);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    font-weight: 400;
}

/* ============================================================
   SECTION 3: WHY WILDWOODS
   ============================================================ */
#why-wildwoods {
    padding: var(--section-padding);
    position: relative;
}

.feature-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition-medium);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(59, 130, 246, 0.05));
    opacity: 0;
    transition: var(--transition-fast);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.2);
    box-shadow: var(--shadow-glow-purple);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: rgba(255, 198, 0, 0.1);
    border: 1px solid rgba(255, 198, 0, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    font-size: 1.6rem;
    color: var(--primary-yellow);
    position: relative;
    z-index: 1;
    transition: var(--transition-fast);
}

.feature-card:hover .feature-icon {
    background: var(--primary-yellow);
    color: #000;
    border-color: transparent;
    transform: scale(1.1) rotate(-5deg);
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ============================================================
   SECTION 4: COURSES
   ============================================================ */
#courses {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
}

.course-card {
    border-radius: 20px;
    overflow: hidden;
    background: #121212;
    border: var(--glass-border);
    border-top: 3px solid var(--primary-yellow);
    transition: var(--transition-medium);
    height: 100%;
    position: relative;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(255, 198, 0, 0.15);
    border-color: rgba(255, 198, 0, 0.2);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
}

.course-img-wrapper {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4 / 3;
}

.course-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.course-card:hover .course-img-wrapper img {
    transform: scale(1.1);
}

.course-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(11, 11, 11, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition-fast);
}

.course-card:hover .course-img-overlay {
    opacity: 1;
}

.course-body {
    padding: 24px;
}

.course-body h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.course-body p {
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 16px;
    line-height: 1.6;
}

.course-body .btn-learn {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--accent-purple);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: var(--transition-fast);
}

.course-body .btn-learn:hover {
    color: var(--white);
    gap: 12px;
}

/* ============================================================
   SECTION 5: LEARNING JOURNEY (Timeline)
   ============================================================ */
#journey {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

.timeline-wrapper {
    position: relative;
    padding: 40px 0;
}

/* Horizontal line connecting all steps */
.timeline-line {
    position: absolute;
    top: 45px;
    left: 5%;
    right: 5%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-purple), var(--accent-blue), var(--accent-purple));
    opacity: 0.3;
    z-index: 0;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--white);
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3);
    transition: var(--transition-fast);
}

.step-number::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(139, 92, 246, 0.2);
    animation: pulse-ring 3s infinite;
}

@keyframes pulse-ring {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.15);
        opacity: 0;
    }
}

.timeline-step:hover .step-number {
    transform: scale(1.15);
    box-shadow: 0 0 50px rgba(139, 92, 246, 0.5);
}

.timeline-step h5 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 6px;
}

.timeline-step p {
    font-size: 0.8rem;
    color: var(--light-gray);
    padding: 0 10px;
}

/* ============================================================
   SECTION 6: INSTRUCTOR
   ============================================================ */
#instructor {
    padding: var(--section-padding);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.instructor-img-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.instructor-img-wrapper img {
    width: 100%;
    border-radius: 24px;
    transition: var(--transition-slow);
}

.instructor-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    border: var(--glass-border);
    pointer-events: none;
}

.instructor-img-glow {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(139, 92, 246, 0.15);
    filter: blur(80px);
    z-index: -1;
}

.instructor-img-glow.top-right {
    top: -50px;
    right: -50px;
}

.instructor-img-glow.bottom-left {
    bottom: -50px;
    left: -50px;
    background: rgba(59, 130, 246, 0.15);
}

.instructor-content h2 {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 800;
    margin-bottom: 20px;
}

.instructor-content .lead-text {
    font-size: 1.05rem;
    color: var(--light-gray);
    margin-bottom: 32px;
    line-height: 1.8;
}

.instructor-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 36px;
}

.instructor-stat {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    transition: var(--transition-fast);
}

.instructor-stat:hover {
    border-color: rgba(255, 198, 0, 0.2);
    background: rgba(255, 198, 0, 0.03);
}

.instructor-stat .stat-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 4px;
}

.instructor-stat .stat-desc {
    font-size: 0.8rem;
    color: var(--light-gray);
}

.signature-wrapper {
    margin-top: 20px;
    opacity: 0.7;
}

.signature-wrapper svg {
    height: 50px;
    width: auto;
}

.signature-line {
    stroke-dasharray: 500;
    stroke-dashoffset: 500;
    animation: draw-signature 3s ease forwards;
}

@keyframes draw-signature {
    to {
        stroke-dashoffset: 0;
    }
}

/* ============================================================
   SECTION 7: STUDIO
   ============================================================ */


#studio-section {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

#studio {
    padding: var(--section-padding);
    position: relative;
    overflow: hidden;
}

/* Waveform background */
.studio-waveform-bg {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    pointer-events: none;
    z-index: 0;
}

.studio-waveform-bg svg {
    width: 100%;
    height: 100%;
}

.studio-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-medium);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.studio-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent-gradient);
    border-radius: 3px;
    opacity: 0;
    transition: var(--transition-fast);
}

.studio-card:hover {
    transform: translateY(-8px);
    border-color: rgba(139, 92, 246, 0.35);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.15), rgba(59, 130, 246, 0.15));
    box-shadow: 0 12px 40px rgba(139, 92, 246, 0.15);
}

.studio-card:hover::before {
    opacity: 1;
}

.studio-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.4rem;
    color: var(--accent-purple);
    transition: var(--transition-fast);
}

.studio-card:hover .studio-icon {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    transform: rotate(-5deg) scale(1.1);
}

.studio-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.studio-card p {
    font-size: 0.85rem;
    color: var(--light-gray);
    line-height: 1.7;
}

/* ============================================================
   SECTION 8: STUDENT SHOWCASE
   ============================================================ */
#showcase {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.showcase-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.showcase-nav .nav-pill {
    padding: 10px 28px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--light-gray);
    background: var(--glass-bg);
    border: var(--glass-border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.showcase-nav .nav-pill.active,
.showcase-nav .nav-pill:hover {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
}

.video-placeholder {
    aspect-ratio: 16 / 9;
    background: var(--bg-card);
    border-radius: 16px;
    border: var(--glass-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    transition: var(--transition-fast);
    cursor: pointer;
    overflow: hidden;
    position: relative;
}

.video-placeholder:hover {
    border-color: rgba(139, 92, 246, 0.3);
    box-shadow: var(--shadow-glow-purple);
}

.play-btn {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
    transition: var(--transition-fast);
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.4);
}

.video-placeholder:hover .play-btn {
    transform: scale(1.15);
}

.video-placeholder p {
    font-size: 0.85rem;
    color: var(--light-gray);
}

/* Testimonial Slider */
.testimonial-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    border-radius: 20px;
    padding: 36px;
    transition: var(--transition-fast);
}

.testimonial-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
}

.testimonial-stars {
    color: #F59E0B;
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.testimonial-text {
    font-size: 1rem;
    font-style: italic;
    color: var(--light-gray);
    margin-bottom: 24px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testimonial-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1rem;
}

.testimonial-name {
    font-weight: 600;
    font-size: 0.95rem;
}

.testimonial-role {
    font-size: 0.8rem;
    color: var(--light-gray);
}

/* ============================================================
   SECTION 9: FREE RESOURCES
   ============================================================ */
#resources {
    padding: var(--section-padding);
}

.resource-card {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 20px;
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition-medium);
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.2);
    box-shadow: var(--shadow-glow-blue);
}

.resource-icon {
    width: 64px;
    height: 64px;
    border-radius: 18px;
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.5rem;
    color: var(--accent-blue);
    transition: var(--transition-fast);
}

.resource-card:hover .resource-icon {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-purple));
    color: var(--white);
    border-color: transparent;
    transform: rotate(-5deg) scale(1.1);
}

.resource-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.resource-card p {
    font-size: 0.85rem;
    color: var(--light-gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* ============================================================
   SECTION 10: BOOK DEMO (CTA)
   ============================================================ */
#book-demo {
    padding: var(--section-padding-mobile);
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.demo-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    z-index: 0;
}

.demo-glow.purple {
    top: -200px;
    left: -100px;
    background: rgba(139, 92, 246, 0.08);
}

.demo-glow.blue {
    bottom: -200px;
    right: -100px;
    background: rgba(59, 130, 246, 0.08);
}

.demo-form-wrapper {
    background: var(--glass-bg);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    border-radius: 24px;
    padding: 60px;
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

/* Floating Labels */
.form-floating-custom {
    position: relative;
    margin-bottom: 24px;
}

.form-floating-custom input,
.form-floating-custom select {
    width: 100%;
    padding: 18px 20px 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--white);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    outline: none;
    transition: var(--transition-fast);
    appearance: none;
}

.form-floating-custom input:focus,
.form-floating-custom select:focus {
    border-color: var(--accent-purple);
    background: rgba(139, 92, 246, 0.04);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.form-floating-custom label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 0.9rem;
    color: rgba(179, 179, 179, 0.6);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-floating-custom input:focus~label,
.form-floating-custom input:not(:placeholder-shown)~label,
.form-floating-custom select:focus~label,
.form-floating-custom select:not([value=""])~label {
    top: 12px;
    transform: translateY(0);
    font-size: 0.7rem;
    color: var(--accent-purple);
}

.form-floating-custom select option {
    background: var(--bg-secondary);
    color: var(--white);
}

.demo-form-wrapper .btn-primary-custom {
    width: 100%;
    justify-content: center;
    padding: 18px;
    font-size: 1rem;
}

/* ============================================================
   SECTION 11: FAQ
   ============================================================ */
#faq {
    padding: var(--section-padding-mobile);
}

.faq-accordion .accordion-item {
    background: var(--glass-bg);
    border: var(--glass-border) !important;
    border-radius: 16px !important;
    margin-bottom: 12px;
    overflow: hidden;
}

.faq-accordion .accordion-button {
    background: transparent;
    color: var(--white);
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    padding: 24px 28px;
    box-shadow: none !important;
    border: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(139, 92, 246, 0.05);
    color: var(--white);
}

.faq-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%238B5CF6'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    filter: none;
}

.faq-accordion .accordion-body {
    padding: 0 28px 24px;
    font-size: 0.9rem;
    color: var(--light-gray);
    line-height: 1.8;
}

/* ============================================================
   SECTION 12: FOOTER
   ============================================================ */
#footer {
    padding: 80px 0 0;
    background: var(--bg-secondary);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.footer-brand span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-desc {
    font-size: 0.88rem;
    color: var(--light-gray);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    background: var(--accent-gradient);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-3px);
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
}

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

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: var(--light-gray);
    transition: var(--transition-fast);
}

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

.footer-newsletter .input-group {
    border-radius: 50px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.footer-newsletter input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 14px 20px;
    font-family: var(--font-body);
    font-size: 0.88rem;
    outline: none;
}

.footer-newsletter input::placeholder {
    color: rgba(179, 179, 179, 0.5);
}

.footer-newsletter .input-group button {
    background: var(--accent-gradient);
    border: none;
    color: var(--white);
    padding: 14px 24px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.footer-newsletter .input-group button:hover {
    opacity: 0.9;
}

.footer-bottom {
    margin-top: 60px;
    padding: 24px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(179, 179, 179, 0.6);
    margin: 0;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px 0;
    }

    .hero-soundwave {
        display: none;
    }

    .stat-card::after {
        display: none;
    }

    .instructor-img-wrapper {
        margin-bottom: 48px;
    }

    .demo-form-wrapper {
        padding: 40px 28px;
    }

    .timeline-line {
        display: none;
    }

    .navbar-collapse {
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-radius: 16px;
        padding: 20px;
        margin-top: 12px;
        border: var(--glass-border);
        max-height: 80vh;
        overflow-y: auto;
    }

    /* Mobile dropdown adjustments */
    .dropdown-menu-wildwoods {
        background: rgba(255, 255, 255, 0.03);
        border: none;
        border-left: 2px solid rgba(139, 92, 246, 0.3);
        border-radius: 0 12px 12px 0;
        margin-top: 4px !important;
        margin-left: 12px;
        padding: 8px 4px;
        box-shadow: none;
        animation: none;
    }

    .dropdown-menu-wildwoods .dropdown-item {
        font-size: 0.85rem;
        padding: 8px 14px;
    }

    /* Mobile CTA buttons */
    .nav-cta {
        flex-direction: column;
        margin-top: 16px;
        padding-top: 16px;
        border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-cta .btn-primary-custom,
    .nav-cta .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    /* Hide brand subtitle on mobile */
    .navbar-brand-custom .brand-sub {
        display: none;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 64px 0;
    }

    .hero-headline {
        font-size: clamp(2.2rem, 8vw, 3.2rem);
    }

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn-primary-custom,
    .hero-buttons .btn-outline-custom {
        width: 100%;
        justify-content: center;
    }

    .instructor-stats {
        grid-template-columns: 1fr;
    }

    .timeline-step {
        margin-bottom: 32px;
    }

    .section-title {
        font-size: clamp(1.8rem, 6vw, 2.4rem);
    }
}

@media (max-width: 575.98px) {
    .stat-card {
        padding: 24px 16px;
    }

    .stat-number {
        font-size: 1.2rem;
    }

    .stat-number.text-long {
        font-size: 1.2rem;
    }
}

/* ---------- Utility / Animation Helpers ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: var(--transition-slow);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Preloader */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg-primary);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

#preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 24px;
}

.preloader-logo span {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.preloader-bar {
    width: 200px;
    height: 3px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 3px;
    overflow: hidden;
    margin: 0 auto;
}

.preloader-bar-inner {
    width: 0%;
    height: 100%;
    background: var(--accent-gradient);
    border-radius: 3px;
    animation: preload-progress 1.5s ease forwards;
}

@keyframes preload-progress {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* Back to top */
#back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-gradient);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-fast);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.3);
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(139, 92, 246, 0.5);
}

/* ============================================================
   RESPONSIVE PAGE HEROS (About, Courses, Studio, Register)
   ============================================================ */
.about-hero,
.course-hero,
.studio-hero {
    min-height: 60vh;
    padding-top: 160px;
    padding-bottom: 60px;
}

@media (max-width: 991px) {

    .about-hero,
    .course-hero,
    .studio-hero {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {

    .about-hero,
    .course-hero,
    .studio-hero {
        padding-top: 100px;
    }
}

.studio-hero {
    min-height: 80vh;
}

.register-hero {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 60px;
    background: var(--bg-primary);
}

@media (max-width: 991px) {
    .register-hero {
        padding-top: 120px;
    }
}

@media (max-width: 576px) {
    .register-hero {
        padding-top: 100px;
    }
}

/* Page Overlay styling */
.page-hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

.course-hero-overlay {
    background: rgba(0, 0, 0, 0.72);
    z-index: 1;
}

/* WhatsApp Floating Button */
#whatsapp-float {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 54px;
    height: 54px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: var(--transition-fast);
}

#whatsapp-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 36px rgba(37, 211, 102, 0.6);
    color: white;
}

@media (max-width: 768px) {
    #whatsapp-float {
        bottom: 85px;
        right: 20px;
        width: 48px;
        height: 48px;
        font-size: 1.5rem;
    }
}

/* Multi-Step Wizard Pulsing Steps styling */
.step-num {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
    font-weight: bold;
    position: relative;
    z-index: 2;
    transition: var(--transition-fast);
}

.step-num-active {
    background: var(--primary-yellow) !important;
    color: #000 !important;
    border: 2px solid var(--primary-yellow) !important;
}

.step-num-active::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(255, 198, 0, 0.45);
    animation: pulse-ring 3s infinite;
}

/* Premium Glassmorphic Pagination styling */
.pagination {
    margin-top: 25px;
    justify-content: center;
}

.pagination .page-item .page-link,
.pagination li a {
    background: var(--bg-secondary);
    border: var(--glass-border);
    color: var(--light-gray);
    padding: 10px 18px;
    margin: 0 4px;
    border-radius: 8px;
    text-decoration: none;
    transition: var(--transition-fast);
}

.pagination .page-item.active .page-link,
.pagination li.active a {
    background: var(--accent-gradient);
    border-color: transparent;
    color: var(--white) !important;
}

.pagination .page-item .page-link:hover,
.pagination li a:hover {
    background: rgba(139, 92, 246, 0.2);
    color: var(--white) !important;
    border-color: rgba(139, 92, 246, 0.4);
}