/* Tech Bloom - Modern Dark Neon Theme */

:root {
    --primary-dark: #0f0f23;
    --secondary-dark: #1a1a3e;
    --accent-cyan: #00d4ff;
    --accent-purple: #7c3aed;
    --accent-pink: #ec4899;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --bg-glass: rgba(255, 255, 255, 0.05);
    --border-glass: rgba(255, 255, 255, 0.1);
    --glow-cyan: 0 0 20px rgba(0, 212, 255, 0.3);
    --glow-purple: 0 0 20px rgba(124, 58, 237, 0.3);
    --glow-pink: 0 0 20px rgba(236, 72, 153, 0.3);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: var(--primary-dark);
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Logo SVG Styling */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
    animation: logoGlow 3s ease-in-out infinite;
}

.logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    animation: logoFloat 2s ease-in-out infinite;
}

.logo-image {
    width: 50px;
    height: auto;
    max-height: 50px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.3));
    animation: logoFloat 2s ease-in-out infinite;
    object-fit: contain;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-cyan); }
    50% { text-shadow: 0 0 20px var(--accent-cyan), 0 0 30px var(--accent-purple); }
}

.nav-logo:hover {
    color: #00ffff;
    text-shadow: 0 0 25px var(--accent-cyan), 0 0 35px var(--accent-purple);
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-dark);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 0.5s ease-in forwards;
    animation-delay: 0.5s;
}

.loading-content {
    text-align: center;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--border-glass);
    border-top-color: var(--accent-cyan);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes fadeOut {
    to { opacity: 0; pointer-events: none; }
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Bar */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border-glass);
    padding: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 24px;
    font-weight: bold;
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.logo-svg {
    width: 40px;
    height: 40px;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.5));
    animation: logoFloat 2s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-5px); }
}

@keyframes logoGlow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-cyan); }
    50% { text-shadow: 0 0 20px var(--accent-cyan), 0 0 30px var(--accent-purple); }
}

.nav-logo {
    animation: logoGlow 3s ease-in-out infinite;
}

.nav-logo:hover {
    color: #00ffff;
    text-shadow: 0 0 25px var(--accent-cyan), 0 0 35px var(--accent-purple);
}

@keyframes glow {
    0%, 100% { text-shadow: 0 0 10px var(--accent-cyan); }
    50% { text-shadow: 0 0 20px var(--accent-cyan), 0 0 30px var(--accent-purple); }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
    align-items: center;
    transition: var(--transition);
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    font-size: 15px;
    font-weight: 500;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px var(--accent-cyan);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 8px 20px;
    border: 1px solid var(--accent-cyan);
    border-radius: 5px;
    color: var(--accent-cyan);
}

.nav-btn:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 15px var(--glow-cyan);
}

.nav-btn-primary {
    padding: 8px 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: none;
    border-radius: 5px;
    color: var(--text-primary);
    font-weight: 600;
}

.nav-btn-primary:hover {
    box-shadow: 0 0 20px var(--glow-cyan), 0 0 30px var(--glow-purple);
    transform: translateY(-2px);
}

/* Hamburger menu - defined in 3d-design.css and mobile-menu-improved.css */

/* User Menu */
.user-profile-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
}

.user-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--secondary-dark);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 200px;
    display: none;
    flex-direction: column;
    backdrop-filter: blur(10px);
    margin-top: 10px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.nav-user-menu {
    position: relative;
}

.nav-user-menu:hover .user-dropdown {
    display: flex;
}

.user-dropdown a {
    color: var(--text-secondary);
    padding: 10px 20px;
    text-decoration: none;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
}

.user-dropdown a:hover {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-cyan);
    padding-left: 25px;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 120px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25d366, #128c7e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    z-index: 998;
    animation: bounce 2.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
    border: 2px solid rgba(255, 255, 255, 0.1);
}

.whatsapp-btn:hover {
    transform: scale(1.15);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.7), 0 0 20px rgba(37, 211, 102, 0.5);
    animation: none;
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    25% { transform: translateY(-10px); }
    50% { transform: translateY(0); }
    75% { transform: translateY(-5px); }
}

/* Toast Notification */
.toast {
    position: fixed;
    bottom: 20px;
    left: 20px;
    background: var(--secondary-dark);
    border: 1px solid var(--border-glass);
    border-left: 4px solid var(--accent-cyan);
    padding: 20px;
    border-radius: 8px;
    color: var(--text-primary);
    display: none;
    max-width: 400px;
    animation: slideIn 0.3s ease;
    backdrop-filter: blur(10px);
    z-index: 10000;
}

@keyframes slideIn {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 100px 20px 50px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glow-sphere {
    position: absolute;
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(60px);
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: var(--accent-cyan);
    top: 10%;
    right: 10%;
    animation: float 6s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: var(--accent-purple);
    bottom: 10%;
    left: 5%;
    animation: float 8s ease-in-out infinite reverse;
}

.glow-3 {
    width: 350px;
    height: 350px;
    background: var(--accent-pink);
    top: 40%;
    left: 30%;
    animation: float 7s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(30px); }
}

