/* ========================================
   CSS Variables & Root Styles
   ======================================== */
:root {
    /* Yuvix-inspired Dark Purple Theme */
    --primary-color: #8a2be2;
    /* Vibrant Purple */
    --primary-dark: #6a1bb2;
    --primary-light: #a855f7;
    --secondary-color: #7c3aed;
    /* Purple accent */
    --success-color: #10b981;
    /* Modern green */
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;

    /* Dark theme colors */
    --bg-dark: #0d0221;
    /* Deep purple-navy */
    --bg-card: #1a0b2e;
    /* Dark purple */
    --bg-elevated: #2d1b4e;
    /* Lighter purple */

    --light-color: #f8f9fa;
    --dark-color: #0d0221;
    --white: #ffffff;

    /* Text colors */
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #6b7280;

    /* Effects */
    --border-radius: 12px;
    --box-shadow: 0 4px 12px rgba(138, 43, 226, 0.15);
    --box-shadow-lg: 0 8px 24px rgba(138, 43, 226, 0.25);
    --glow-purple: 0 0 20px rgba(138, 43, 226, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ========================================
   Global Styles
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    overflow-x: hidden;
    max-width: 100%;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--light-color);
    padding-top: 60px;
}

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

a:hover {
    opacity: 0.9;
}

/* ========================================
   Navigation Styles
   ======================================== */
.navbar-premium {
    background: white !important;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #667eea !important;
    transition: all 0.3s ease;
}

.navbar-brand:hover {
    color: #764ba2 !important;
}

.brand-text {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    color: #2d3748 !important;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #667eea !important;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-link:hover::after {
    width: 80%;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-radius: 12px;
    padding: 12px 0;
    margin-top: 8px;
    min-width: 220px;
}

.dropdown-item {
    padding: 12px 24px;
    transition: all 0.3s ease;
    color: #2d3748;
    font-weight: 500;
}

.dropdown-item:hover {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding-left: 28px;
}

.dropdown-item:active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.dropdown-divider {
    margin: 8px 16px;
    border-top: 1px solid #e2e8f0;
}

.navbar-toggler {
    border: none;
    padding: 8px;
}

.navbar-toggler:focus {
    box-shadow: none;
}

/* Offcanvas Mobile Menu */
.offcanvas-modern {
    width: 300px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.offcanvas-modern .offcanvas-header {
    background: rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 20px;
}

.offcanvas-modern .offcanvas-title {
    color: white;
    font-weight: 700;
    font-size: 1.3rem;
}

.offcanvas-modern .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.offcanvas-modern .offcanvas-body {
    padding: 20px 0;
}

.offcanvas-modern .nav-item {
    margin-bottom: 5px;
}

.offcanvas-modern .nav-link {
    color: white !important;
    padding: 12px 20px;
    border-radius: 0;
    transition: all 0.3s ease;
    display: block;
}

.offcanvas-modern .nav-link:hover {
    background: rgba(255, 255, 255, 0.15);
    padding-left: 25px;
}

.offcanvas-modern .nav-link::after {
    display: none;
}

.offcanvas-modern .nav-link i {
    width: 20px;
}

.offcanvas-modern .nav-link .fa-chevron-down {
    width: auto;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.offcanvas-modern .submenu {
    list-style: none;
    padding: 0;
    margin: 0;
    background: rgba(0, 0, 0, 0.1);
}

.offcanvas-modern .submenu li {
    margin: 0;
}

.offcanvas-modern .submenu a {
    display: block;
    padding: 10px 20px 10px 50px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s ease;
}

.offcanvas-modern .submenu a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding-left: 55px;
}

.offcanvas-modern .nav-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 15px 20px;
}

.offcanvas-modern .btn-primary {
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
}

.offcanvas-modern .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.offcanvas-modern .btn-link {
    color: white !important;
    text-decoration: none;
    padding: 12px 20px;
}

.offcanvas-modern .btn-link:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* ========================================
   Hero Section
   ======================================== */
.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
    padding: 50px 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(124, 58, 237, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(139, 92, 246, 0.3) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {

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

    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,122.7C672,117,768,139,864,138.7C960,139,1056,117,1152,101.3C1248,85,1344,75,1392,69.3L1440,64L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 40px rgba(168, 85, 247, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.95;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-btn {
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(138, 43, 226, 0.4);
}

/* ========================================
   Card Styles
   ======================================== */
.card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.card-body {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-body .btn {
    margin-top: auto;
}

/* Quick Tests section - centered buttons */
#quick-tests .card-body .btn {
    align-self: center;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

/* Exam section - small left-aligned buttons */
.section .card-body .btn-outline-primary,
.section .card-body .btn-outline-success,
.section .card-body .btn-outline-purple {
    align-self: flex-start;
    padding: 0.5rem 1.5rem;
    font-size: 0.9rem;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-lg);
}

.card-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card-icon.primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: var(--white);
}

.card-icon.success {
    background: linear-gradient(135deg, #11998e 0%, #38ef7d 100%);
    color: var(--white);
}

.card-icon.warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: var(--white);
}

.card-icon.info {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: var(--white);
}

.btn-outline-warning:hover {
    color: var(--white);
    background-color: var(--warning);
    border-color: var(--warning);
}

.btn-outline-purple {
    color: #667eea;
    border-color: #667eea;
    background-color: transparent;
}

.btn-outline-purple:hover {
    color: var(--white);
    background-color: #667eea;
    border-color: #667eea;
}

/* ========================================
   Exam Card Styles
   ======================================== */
.exam-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    overflow: visible;
    position: relative;
}

.exam-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(138, 43, 226, 0.2);
}

