/* ----------------------------------------------------
   Step One - Stylesheet
   Jesus Youth Kerala Teens Ministry
   ---------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #8a46ff;
    --primary-light: #ab7eff;
    --primary-dark: #5c24b3;
    --primary-rgb: 138, 70, 255;
    --gold: #d4af37;
    --gold-hover: #ecd06c;
    --gold-light: rgba(212, 175, 55, 0.15);
    --gold-rgb: 212, 175, 55;
    --white: #ffffff;
    --text-dark: #ffffff;
    --text-light: #ecdffc;
    --text-muted: #b0a2c7;

    /* System Colors */
    --success: #10b981;
    --success-bg: rgba(16, 185, 129, 0.12);
    --danger: #ef4444;
    --danger-bg: rgba(239, 68, 68, 0.12);
    --warning: #f59e0b;
    --warning-bg: rgba(245, 158, 11, 0.12);
    --info: #06b6d4;
    --info-bg: rgba(6, 182, 212, 0.12);

    /* Background Gradients */
    --bg-gradient: linear-gradient(135deg, #1a0836 0%, #080214 100%);
    --card-gradient: linear-gradient(145deg, rgba(255, 255, 255, 0.06) 0%, rgba(255, 255, 255, 0.02) 100%);
    --accent-gradient: linear-gradient(90deg, var(--primary), var(--gold));

    /* Modern shadow-based card structure */
    --glass: rgba(255, 255, 255, 0.04);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    --glass-blur: blur(12px);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ----------------------------------------------------
   Fonts & Font-face Declarations
   ---------------------------------------------------- */
@font-face {
    font-family: 'Groovezilla';
    src: url('Assets/dks-groovezilla-personal-use.regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sardin';
    src: url('Assets/sardin-demo/Sardin%20DEMO.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

/* ----------------------------------------------------
   CSS Reset & Base Rules
   ---------------------------------------------------- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent !important;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-gradient);
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
}

/* Apply body text font universally */
label,
input,
select,
textarea,
button,
p,
span,
li,
a {
    font-family: 'Montserrat', sans-serif;
}

/* Statistics, counters, dates, and numbers -> Groovezilla */
.num-font,
.stat-number,
.counter {
    font-family: 'Groovezilla', sans-serif !important;
}

/* Scrollbar styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #080214;
}

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

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* ----------------------------------------------------
   Typography & Accents
   ---------------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Sardin', sans-serif;
    font-weight: normal;
    line-height: 1.2;
}

.text-gold {
    color: var(--gold);
}

.text-gradient {
    background: linear-gradient(135deg, var(--text-dark) 30%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.title-groovezilla {
    font-family: 'Groovezilla', sans-serif;
    letter-spacing: 2px;
}

.title-sardin {
    font-family: 'Sardin', sans-serif;
    letter-spacing: 1px;
}

/* ----------------------------------------------------
   Layout & Container
   ---------------------------------------------------- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

/* Background grid effect */
.bg-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: 40px 40px;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    z-index: 0;
    pointer-events: none;
}

/* Decorative Glows */
.glow-orb {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(119, 60, 227, 0.25) 0%, rgba(0, 0, 0, 0) 70%);
    filter: blur(40px);
    z-index: 0;
    pointer-events: none;
}

/* ----------------------------------------------------
   Navbar Component
   ---------------------------------------------------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(17, 5, 36, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    z-index: 1000;
    padding: 0.75rem 0;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(13, 4, 28, 0.95);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
    padding: 0.5rem 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 0.75rem;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.logo-text {
    font-family: 'Sardin', sans-serif;
    font-size: 1.8rem;
    color: var(--white);
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-sub {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: var(--gold);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 2rem;
}

.nav-item a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition);
}

.nav-item a:hover {
    color: var(--gold);
}

.nav-item a:hover::after {
    width: 100%;
}

.nav-item .nav-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;
    background: linear-gradient(135deg, var(--gold) 0%, #ecd06c 100%);
    color: #120b24 !important;
    padding: 0.85rem 2rem;
    border-radius: 50px;
    font-weight: 700 !important;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-item .nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
    background: var(--white) !important;
}

.nav-item .nav-btn::after {
    display: none !important;
}

/* Dropdown Navigation Menu */
.nav-item.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(13, 4, 28, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
    padding: 0.75rem 0;
    list-style: none;
    display: none;
    min-width: 160px;
    z-index: 1000;
    animation: fadeInDropdown 0.3s ease forwards;
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    color: var(--text-light) !important;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    border-bottom: none !important;
    text-align: center;
}

.dropdown-menu li a::after {
    display: none !important;
}

.dropdown-menu li a:hover {
    color: var(--gold) !important;
    background: rgba(255, 255, 255, 0.05);
}

/* Show dropdown on hover (desktop) */
@media (min-width: 769px) {
    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Dropdown styles */
@media (max-width: 768px) {
    .dropdown-menu {
        position: static;
        transform: none !important;
        background: rgba(255, 255, 255, 0.02);
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0 1.5rem;
        width: 100%;
        display: none;
        animation: none;
    }

    .dropdown-menu.active {
        display: block;
    }

    .dropdown-menu li a {
        text-align: left;
        padding: 0.5rem 0;
        font-size: 0.95rem;
    }
}

@keyframes fadeInDropdown {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
}

/* ----------------------------------------------------
   Hero Section
   ---------------------------------------------------- */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
    z-index: 2;
    position: relative;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(119, 60, 227, 0.15);
    border: 1px solid rgba(119, 60, 227, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    color: #c09efc;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    gap: 0.5rem;
}

.hero-badge i {
    color: var(--gold);
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
}

.hero-title span {
    font-family: 'Outfit', sans-serif;
    color: var(--gold);
    display: block;
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    margin-top: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: var(--text-light);
    margin-bottom: 2rem;
    font-weight: 300;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.25rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-details-row {
    display: flex;
    gap: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    flex-wrap: wrap;
}

.hero-detail-item {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.hero-detail-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.2rem;
}

.hero-detail-info h4 {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-detail-info p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--white);
}

/* Hero Visual Graphics */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-blob {
    width: 320px;
    height: 320px;
    background: radial-gradient(circle, var(--primary-light) 0%, rgba(212, 175, 55, 0.4) 100%);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: blobMorph 12s ease-in-out infinite;
    filter: blur(25px);
    opacity: 0.55;
    position: absolute;
}

.hero-img-container {
    position: relative;
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.hero-image,
.hero-img-container .fa-fire-flame-curved {
    max-width: 100%;
    height: auto;
    max-height: 480px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.5));
    cursor: pointer;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), filter 0.4s ease;
    display: inline-block;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    outline: none;
}

.hero-image:hover,
.hero-img-container .fa-fire-flame-curved:hover {
    transform: scale(1.04);
    filter: drop-shadow(0 20px 40px rgba(212, 175, 55, 0.4));
}

.hero-image:active,
.hero-img-container .fa-fire-flame-curved:active {
    transform: scale(0.96);
}

.hero-image.pop-active,
.hero-img-container .fa-fire-flame-curved.pop-active {
    animation: imagePop 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes imagePop {
    0% {
        transform: scale(1);
    }

    30% {
        transform: scale(0.9) rotate(-3deg);
    }

    60% {
        transform: scale(1.08) rotate(3deg);
    }

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

/* Interactive Faith Particles */
.faith-particle {
    position: fixed;
    z-index: 99999;
    pointer-events: none;
    will-change: transform, opacity;
    display: flex;
    align-items: center;
    justify-content: center;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

@keyframes blobMorph {

    0%,
    100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }

    33% {
        border-radius: 50% 50% 30% 70% / 50% 60% 40% 50%;
    }

    66% {
        border-radius: 60% 40% 60% 40% / 40% 50% 50% 60%;
    }
}

/* ----------------------------------------------------
   Buttons & Links
   ---------------------------------------------------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    outline: none;
}

.btn-primary {
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
    color: var(--white);
    box-shadow: 0 4px 15px rgba(92, 36, 179, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 36, 179, 0.6);
    background: linear-gradient(90deg, #884eff, var(--primary-light));
}

.btn-gold {
    background: linear-gradient(90deg, var(--gold), #ecd06c);
    color: #120b24;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
    background: linear-gradient(90deg, #ecd06c, var(--gold));
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(255, 255, 255, 0.05);
}

.btn-sm {
    padding: 0.5rem 1.25rem;
    font-size: 0.85rem;
    border-radius: 50px;
}

/* ----------------------------------------------------
   Information Sections
   ---------------------------------------------------- */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.section-subtitle {
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 400;
}

.section-title span {
    font-family: 'Sardin', sans-serif;
    color: var(--gold);
}

/* Card components */
.card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.glass-card {
    background: var(--card-gradient);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 2.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition);
    pointer-events: none;
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
}

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

.card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(92, 36, 179, 0.2);
    border: 1px solid rgba(119, 60, 227, 0.3);
    border-radius: 16px;
    color: var(--gold);
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.glass-card:hover .card-icon {
    background: var(--gold);
    color: #120b24;
    transform: scale(1.05);
}

.card-title {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 200;
    letter-spacing: 1px;
    font-family: 'Sardin', sans-serif;
}

.card-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* About Section Specifics */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.about-info h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-text {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 1.05rem;
}

.highlight-list {
    list-style: none;
    margin-top: 1.5rem;
}

.highlight-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.highlight-item i {
    color: var(--gold);
    margin-top: 0.25rem;
}

/* ----------------------------------------------------
   Contact / Footer Section
   ---------------------------------------------------- */
.contact-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 4rem;
    z-index: 2;
    position: relative;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    gap: 1.25rem;
}

.contact-info-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: var(--gold);
    font-size: 1.4rem;
}