.stars {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #eee, rgba(0,0,0,0)),
        radial-gradient(2px 2px at 60px 70px, #fff, rgba(0,0,0,0)),
        radial-gradient(1px 1px at 50px 50px, #ddd, rgba(0,0,0,0));
    background-repeat: repeat;
    background-size: 200px 200px;
    animation: twinkling 5s ease-in-out infinite;
}

@keyframes twinkling {
    0% { opacity: 0.5; }
    50% { opacity: 1; }
    100% { opacity: 0.5; }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
}

/* Welcome Banner */
.welcome-banner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 15;
    opacity: 0;
    animation: welcomeFadeInOut 4s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    pointer-events: none;
}

.welcome-title {
    animation: titleEntrance 0.8s ease-out 0.2s forwards;
    opacity: 0;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.welcome-subtitle {
    animation: subtitleEntrance 0.8s ease-out 0.4s forwards;
    opacity: 0;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
}

@keyframes welcomeFadeInOut {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    10% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    85% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

@keyframes titleEntrance {
    0% {
        opacity: 0;
        transform: translateY(30px) rotateX(-10deg);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0);
        filter: blur(0);
    }
}

@keyframes subtitleEntrance {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.welcome-title {
    font-size: clamp(32px, 8vw, 64px);
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: welcomeSlideUp 0.8s ease-out;
}

.brand-highlight {
    background: linear-gradient(135deg, #00d4ff, #ec4899);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

@keyframes welcomeSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.welcome-subtitle {
    font-size: clamp(18px, 5vw, 28px);
    color: var(--accent-cyan);
    font-weight: 500;
    letter-spacing: 2px;
    animation: welcomeSlideUp 0.8s ease-out 0.2s both;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 800px;
    animation: heroSlideIn 0.6s ease-out 3s both;
}

@keyframes heroSlideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-size: clamp(40px, 10vw, 80px);
    font-weight: bold;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: slideUp 0.8s ease 3s both;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.typing-text::before {
    content: "Master Tech Skills, Transform Your Future";
    animation: typing 3s steps(50, end) infinite;
}

@keyframes typing {
    0% { content: ""; }
    5% { content: "M"; }
    10% { content: "Ma"; }
    15% { content: "Mas"; }
    20% { content: "Mast"; }
    25% { content: "Maste"; }
    30% { content: "Master"; }
    35% { content: "Master "; }
    40% { content: "Master T"; }
    45% { content: "Master Te"; }
    50% { content: "Master Tec"; }
    55% { content: "Master Tech"; }
    60% { content: "Master Tech "; }
    65% { content: "Master Tech S"; }
    70% { content: "Master Tech Sk"; }
    75% { content: "Master Tech Ski"; }
    80% { content: "Master Tech Skil"; }
    85% { content: "Master Tech Skill"; }
    90% { content: "Master Tech Skills"; }
    95% { content: "Master Tech Skills,"; }
    100% { content: "Master Tech Skills, Transform Your Future"; }
}

.cursor {
    display: inline-block;
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 40px;
    animation: slideUp 0.8s ease 3.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 3.4s both;
}

/* Buttons */
.btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    color: var(--text-primary);
    box-shadow: 0 0 15px var(--glow-cyan), inset 0 0 15px rgba(0, 212, 255, 0.1);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px var(--glow-cyan), 0 0 30px var(--glow-purple), inset 0 0 15px rgba(0, 212, 255, 0.2);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: inset 0 0 15px rgba(0, 212, 255, 0.05);
}

.btn-outline:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 20px var(--glow-cyan), inset 0 0 15px rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

.btn-lg {
    padding: 16px 40px;
    font-size: 18px;
}

.btn-sm {
    padding: 8px 16px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
}

.btn-danger {
    background: #ff4757;
    color: white;
}

.btn-danger:hover {
    background: #ff3838;
    box-shadow: 0 0 20px rgba(255, 71, 87, 0.5);
}

.btn-success {
    background: #26a65b;
    color: white;
    cursor: not-allowed;
}

/* Pricing Cards */
.pricing-card {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05), rgba(124, 58, 237, 0.05));
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-cyan), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pricing-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3), inset 0 0 30px rgba(0, 212, 255, 0.05);
    transform: translateY(-10px);
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
}

.pricing-card:hover::before {
    opacity: 1;
}

.pricing-card.featured {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.2);
    transform: scale(1.05);
}

.pricing-header {
    margin-bottom: 25px;
}

.pricing-title {
    font-size: 22px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.pricing-duration {
    color: var(--text-secondary);
    font-size: 14px;
}

.pricing-amount {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin: 20px 0;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

.pricing-currency {
    font-size: 24px;
    vertical-align: super;
}

.pricing-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 30px;
    flex: 1;
}

.pricing-features li {
    padding: 10px 0;
    color: var(--text-secondary);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--border-glass);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--accent-cyan);
    font-size: 16px;
}

.pricing-footer {
    margin-top: auto;
}

/* Service Cards Enhanced */
.service-card {
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(124, 58, 237, 0.03));
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1), transparent);
    transition: top 0.3s ease, left 0.3s ease;
    pointer-events: none;
}

.service-card:hover::after {
    top: -50%;
    left: -50%;
}

.service-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 12px;
    color: white;
    font-size: 32px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

/* Leadership Section */
.leadership-section {
    padding: 80px 0;
    background: linear-gradient(180deg, transparent, rgba(124, 58, 237, 0.05));
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.leadership-member {
    display: flex;
    flex-direction: column;
    padding: 30px;
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.03), rgba(124, 58, 237, 0.03));
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.leadership-member::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple), var(--accent-pink));
    opacity: 0.5;
}

.leadership-member:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15);
    transform: translateY(-8px);
}

.member-image {
    width: 100%;
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 25px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--border-glass);
}

.profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.leadership-member:hover .profile-image {
    transform: scale(1.05);
}

.founder-placeholder {
    font-size: 120px;
    color: var(--accent-purple);
    opacity: 0.3;
}