.accuracy-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
    z-index: 10;
}

.accuracy-badge i {
    font-size: 0.85rem;
}

.exam-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #8a2be2 0%, #a855f7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.3);
}

/* Horizontal Stats Row */
.exam-stats-row {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.stat-box {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 8px;
    border: 1px solid rgba(138, 43, 226, 0.1);
}

.stat-box i {
    font-size: 1.5rem;
    min-width: 24px;
    text-align: center;
}

.stat-box small {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-box strong {
    font-size: 1rem;
    color: #2d3748;
}

/* Old vertical stats - remove */
.exam-stats {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(138, 43, 226, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    border-radius: 8px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-item i {
    font-size: 1.5rem;
    width: 30px;
    text-align: center;
}

.stat-item small {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.stat-item strong {
    font-size: 1rem;
    color: #2d3748;
}

.exam-rules {
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 3px solid #8a2be2;
}

.exam-rules h6 {
    color: #8a2be2;
    font-size: 0.9rem;
}

.exam-card .btn-primary {
    background: linear-gradient(135deg, #8a2be2 0%, #a855f7 100%);
    border: none;
    padding: 12px 24px;
    font-weight: 600;
}

.exam-card .btn-primary:hover {
    background: linear-gradient(135deg, #6a1bb2 0%, #8a2be2 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(138, 43, 226, 0.4);
}

/* ========================================
   Exam Show Page Styles
   ======================================== */
.exam-requirements-section {
    background: #f8f9fa;
    padding: 80px 0;
    margin-top: 60px;
}

.exam-requirements-section h3 {
    color: #2d3748;
}

.requirement-item {
    text-align: center;
    padding: 20px;
}

.requirement-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
}

.requirement-icon {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.requirement-icon:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.2);
}

.requirement-item h5 {
    color: #2d3748;
    font-size: 1.1rem;
}

.requirement-value {
    color: #667eea;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
}

.exam-rules-section {
    background: white;
    border-radius: 12px;
    border-left: 4px solid #667eea;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rules-header {
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.rules-header i {
    font-size: 1.2rem;
}

.rules-content {
    padding: 24px;
    line-height: 1.8;
    color: #4b5563;
    font-size: 0.95rem;
    text-align: left;
}

.rules-list {
    list-style: decimal;
    padding-left: 24px;
    margin: 0;
}

.rules-list li {
    margin-bottom: 12px;
    padding-left: 8px;
}

/* ========================================
   Lessons Page Hero Section
   ======================================== */
.hero-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 25px;
    color: white;
    font-size: 0.95rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
}

/* ========================================
   Compact Hero Bar
   ======================================== */
.compact-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 30px 0;
    margin-bottom: 0;
}

.compact-hero-title {
    color: white;
    font-size: 1.75rem;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

.test-card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.test-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 32px rgba(102, 126, 234, 0.2);
}

.test-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.test-info {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 16px;
    background: #f8f9fa;
    border-radius: 8px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: #4b5563;
}

.info-item i {
    font-size: 1.2rem;
    width: 24px;
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 60px 0;
}

.section h3 {
    color: #2d3748;
    font-size: 2rem;
    position: relative;
    padding-bottom: 16px;
}

.section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #040404;
    margin-bottom: 0.5rem;
}

.section-title-wrapper {
    display: inline-block;
    position: relative;
    margin-bottom: 1rem;
}

.section-title-icon {
    font-size: 2rem;
    color: #667eea;
    margin-bottom: 0.5rem;
    display: block;
}

.section-title-underline {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    margin: 10px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #3d3a3a;
    margin-bottom: 3rem;
}

.section-bg {
    background-color: #f8f9fa;
    background-image:
        linear-gradient(30deg, #667eea08 12%, transparent 12.5%, transparent 87%, #667eea08 87.5%, #667eea08),
        linear-gradient(150deg, #667eea08 12%, transparent 12.5%, transparent 87%, #667eea08 87.5%, #667eea08),
        linear-gradient(30deg, #667eea08 12%, transparent 12.5%, transparent 87%, #667eea08 87.5%, #667eea08),
        linear-gradient(150deg, #667eea08 12%, transparent 12.5%, transparent 87%, #667eea08 87.5%, #667eea08);
    background-size: 80px 140px;
    background-position: 0 0, 0 0, 40px 70px, 40px 70px;
    position: relative;
}

.section-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    pointer-events: none;
}

/* ========================================
   CTA Section Styles
   ======================================== */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    z-index: 0;
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    z-index: 0;
}

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

.cta-section .section-title {
    color: white;
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-section .section-title-underline {
    background: white;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
}

.cta-section .btn-primary {
    background: white;
    color: #667eea;
    border: none;
    font-weight: 600;
    padding: 12px 30px;
}

.cta-section .btn-primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-outline-primary {
    border-color: white;
    color: white;
    font-weight: 600;
    padding: 12px 30px;
}

.cta-section .btn-outline-primary:hover {
    background: white;
    color: #667eea;
    border-color: white;
    transform: translateY(-2px);
}

.cta-section .text-success {
    color: #90EE90 !important;
}

/* ========================================
   FAQ Section Styles
   ======================================== */
.faq-section {
    background-color: #f8f9fa;
}

.faq-sidebar {
    position: sticky;
    top: 100px;
}

.faq-item {
    border: none;
    margin-bottom: 15px;
    border-radius: 12px;
    overflow: hidden;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 4px 16px rgba(102, 126, 234, 0.15);
    transform: translateY(-2px);
}

.faq-item .accordion-header {
    margin-bottom: 0;
}

.faq-item .accordion-button {
    background: white;
    color: #2d3748;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 20px 25px;
    border: none;
    box-shadow: none;
}

.faq-item .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.faq-item .accordion-button:not(.collapsed) .faq-icon {
    color: white;
}

.faq-item .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-item .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23667eea'%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");
}

.faq-item .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%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");
}

.faq-icon {
    color: #667eea;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.faq-item .accordion-body {
    padding: 20px 25px;
    background: white;
    color: #4a5568;
    line-height: 1.8;
    border-top: 1px solid #e2e8f0;
}

.faq-item .accordion-collapse {
    border: none;
}

/* ========================================
   Button Styles
   ======================================== */
.btn {
    border-radius: var(--border-radius);
    padding: 10px 24px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-warning {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    border: none;
    color: white;
}

.btn-warning:hover {
    background: linear-gradient(135deg, #f5576c 0%, #f093fb 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border: none;
    color: white;
}

.btn-info:hover {
    background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
    color: white;
    transform: translateY(-2px);
}

.btn-lg {
    padding: 12px 32px;
    font-size: 1.1rem;
}

.btn-icon {
    margin-right: 8px;
}

/* ========================================
   Badge Styles
   ======================================== */
.badge {
    padding: 6px 12px;
    border-radius: 20px;
    font-weight: 500;
}

/* ========================================
   Footer Styles
   ======================================== */
/* ========================================
   Footer Styles
   ======================================== */
.footer-premium {
    padding: 60px 0 30px;
    position: relative;
}

.footer-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    overflow: hidden;
}

.footer-gradient .container {
    position: relative;
    z-index: 1;
}

.footer-brand {
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.footer-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

.footer-heading {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: white;
    color: #667eea;
    transform: translateY(-3px);
}

.footer {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    color: #ffffff;
    padding: 60px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.footer h5,
.footer h6 {
    color: #ffffff;
    font-weight: 600;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer a:hover {
    color: #a855f7;
    padding-left: 5px;
}

.footer .list-unstyled li {
    margin-bottom: 10px;
}

.footer hr {
    border-color: rgba(138, 43, 226, 0.2);
}

.footer .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
}

.footer .social-links a:hover {
    background: linear-gradient(135deg, #8a2be2, #a855f7);
    border-color: #8a2be2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

.footer-premium {
    background: linear-gradient(135deg, #1a0b2e 0%, #2d1b4e 50%, #1a0b2e 100%);
    color: #ffffff;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.footer-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #8a2be2, transparent);
}

.footer-premium h4 {
    color: #ffffff;
    font-size: 1.5rem;
}

.footer-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-heading {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
}

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

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-block;
    position: relative;
}

.footer-links a::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8a2be2, #a855f7);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: #a855f7;
    padding-left: 8px;
}

.footer-links a:hover::before {
    width: 100%;
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(138, 43, 226, 0.2);
    border: 1px solid rgba(138, 43, 226, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a855f7;
    font-size: 1rem;
    transition: var(--transition);
    text-decoration: none;
}

.social-link:hover {
    background: linear-gradient(135deg, #8a2be2, #a855f7);
    border-color: #8a2be2;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(138, 43, 226, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(138, 43, 226, 0.2);
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* ========================================
   Utility Classes
   ======================================== */
.text-gradient {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-custom {
    box-shadow: var(--box-shadow);
}

.shadow-custom-lg {
    box-shadow: var(--box-shadow-lg);
}

.rounded-custom {
    border-radius: var(--border-radius);
}

/* ========================================
   Responsive Styles
   ======================================== */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .section {
        padding: 60px 0;
    }

    .hero-section {
        padding: 60px 0;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
}