.contact-info-text h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info-text p,
.contact-info-text a {
    font-size: 1.05rem;
    color: var(--white);
    text-decoration: none;
    font-weight: 600;
}

.contact-info-text a:hover {
    color: var(--gold);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-size: 1.1rem;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--gold);
    color: #120b24;
    transform: translateY(-3px);
}

/* Footer structure */
.site-footer {
    background: #0d041c;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 4rem 0 2rem 0;
    position: relative;
    z-index: 2;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h2 {
    font-family: 'Sardin', sans-serif;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}

.footer-links h4 {
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 1.25rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ----------------------------------------------------
   Forms & Submissions
   ---------------------------------------------------- */
.form-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 6rem 1.5rem;
}

.form-container {
    width: 100%;
    max-width: 750px;
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2.2rem;
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--text-muted);
}

.glass-form {
    background: var(--card-gradient);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: var(--glass-shadow);
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-full-width {
    grid-column: span 2;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group label span.required {
    color: var(--danger);
    margin-left: 3px;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1.25rem;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 10px;
    color: var(--white);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.25);
    background: rgba(255, 255, 255, 0.09);
}

.form-control option {
    background: #150a2b;
    color: var(--white);
}

.form-control::placeholder {
    color: var(--text-muted);
    opacity: 0.6;
}

.form-control:disabled {
    background: #f1f5f9;
    color: var(--text-muted);
    cursor: not-allowed;
}

/* File Upload Specific */
.file-upload-wrapper {
    position: relative;
    width: 100%;
    margin-top: 0.5rem;
}

.file-upload-box {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 2rem 1.5rem;
    text-align: center;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.02);
    transition: var(--transition);
}