.member-info {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.leadership-member h3 {
    font-size: 24px;
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.member-role {
    font-size: 14px;
    color: var(--accent-cyan);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.member-bio {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}

.member-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: auto;
}

.skill-tag {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid var(--accent-cyan);
    border-radius: 20px;
    font-size: 12px;
    color: var(--accent-cyan);
    font-weight: 600;
    transition: var(--transition);
}

.skill-tag:hover {
    background: rgba(0, 212, 255, 0.2);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.3);
}

/* Animation Classes */
@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg) scale(0.9);
    }
    to {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

@keyframes scaleInUp {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.animate-on-scroll {
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.animation-delay-1 { animation-delay: 0.1s; }
.animation-delay-2 { animation-delay: 0.2s; }
.animation-delay-3 { animation-delay: 0.3s; }
.animation-delay-4 { animation-delay: 0.4s; }

/* Stats Section */
.stats {
    padding: 80px 20px;
    background: rgba(0, 212, 255, 0.03);
}

.stat-box {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    padding: 40px 20px;
    border-radius: 12px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
    animation: slideUp 0.8s ease;
}

.stat-box:hover {
    background: rgba(0, 212, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: var(--glow-cyan);
    transform: translateY(-5px);
}

.stat-number {
    font-size: 48px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.stat-label {
    color: var(--text-secondary);
    font-size: 14px;
}

.stats .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* Glass Card */
.glass-card {
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    backdrop-filter: blur(10px);
    padding: 30px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.glass-card:hover {
    border-color: var(--accent-cyan);
    box-shadow: 0 8px 32px rgba(0, 212, 255, 0.15), inset 0 0 20px rgba(0, 212, 255, 0.05);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Courses Grid */
.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.course-card {
    display: flex;
    flex-direction: column;
}

.course-header {
    margin-bottom: 15px;
}

.course-header h3 {
    color: var(--text-primary);
    margin-bottom: 8px;
    font-size: 20px;
}

.course-level {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.course-description {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 20px;
}

.course-info {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.course-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-cyan);
}

/* Courses Full Grid */
.courses-grid-full {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.course-card-full {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 30px;
    align-items: center;
}

.course-header-full h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.course-level-badge {
    display: inline-block;
    padding: 6px 14px;
    background: rgba(0, 212, 255, 0.2);
    color: var(--accent-cyan);
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-left: 10px;
}

.course-description-full {
    color: var(--text-secondary);
    margin-bottom: 20px;
    line-height: 1.6;
}

.course-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
    font-size: 14px;
    color: var(--text-secondary);
}

.course-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.course-footer-full {
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: space-between;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
}

.section-cta {
    text-align: center;
    margin-top: 50px;
}

/* Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    display: flex;
    flex-direction: column;
}

.service-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: rgba(0, 212, 255, 0.2);
    border-radius: 12px;
    color: var(--accent-cyan);
    font-size: 28px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
}

/* Pricing Section & Grid */
.pricing-section {
    padding: 80px 20px;
}

.pricing-intro {
    text-align: center;
    margin-bottom: 60px;
    animation: slideUp 0.8s ease;
}

.pricing-intro h2 {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-intro p {
    color: var(--text-secondary);
    font-size: 18px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-box {
    padding: 40px 20px;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 12px;
    font-size: 28px;
    color: var(--accent-cyan);
    margin: 0 auto 20px;
}

.feature-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Page Header */
.page-header {
    padding: 100px 20px 50px;
    text-align: center;
}

.page-header h1 {
    font-size: clamp(36px, 8vw, 56px);
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
}

/* Auth Section */
.auth-section {
    padding: 80px 20px;
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.auth-container {
    padding: 40px;
    max-width: 500px;
    justify-self: end;
}

.auth-header h2 {
    font-size: 32px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.auth-header p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    padding: 12px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-cyan);
    background: rgba(0, 212, 255, 0.05);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group small {
    color: var(--text-secondary);
    font-size: 12px;
    margin-top: 4px;
}

.form-group.checkbox {
    flex-direction: row;
    align-items: center;
}

.form-group.checkbox input {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-group.checkbox label {
    margin: 0;
}

.form-group.checkbox a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.form-group.checkbox a:hover {
    text-decoration: underline;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
}

.auth-footer p {
    color: var(--text-secondary);
}

.auth-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
}

.auth-footer a:hover {
    text-decoration: underline;
}

.benefits-box {
    padding: 40px;
    justify-self: start;
}

.benefits-box h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.benefits-box ul {
    list-style: none;
}

.benefits-box li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.benefits-box i {
    color: var(--accent-cyan);
    font-size: 16px;
}

.demo-credentials {
    padding: 30px;
    border: 1px solid var(--accent-cyan);
}

.demo-credentials h3 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.credential-box {
    background: rgba(0, 212, 255, 0.05);
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
    font-size: 13px;
}

.credential-box p {
    margin-bottom: 5px;
}

.credential-box code {
    background: rgba(0, 0, 0, 0.3);
    padding: 2px 6px;
    border-radius: 3px;
    color: var(--accent-cyan);
    font-family: 'Courier New', monospace;
}

/* Dashboard */
.dashboard-section {
    padding: 60px 20px;
}

.dashboard-nav {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.dash-nav-link {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.dash-nav-link:hover,
.dash-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.dashboard-card {
    padding: 30px;
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.card-header h3 {
    font-size: 16px;
    color: var(--text-secondary);
}

.card-header i {
    font-size: 28px;
    color: var(--accent-cyan);
}

.card-value {
    font-size: 40px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.card-footer {
    color: var(--text-secondary);
    font-size: 13px;
}

.recent-activity {
    padding: 30px;
    text-align: center;
}

.recent-activity h3 {
    margin-bottom: 10px;
}

.recent-activity p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.courses-list {
    display: grid;
    gap: 20px;
}

.course-item {
    padding: 30px;
}

.course-item-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
    gap: 20px;
}

.course-item-header h3 {
    margin-bottom: 5px;
}

.course-status {
    padding: 4px 12px;
    background: rgba(38, 166, 91, 0.2);
    color: #26a65b;
    border-radius: 20px;
    font-size: 12px;
    white-space: nowrap;
}

.course-description {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 14px;
}

.course-progress {
    margin-bottom: 15px;
}

.course-progress p {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
}

.progress-bar {
    height: 8px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 4px;
    transition: width 0.5s ease;
}

.course-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 15px;
    border-top: 1px solid var(--border-glass);
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-secondary);
}

.course-item-footer span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.empty-state {
    text-align: center;
    padding: 60px 30px;
}

.empty-state i {
    font-size: 64px;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-state h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

/* Profile */
.profile-info {
    padding: 40px;
    margin-bottom: 30px;
}

.profile-header {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-glass);
}

.profile-avatar {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    flex-shrink: 0;
}

.profile-details h3 {
    font-size: 24px;
    margin-bottom: 5px;
}

.student-since {
    color: var(--text-secondary);
    font-size: 13px;
    margin-top: 5px;
}

.profile-fields {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}

.field label {
    color: var(--text-secondary);
    font-size: 13px;
    margin-bottom: 8px;
    display: block;
}

.field p {
    color: var(--text-primary);
}

.profile-actions {
    display: flex;
    gap: 15px;
}

.profile-form {
    padding: 40px;
    margin-bottom: 30px;
}

.password-form {
    padding: 40px;
}

/* Alerts */
.alert {
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: flex;
    align-items: start;
    gap: 15px;
    animation: slideIn 0.3s ease;
}

.alert i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.alert-success {
    background: rgba(38, 166, 91, 0.1);
    border: 1px solid rgba(38, 166, 91, 0.3);
    color: #26a65b;
}

.alert-error {
    background: rgba(255, 71, 87, 0.1);
    border: 1px solid rgba(255, 71, 87, 0.3);
    color: #ff4757;
}

.alert-warning {
    background: rgba(255, 193, 7, 0.1);
    border: 1px solid rgba(255, 193, 7, 0.3);
    color: #ffc107;
}

.alert-info {
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    color: var(--accent-cyan);
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.faq-item {
    padding: 0;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    transition: var(--transition);
}

.faq-question:hover {
    background: rgba(0, 212, 255, 0.08);
}

.faq-question h4 {
    margin: 0;
    color: var(--text-primary);
    font-size: 16px;
}

.faq-question i {
    color: var(--accent-cyan);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 20px;
    color: var(--text-secondary);
    background: rgba(0, 212, 255, 0.05);
}

/* Contact Section */
.contact-section {
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.contact-form-wrapper {
    padding: 40px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.info-box {
    padding: 30px;
    text-align: center;
}

.info-icon {
    font-size: 40px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.info-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
}

.info-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

.info-box a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.info-box a:hover {
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(0, 212, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-links a:hover {
    background: rgba(0, 212, 255, 0.2);
    transform: translateY(-3px);
}

/* FAQ Quick Access */
.faq-quick-access {
    padding: 80px 20px;
    background: rgba(0, 212, 255, 0.03);
}

.qa-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.qa-box {
    padding: 25px;
}

.qa-box h4 {
    margin-bottom: 10px;
    color: var(--accent-cyan);
}

.qa-box p {
    color: var(--text-secondary);
    font-size: 14px;
}

/* CTA Section */
.cta-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(32px, 8vw, 48px);
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Services Showcase */
.services-showcase {
    padding: 80px 20px;
}

.service-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.service-item:nth-child(even) {
    grid-template-columns: 1fr 1fr;
    direction: rtl;
}

.service-item:nth-child(even) > * {
    direction: ltr;
}

.service-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
}

.service-icon-large {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    color: var(--accent-cyan);
}

.service-details h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.service-description {
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-size: 16px;
    line-height: 1.8;
}

.service-includes h4 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.service-includes ul {
    list-style: none;
}

.service-includes li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.service-includes i {
    color: var(--accent-cyan);
}

.service-price {
    font-size: 20px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 20px;
    display: block;
}

/* Admin Section */
.admin-section {
    padding: 60px 20px;
}

.admin-nav {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.admin-nav-link {
    padding: 12px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.admin-nav-link:hover,
.admin-nav-link.active {
    background: rgba(0, 212, 255, 0.1);
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    padding: 30px;
    text-align: center;
}

.stat-icon {
    font-size: 32px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.stat-card h3 {
    font-size: 32px;
    font-weight: bold;
    color: var(--accent-cyan);
    margin-bottom: 5px;
}

.stat-card p {
    color: var(--text-secondary);
    font-size: 14px;
}

.recent-section {
    padding: 30px;
}

.recent-section h3 {
    margin-bottom: 20px;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table thead {
    background: rgba(0, 212, 255, 0.05);
}

.admin-table th {
    padding: 15px;
    text-align: left;
    color: var(--accent-cyan);
    font-weight: 600;
    border-bottom: 1px solid var(--border-glass);
}

.admin-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-glass);
    color: var(--text-secondary);
}

.admin-table tr:hover {
    background: rgba(0, 212, 255, 0.05);
}

.badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

.badge-active {
    background: rgba(38, 166, 91, 0.2);
    color: #26a65b;
}

/* Admin Course Item */
.courses-admin-list {
    display: grid;
    gap: 20px;
}

.admin-course-item {
    padding: 25px;
}

.course-admin-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    margin-bottom: 15px;
}

.course-admin-header h3 {
    margin-bottom: 8px;
}

.course-admin-meta {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.course-admin-actions {
    display: flex;
    gap: 10px;
}

.course-admin-desc {
    color: var(--text-secondary);
    font-size: 14px;
}

/* Add Course Form */
.add-course-form {
    padding: 30px;
    margin-bottom: 30px;
}

.add-course-form h3 {
    margin-bottom: 20px;
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(15, 15, 35, 0.95) 100%);
    border-top: 1px solid var(--border-glass);
    padding: 80px 20px 20px;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.05), transparent);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.footer-section {
    animation: slideUp 0.8s ease;
}

.footer-section h3,
.footer-section h4 {
    color: var(--accent-cyan);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
}

.footer-section p,
.footer-section li {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-section ul {
    list-style: none;
}

.footer-section a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section a:hover {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 212, 255, 0.3);
    transform: translateX(3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-glass);
    color: var(--text-secondary);
    font-size: 13px;
    position: relative;
    z-index: 2;
}

.footer-bottom a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        flex-direction: column;
        background: rgba(26, 26, 62, 0.95);
        backdrop-filter: blur(10px);
        gap: 0;
        border-top: 1px solid var(--border-glass);
        border-bottom: 1px solid var(--border-glass);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .nav-menu.active {
        max-height: 600px;
    }
    
    .nav-menu li {
        padding: 15px 20px;
        border-bottom: 1px solid var(--border-glass);
        width: 100%;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link:hover::after {
        display: none;
    }
    
    .nav-link:hover {
        padding-left: 10px;
        text-shadow: none;
    }
    
    .auth-section {
        grid-template-columns: 1fr;
    }
    
    .auth-container {
        justify-self: center;
        max-width: 100%;
    }
    
    .benefits-box {
        justify-self: center;
        margin-top: 30px;
    }
    
    .service-item {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .service-item:nth-child(even) {
        direction: ltr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .course-card-full {
        grid-template-columns: 1fr;
    }
    
    .course-footer-full {
        flex-direction: column;
    }
    
    .courses-grid,
    .services-grid,
    .features-grid,
    .faq-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }
    
    .dashboard-card {
        min-width: 100%;
    }
    
    .profile-header {
        flex-direction: column;
        text-align: center;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .logo-svg {
        width: 35px;
        height: 35px;
    }
    
    .nav-logo {
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .page-header h1 {
        font-size: 28px;
    }
    
    .stat-number {
        font-size: 32px;
    }
    
    .nav-menu {
        gap: 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Utility Classes */
.hidden {
    display: none !important;
}

.visible {
    display: block !important;
}

.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

.opacity-50 {
    opacity: 0.5;
}

/* ============================================
   PRIVACY POLICY & LEGAL PAGES STYLING
   ============================================ */

/* Privacy Policy Section */
.privacy-policy-section,
.terms-section {
    padding: 60px 20px;
}

.policy-content,
.terms-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-card,
.terms-card {
    margin-bottom: 30px;
    animation: slideUp 0.6s ease forwards;
    opacity: 0;
}

.policy-card:nth-child(1) { animation-delay: 0.1s; }
.policy-card:nth-child(2) { animation-delay: 0.2s; }
.policy-card:nth-child(3) { animation-delay: 0.3s; }
.policy-card:nth-child(4) { animation-delay: 0.4s; }
.policy-card:nth-child(5) { animation-delay: 0.5s; }
.policy-card:nth-child(6) { animation-delay: 0.6s; }
.policy-card:nth-child(7) { animation-delay: 0.7s; }
.policy-card:nth-child(8) { animation-delay: 0.8s; }
.policy-card:nth-child(9) { animation-delay: 0.9s; }

.terms-card:nth-child(1) { animation-delay: 0.1s; }
.terms-card:nth-child(2) { animation-delay: 0.2s; }
.terms-card:nth-child(3) { animation-delay: 0.3s; }
.terms-card:nth-child(4) { animation-delay: 0.4s; }
.terms-card:nth-child(5) { animation-delay: 0.5s; }
.terms-card:nth-child(6) { animation-delay: 0.6s; }
.terms-card:nth-child(7) { animation-delay: 0.7s; }
.terms-card:nth-child(8) { animation-delay: 0.8s; }
.terms-card:nth-child(9) { animation-delay: 0.9s; }
.terms-card:nth-child(10) { animation-delay: 1s; }

.policy-header,
.terms-header {
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.policy-header h2,
.terms-header h2 {
    font-size: 28px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.last-updated {
    font-size: 12px;
    color: var(--text-secondary);
    opacity: 0.8;
}

.policy-intro,
.terms-intro {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 16px;
    margin-top: 15px;
}

.policy-section,
.terms-section-content {
    padding: 0;
}

.policy-section h3,
.terms-section-content h3 {
    font-size: 20px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.policy-section h3 i,
.terms-section-content h3 i {
    font-size: 24px;
}

.policy-section p,
.policy-section > p:first-of-type,
.terms-section-content p {
    color: var(--text-secondary);
    margin-bottom: 15px;
    line-height: 1.8;
}

.policy-list,
.terms-list {
    list-style: none;
    padding-left: 0;
    margin: 15px 0;
}

.policy-list li,
.terms-list li {
    color: var(--text-secondary);
    padding-left: 30px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.policy-list li::before,
.terms-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent-cyan);
    font-weight: bold;
    font-size: 16px;
}

.policy-list strong,
.terms-list strong {
    color: var(--accent-cyan);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.contact-item {
    padding: 15px;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 8px;
    text-align: center;
}

.contact-item h4 {
    color: var(--accent-cyan);
    margin-bottom: 10px;
    font-size: 16px;
}

.contact-item p {
    color: var(--text-secondary);
    font-size: 14px;
    margin: 5px 0;
}

.contact-item a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.contact-item a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--accent-cyan);
}

.policy-footer,
.terms-footer {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding: 15px;
    background: rgba(0, 212, 255, 0.08);
    border-left: 4px solid var(--accent-cyan);
    border-radius: 4px;
}

.policy-highlight {
    background: rgba(236, 72, 153, 0.1);
    border-left: 4px solid var(--accent-pink);
    padding: 15px;
    border-radius: 4px;
    margin: 15px 0;
}

.policy-highlight h4 {
    color: var(--accent-pink);
    margin-bottom: 10px;
    font-size: 16px;
}

.policy-highlight p {
    color: var(--text-secondary);
    margin: 0;
}

/* ============================================
   STUDENT AGREEMENT STYLING
   ============================================ */

.agreement-section {
    padding: 60px 20px;
}

.agreement-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: start;
}

.agreement-document {
    animation: slideUp 0.8s ease;
}

.agreement-header {
    border-bottom: 2px solid var(--accent-cyan);
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.agreement-header h2 {
    font-size: 26px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.agreement-date {
    font-size: 12px;
    color: var(--text-secondary);
}

.agreement-content {
    max-height: 600px;
    overflow-y: auto;
    padding-right: 15px;
}

.agreement-content::-webkit-scrollbar {
    width: 8px;
}

.agreement-content::-webkit-scrollbar-track {
    background: var(--bg-glass);
    border-radius: 4px;
}

.agreement-content::-webkit-scrollbar-thumb {
    background: var(--accent-cyan);
    border-radius: 4px;
}

.agreement-content::-webkit-scrollbar-thumb:hover {
    background: var(--accent-purple);
}

.agreement-clause {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-glass);
}

.agreement-clause:last-child {
    border-bottom: none;
}

.agreement-clause h3,
.agreement-clause h4 {
    color: var(--accent-cyan);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
}

.agreement-clause h3 i,
.agreement-clause h4 i {
    font-size: 18px;
}

.agreement-clause p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 14px;
}

.agreement-clause ul {
    margin-left: 20px;
    margin-top: 10px;
}

.agreement-clause li {
    color: var(--text-secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.highlight-clause {
    background: rgba(236, 72, 153, 0.08);
    border: 1px solid rgba(236, 72, 153, 0.3);
    padding: 20px;
    border-radius: 8px;
}

.highlight-clause h4 {
    color: var(--accent-pink);
}

.signature-section {
    background: rgba(0, 212, 255, 0.05);
    padding: 20px;
    border-radius: 8px;
    border: 1px solid var(--border-glass);
    margin-top: 20px;
}

/* Agreement Form */
.agreement-form {
    animation: slideUp 0.8s ease 0.2s both;
    position: sticky;
    top: 100px;
}

.form-header {
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--accent-cyan);
}

.form-header h3 {
    font-size: 22px;
    color: var(--text-primary);
    margin-bottom: 5px;
}

.form-header p {
    color: var(--text-secondary);
    font-size: 14px;
}

.agreement-form-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-primary);
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-group label i {
    color: var(--accent-cyan);
}

.form-input {
    padding: 12px 15px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-glass);
    border-radius: 6px;
    color: var(--text-primary);
    font-size: 14px;
    transition: var(--transition);
    font-family: inherit;
}

.form-input:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(0, 212, 255, 0.2);
}

.form-input::placeholder {
    color: var(--text-secondary);
}

.form-input[readonly] {
    background: rgba(255, 255, 255, 0.02);
    cursor: not-allowed;
}

select.form-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%2300d4ff' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 35px;
}

.checkbox-group {
    gap: 12px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-cyan);
}

.form-footer {
    text-align: center;
    font-size: 12px;
    color: var(--text-secondary);
    padding-top: 10px;
    border-top: 1px solid var(--border-glass);
}

.form-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    transition: var(--transition);
}

.form-footer a:hover {
    text-decoration: underline;
    text-shadow: 0 0 10px var(--accent-cyan);
}

.alert {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    animation: slideDown 0.3s ease;
}

.alert-success {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.3);
    color: #25d366;
}

.alert-error {
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    color: var(--accent-pink);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   RESPONSIVE LEGAL PAGES
   ============================================ */

@media (max-width: 1024px) {
    .agreement-wrapper {
        grid-template-columns: 1fr;
    }
    
    .agreement-form {
        position: static;
    }
}

@media (max-width: 768px) {
    .policy-content,
    .terms-content {
        max-width: 100%;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .policy-card,
    .terms-card {
        padding: 20px;
    }
    
    .agreement-clause {
        font-size: 14px;
    }
}

/* ============================================
   PREMIUM COURSES SECTION STYLING
   ============================================ */

.premium-courses-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.5) 0%, 
        rgba(26, 26, 62, 0.3) 50%, 
        rgba(15, 15, 35, 0.5) 100%);
}

.premium-courses-section::before {
    content: '';
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 300px;
    background: radial-gradient(ellipse at 50% 50%, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.premium-section-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    animation: slideUp 0.8s ease;
}

.premium-section-header h2 {
    font-size: clamp(32px, 6vw, 52px);
    margin-bottom: 15px;
    font-weight: 800;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, 
        var(--accent-cyan) 0%, 
        var(--accent-purple) 50%, 
        var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { 
        filter: hue-rotate(0deg);
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    }
    50% { 
        filter: hue-rotate(30deg);
        text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    }
}

.premium-section-header p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.header-accent {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, 
        var(--accent-cyan), 
        var(--accent-purple), 
        var(--accent-pink));
    border-radius: 2px;
    margin: 0 auto;
    animation: expandWidth 0.8s ease;
}

@keyframes expandWidth {
    from { width: 0; }
    to { width: 80px; }
}

/* Premium Course Cards */
.premium-course-card {
    position: relative;
    min-height: 900px;
    display: flex;
    flex-direction: column;
    background: var(--bg-glass);
    border: 1px solid var(--border-glass);
    border-radius: 16px;
    backdrop-filter: blur(20px);
    padding: 40px;
    margin-bottom: 50px;
    overflow: hidden;
    transition: var(--transition);
    animation: slideUp 0.8s ease forwards;
    opacity: 0;
}

.premium-course-card:nth-child(2) { animation-delay: 0.2s; }
.premium-course-card:nth-child(3) { animation-delay: 0.4s; }
.premium-course-card:nth-child(4) { animation-delay: 0.6s; }

.premium-course-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.05) 0%, 
        rgba(124, 58, 237, 0.05) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    border-radius: 16px;
}

.premium-course-card:hover::before {
    opacity: 1;
}

.premium-course-card:hover {
    border-color: var(--accent-cyan);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 
        0 0 40px rgba(0, 212, 255, 0.2),
        0 0 80px rgba(124, 58, 237, 0.1),
        inset 0 0 20px rgba(0, 212, 255, 0.05);
    transform: translateY(-10px);
}

/* Card Gradient Border */
.card-gradient-border {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--accent-cyan), 
        var(--accent-purple), 
        var(--accent-pink));
    border-radius: 16px;
    padding: 2px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.premium-course-card:hover .card-gradient-border {
    opacity: 0.3;
    animation: borderGlow 2s ease infinite;
}

@keyframes borderGlow {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

/* Course Card Content */
.course-card-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.course-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-glass);
}

.course-icon-wrapper {
    position: relative;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.2), 
        rgba(124, 58, 237, 0.2));
    border-radius: 16px;
    border: 2px solid var(--border-glass);
    transition: var(--transition);
}

.premium-course-card:hover .course-icon-wrapper {
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.4), 
        rgba(124, 58, 237, 0.4));
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
    transform: scale(1.1) rotate(5deg);
}

.course-icon {
    font-size: 40px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.course-title-section {
    flex: 1;
}

.course-title {
    font-size: 28px;
    color: var(--text-primary);
    margin: 0 0 8px 0;
    font-weight: 700;
}

.course-level-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid transparent;
}

/* ============================================
   3D PROFILE CARD STYLING
   ============================================ */

.leadership-profile-section {
    padding: 80px 20px;
    position: relative;
    background: linear-gradient(135deg, 
        rgba(15, 15, 35, 0.5) 0%, 
        rgba(26, 26, 62, 0.3) 50%, 
        rgba(15, 15, 35, 0.5) 100%);
}

.leadership-profile-section .section-header {
    margin-bottom: 60px;
    animation: slideUp 0.8s ease;
}

.profile-3d-container {
    max-width: 600px;
    margin: 0 auto;
    perspective: 1000px;
}

.profiles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    align-items: start;
}

.profile-card-3d {
    padding: 0;
    overflow: hidden;
    position: relative;
    animation: float3d 6s ease-in-out infinite;
}

.profile-image-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    perspective: 1000px;
}

.profile-image-3d {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateZ(50px);
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2);
}

.profile-card-3d:hover .profile-image-3d {
    transform: translateZ(100px) scale(1.02);
    box-shadow: 0 40px 80px rgba(0, 212, 255, 0.4);
}

.profile-image-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(0, 212, 255, 0.2), transparent);
    border-radius: 12px;
    opacity: 0;
    animation: glowPulse 3s ease-in-out infinite;
    pointer-events: none;
}

.profile-image-border {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 2px solid transparent;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.5), rgba(236, 72, 153, 0.5)) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0.8;
    pointer-events: none;
}

.profile-name-section {
    text-align: center;
    margin-bottom: 30px;
    animation: slideUp 0.8s ease 0.15s both;
}

.profile-name-section h3 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.profile-role {
    color: var(--accent-cyan);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.profile-info {
    padding: 40px;
    background: rgba(255, 255, 255, 0.02);
    border-top: 1px solid rgba(0, 212, 255, 0.2);
    animation: slideUp 0.8s ease 0.2s both;
}

.profile-bio {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
    transition: color 0.3s ease;
}

.profile-card-3d:hover .profile-bio {
    color: var(--text-primary);
}

.profile-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    animation: slideUp 0.8s ease 0.4s both;
}

.skill-badge {
    display: inline-block;
    padding: 8px 16px;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.skill-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.skill-badge:hover {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.2), rgba(124, 58, 237, 0.2));
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
    transform: translateY(-2px);
}

.skill-badge:hover::before {
    left: 100%;
}

/* 3D Float Animation */
@keyframes float3d {
    0%, 100% {
        transform: translateY(0px) rotateX(0deg) rotateY(-5deg);
        filter: drop-shadow(0 10px 30px rgba(0, 212, 255, 0.1));
    }
    50% {
        transform: translateY(-20px) rotateX(5deg) rotateY(5deg);
        filter: drop-shadow(0 30px 50px rgba(0, 212, 255, 0.2));
    }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 0.8;
    }
}