.file-upload-box:hover,
.file-upload-box.dragover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.06);
}

.file-upload-box i {
    font-size: 2.2rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.file-upload-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
}

.file-upload-hint {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 0.5rem;
}

.file-upload-input {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.selected-file-display {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: var(--success);
    font-weight: 600;
    display: none;
    align-items: center;
    gap: 0.5rem;
}

/* QR Code & Payment Info Layout */
.payment-info-box {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: center;
}

.qr-code-container {
    background: var(--white);
    padding: 0.5rem;
    border-radius: 10px;
    width: 180px;
    height: 180px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.qr-code-img {
    max-width: 100%;
    height: auto;
}

.payment-details h4 {
    font-size: 1.1rem;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

.payment-details p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.payment-details code {
    background: rgba(0, 0, 0, 0.3);
    padding: 0.2rem 0.5rem;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    font-family: monospace;
    font-size: 0.9rem;
}

.mobile-portal-nav {
    display: none;
    margin-bottom: 2rem;
}

.media-layout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 2rem;
}

.dashboard-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
}

/* ----------------------------------------------------
   TR & Admin Portals
   ---------------------------------------------------- */
.portal-container {
    display: grid;
    grid-template-columns: 280px 1fr;
    min-height: 100vh;
    padding-top: 70px;
}

.sidebar {
    background: rgba(13, 4, 28, 0.8);
    backdrop-filter: var(--glass-blur);
    border-right: 1px solid rgba(255, 255, 255, 0.08);
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.sidebar-menu {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
    text-decoration: none;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.sidebar-link:hover,
.sidebar-link.active {
    background: rgba(119, 60, 227, 0.15);
    color: var(--white);
    border-left: 3px solid var(--gold);
}

.sidebar-user {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.sidebar-user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gold);
    color: #120b24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.sidebar-user-info h5 {
    font-size: 0.9rem;
    color: var(--white);
}

.sidebar-user-info p {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* Portal Content Area */
.portal-content {
    padding: 2.5rem;
    overflow-y: auto;
    background: radial-gradient(circle at top right, rgba(92, 36, 179, 0.05) 0%, transparent 60%);
}

.portal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.portal-title-area h2 {
    font-size: 2rem;
    font-weight: 800;
}

.portal-title-area p {
    color: var(--text-muted);
}

/* Stats Cards styling */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.stat-card {
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 1.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.stat-info h4 {
    font-size: 0.85rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.stat-info .stat-number {
    font-size: 2.2rem;
    font-weight: 400;
    font-family: 'Outfit', sans-serif;
    color: var(--white);
}

.stat-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

/* Unique TR Code Card Details */
.tr-code-card {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #170729 100%);
    border: 1px dashed var(--gold);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    max-width: 420px;
    margin-bottom: 2.5rem;
    position: relative;
    overflow: hidden;
}

.tr-code-value {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: var(--gold);
    letter-spacing: 4px;
    margin: 1rem 0;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.3);
}

.tr-code-copy-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.tr-code-copy-btn:hover {
    background: var(--gold);
    color: #120b24;
}

/* ----------------------------------------------------
   Search, Filters & Tables
   ---------------------------------------------------- */
.table-filter-bar {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.search-box {
    position: relative;
    flex: 1;
    min-width: 250px;
}

.search-box i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-box input {
    padding-left: 2.75rem;
}

.filter-group {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.filter-select {
    padding: 0.75rem 1.5rem;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--white);
    border-radius: 8px;
    font-size: 0.9rem;
    outline: none;
    cursor: pointer;
}

.table-responsive {
    width: 100%;
    overflow-x: auto;
    background: var(--card-gradient);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    box-shadow: var(--glass-shadow);
}

.custom-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 0.95rem;
}

.custom-table th {
    background: rgba(13, 4, 28, 0.5);
    padding: 1.2rem 1.5rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: var(--gold);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.custom-table td {
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    vertical-align: middle;
}

.custom-table tr:last-child td {
    border-bottom: none;
}

.custom-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Badge Styling */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.35rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pending {
    background: var(--warning-bg);
    color: var(--warning);
    border: 1px solid rgba(255, 193, 7, 0.3);
}

.badge-approved {
    background: var(--success-bg);
    color: #4df37f;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.badge-rejected {
    background: var(--danger-bg);
    color: #ff6372;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

/* Action Buttons in Table */
.action-btn-group {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    text-decoration: none;
}

.action-btn-success:hover {
    background: var(--success);
    color: var(--white);
    border-color: var(--success);
}

.action-btn-danger:hover {
    background: var(--danger);
    color: var(--white);
    border-color: var(--danger);
}

.action-btn-info:hover {
    background: var(--primary-light);
    color: var(--white);
    border-color: var(--primary-light);
}

/* Registration Switch (Checkbox Toggle) */
.switch-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.65rem 1.25rem;
    border-radius: 50px;
}

.switch-wrapper label {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--text-light);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #555;
    transition: .4s;
    border-radius: 34px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked+.slider {
    background-color: var(--success);
}

input:focus+.slider {
    box-shadow: 0 0 1px var(--success);
}

input:checked+.slider:before {
    transform: translateX(24px);
}

/* ----------------------------------------------------
   Modal Window & Image Lightbox
   ---------------------------------------------------- */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 4, 28, 0.85);
    backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
}

.modal-content {
    background: #1e1b29;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    max-width: 550px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6);
    overflow: hidden;
    animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes modalIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }

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

.modal-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 {
    color: var(--gold);
    font-size: 1.25rem;
}

.modal-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--white);
}

.modal-body {
    padding: 1.5rem;
    max-height: 70vh;
    overflow-y: auto;
}

.lightbox-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

/* ----------------------------------------------------
   Toast Notifications
   ---------------------------------------------------- */
.toast-container {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 380px;
    width: 100%;
}

.toast {
    background: rgba(30, 27, 41, 0.95);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: var(--glass-blur);
}

.toast.show {
    transform: translateX(0);
}

.toast-success {
    border-left: 4px solid var(--success);
}

.toast-success i {
    color: var(--success);
}

.toast-error {
    border-left: 4px solid var(--danger);
}

.toast-error i {
    color: var(--danger);
}

.toast-info {
    border-left: 4px solid var(--primary-light);
}

.toast-info i {
    color: var(--primary-light);
}

/* ----------------------------------------------------
   Confirmation & Success Screens
   ---------------------------------------------------- */
.success-screen {
    text-align: center;
    padding: 4rem 2rem;
}

.success-icon {
    width: 80px;
    height: 80px;
    background: rgba(40, 167, 69, 0.1);
    border: 2px solid var(--success);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem auto;
    animation: popScale 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes popScale {
    0% {
        transform: scale(0);
    }

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

.success-screen h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-screen p {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
}

.receipt-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 2rem;
    max-width: 500px;
    margin: 0 auto 2rem auto;
    text-align: left;
}

.receipt-row {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.75rem 0;
}

.receipt-row:last-child {
    border-bottom: none;
}

.receipt-label {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.receipt-value {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--white);
}

/* Loading overlay for submissions */
.loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(13, 4, 28, 0.9);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.spinner {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-top-color: var(--gold);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1.5rem;
}

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

/* Payment info box - base style */
.payment-info-box {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem;
    border-radius: 16px;
    margin-bottom: 2rem;
}

/* Payment options grid for participant registration */
.payment-options-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

/* General QR Code image styling */
.qr-code-img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* ----------------------------------------------------
   Responsive Media Queries
   ---------------------------------------------------- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-details-row {
        justify-content: center;
    }

    .hero-visual {
        order: -1;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .portal-container {
        grid-template-columns: 1fr;
    }

    .sidebar {
        display: none;
        /* Can toggle using a mobile sidebar if needed */
    }

    .mobile-portal-nav {
        display: block;
    }
}

@media (max-width: 768px) {
    .hero-container {
        position: relative;
        display: block;
    }

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

    .hero-content a,
    .hero-content button,
    .hero-content strong {
        pointer-events: auto;
    }

    .hero-visual {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        height: 100%;
        z-index: 1;
        opacity: 0.18;
        display: flex;
        align-items: center;
        justify-content: center;
        pointer-events: auto;
    }

    .hero-blob {
        width: 280px;
        height: 280px;
        filter: blur(40px);
    }

    .hero-img-container {
        animation: float 6s ease-in-out infinite;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image,
    .hero-img-container .fa-fire-flame-curved {
        max-height: 350px !important;
        width: auto;
    }

    .section {
        padding: 4rem 0;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(13, 4, 28, 0.98);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 2rem;
        flex-direction: column;
        gap: 1.5rem;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-full-width {
        grid-column: span 1;
    }

    .glass-form {
        padding: 1.75rem;
    }

    .payment-info-box {
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .table-filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .payment-options-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .hero-section {
        padding: 100px 0 4rem 0;
        min-height: auto;
    }

    .grand-total-card {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1.5rem;
    }

    .gt-number {
        font-size: 2.5rem;
    }

    .media-layout-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .dashboard-quick-actions {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .portal-content {
        padding: 1.5rem 1rem;
    }

    .custom-table th,
    .custom-table td {
        padding: 0.8rem 1rem;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.5rem;
    }
    .nav-logo-img {
        height: 40px;
    }
    .counter-row {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        text-align: center;
    }
    .counter-info-col {
        flex-direction: column;
    }
    .receipt-card {
        padding: 1.25rem;
    }
    .tr-code-value {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }
}

/* ----------------------------------------------------
   Progress Timeline Component
   ---------------------------------------------------- */
.progress-timeline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 500px;
    margin: 2.5rem auto;
    position: relative;
    padding: 0 1rem;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    flex: 1;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    margin-bottom: 0.75rem;
    transition: var(--transition);
}

.timeline-step.completed .timeline-icon {
    background: linear-gradient(135deg, #28a745 0%, #1e7e34 100%);
    border: 2px solid var(--white);
    color: var(--white);
    box-shadow: 0 0 15px rgba(40, 167, 69, 0.4);
}

.timeline-step.pending .timeline-icon {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 2px dashed rgba(255, 255, 255, 0.3);
    color: var(--text-muted);
    animation: pulseBorder 2.5s infinite ease-in-out;
}

@keyframes pulseBorder {
    0%, 100% {
        border-color: rgba(255, 255, 255, 0.3);
        box-shadow: 0 0 5px rgba(255, 255, 255, 0.05);
    }
    50% {
        border-color: var(--gold);
        box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
        color: var(--gold);
    }
}

.timeline-connector {
    position: absolute;
    top: 30px;
    left: 20%;
    right: 20%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.timeline-connector.completed {
    background: linear-gradient(90deg, #28a745 0%, var(--gold) 100%);
    position: relative;
    overflow: hidden;
}

.timeline-connector.completed::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.9), transparent);
    animation: flowLight 2.5s infinite linear;
}

@keyframes flowLight {
    0% {
        left: -100%;
    }
    100% {
        left: 200%;
    }
}

.timeline-step-info h4 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.timeline-step-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
}