/* Responsive 3D Profile */
@media (max-width: 768px) {
    .profile-3d-container {
        max-width: 100%;
    }
    
    .profile-info {
        padding: 25px;
    }
    
    .profile-bio {
        font-size: 15px;
    }
    
    .profile-skills {
        gap: 10px;
    }
    
    .skill-badge {
        padding: 6px 12px;
        font-size: 12px;
    }
}

.course-level-badge.professional {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent-cyan);
    border-color: var(--accent-cyan);
}

.course-level-badge.expert {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-purple);
    border-color: var(--accent-purple);
}

.course-level-badge.creative {
    background: rgba(236, 72, 153, 0.15);
    color: var(--accent-pink);
    border-color: var(--accent-pink);
}

/* Course Duration */
.course-duration {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 15px;
    margin-bottom: 15px;
    font-weight: 500;
}

.course-duration i {
    color: var(--accent-cyan);
}

/* Course Description */
.course-description {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 25px;
}

/* Pricing Tiers */
.pricing-tiers {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(0, 212, 255, 0.05);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 30px;
}

.price-tier {
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.tier-label {
    font-size: 12px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
    font-weight: 600;
}

.tier-price {
    font-size: 20px;
    color: var(--accent-cyan);
    font-weight: 700;
}

.price-tier.highlight .tier-price {
    font-size: 24px;
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.5);
}

.price-divider {
    width: 1px;
    height: 30px;
    background: var(--border-glass);
    margin: 0 10px;
}

/* Single Price */
.pricing-single {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(124, 58, 237, 0.1) 100%);
    border: 1px solid var(--border-glass);
    border-radius: 12px;
    padding: 20px 25px;
    margin-bottom: 30px;
}

.single-price-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.single-price {
    font-size: 32px;
    color: var(--accent-cyan);
    font-weight: 800;
}

/* Lesson Plan */
.lesson-plan {
    margin: 30px 0;
}

.lesson-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
}

.lesson-title i {
    color: var(--accent-purple);
}

.lessons-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 12px;
}

.lessons-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    padding: 8px 0;
}

.lesson-dot {
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.premium-course-card:hover .lesson-dot {
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--glow-purple);
}

/* Course Card Footer */
.course-card-footer {
    display: flex;
    gap: 15px;
    margin-top: auto;
    padding-top: 25px;
    border-top: 2px solid var(--border-glass);
}

.btn-enroll {
    position: relative;
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    border: 2px solid transparent;
    border-radius: 10px;
    color: var(--text-primary);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    overflow: hidden;
}

.neon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.3), 
        rgba(124, 58, 237, 0.3));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.neon-btn:hover {
    box-shadow: 
        0 0 20px rgba(0, 212, 255, 0.5),
        0 0 40px rgba(124, 58, 237, 0.3),
        inset 0 0 20px rgba(0, 212, 255, 0.1);
    transform: translateY(-3px);
}

.neon-btn:hover::before {
    opacity: 1;
}

.btn-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.5), transparent);
    opacity: 0;
    pointer-events: none;
    animation: buttonPulse 1.5s ease-in-out infinite;
}

@keyframes buttonPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.05); }
}

.neon-btn:hover .btn-glow {
    animation: buttonPulseActive 0.6s ease-in-out;
}

@keyframes buttonPulseActive {
    0% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.7; transform: scale(1.1); }
    100% { opacity: 0; transform: scale(1.2); }
}

.btn-info {
    flex: 1;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid var(--accent-cyan);
    border-radius: 10px;
    color: var(--accent-cyan);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-info:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

/* CTA Section */
.courses-cta-section {
    text-align: center;
    padding: 60px 40px;
    background: linear-gradient(135deg, 
        rgba(0, 212, 255, 0.1) 0%, 
        rgba(124, 58, 237, 0.1) 50%, 
        rgba(236, 72, 153, 0.05) 100%);
    border: 2px solid var(--border-glass);
    border-radius: 16px;
    margin-top: 60px;
    animation: slideUp 0.8s ease 0.8s both;
}

.courses-cta-section h3 {
    font-size: 32px;
    color: var(--text-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.courses-cta-section p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
}

/* Responsive Premium Courses */
@media (max-width: 1024px) {
    .premium-course-card {
        min-height: auto;
        padding: 30px;
    }
    
    .lessons-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .premium-courses-section {
        padding: 60px 20px;
    }
    
    .premium-section-header {
        margin-bottom: 60px;
    }
    
    .premium-section-header h2 {
        font-size: 28px;
    }
    
    .premium-course-card {
        padding: 20px;
        margin-bottom: 30px;
        min-height: auto;
    }
    
    .course-card-header {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .course-icon-wrapper {
        width: 60px;
        height: 60px;
    }
    
    .course-icon {
        font-size: 30px;
    }
    
    .course-title {
        font-size: 22px;
    }
    
    .pricing-tiers {
        flex-direction: column;
        gap: 15px;
    }
    
    .price-divider {
        width: 100%;
        height: 1px;
        margin: 0;
    }
    
    .course-card-footer {
        flex-direction: column;
    }
    
    .btn-enroll,
    .btn-info {
        flex: 1 !important;
    }
    
    .pricing-single {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .courses-cta-section {
        padding: 40px 20px;
    }
    
    .courses-cta-section h3 {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .premium-section-header h2 {
        font-size: 20px;
    }
    
    .premium-section-header p {
        font-size: 14px;
    }
    
    .course-title {
        font-size: 18px;
    }
    
    .course-description {
        font-size: 14px;
    }
    
    .pricing-tiers,
    .pricing-single {
        padding: 15px;
    }
    
    .lessons-list {
        gap: 8px;
    }
    
    .lessons-list li {
        font-size: 13px;
    }
}
