:root {
    /* Colors */
    --bg-dark: #07070a;
    --bg-translucent: rgba(7, 7, 10, 0.6);
    --glass-bg: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-hover: rgba(255, 255, 255, 0.08);
    
    --neon-cyan: #00f0ff;
    --neon-purple: #b026ff;
    --neon-white: #ffffff;
    
    --text-main: #f0f0f0;
    --text-muted: #a0a0a5;
    
    /* Glows */
    --glow-cyan: 0 0 15px rgba(0, 240, 255, 0.5), 0 0 30px rgba(0, 240, 255, 0.3);
    --glow-purple: 0 0 15px rgba(176, 38, 255, 0.5), 0 0 30px rgba(176, 38, 255, 0.3);
    --glow-white: 0 0 15px rgba(255, 255, 255, 0.5), 0 0 30px rgba(255, 255, 255, 0.3);
    
    /* Transitions */
    --transition-fast: 0.2s ease-out;
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Typography */
h1, h2, h3, h4, .logo {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.neon-text {
    color: var(--neon-white);
    text-shadow: var(--glow-white);
}

.neon-text-cyan {
    color: var(--neon-cyan);
    text-shadow: var(--glow-cyan);
}

.neon-text-purple {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

/* Background Animations */
.animated-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    overflow: hidden;
    background: radial-gradient(circle at center, #0a0a0f 0%, #030305 100%);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.5;
    animation: float 20s infinite ease-in-out alternate;
}

.blob-cyan {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: rgba(0, 240, 255, 0.15);
    animation-delay: 0s;
}

.blob-purple {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: rgba(176, 38, 255, 0.15);
    animation-delay: -5s;
}

.blob-white {
    top: 40%;
    left: 40%;
    width: 30vw;
    height: 30vw;
    background: rgba(255, 255, 255, 0.05);
    animation-delay: -10s;
}

.noise-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.03'/%3E%3C/svg%3E");
    pointer-events: none;
}

@keyframes float {
    0% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(5%, 5%) scale(1.1); }
    66% { transform: translate(-5%, 5%) scale(0.9); }
    100% { transform: translate(0, 0) scale(1); }
}

/* Glass Panels */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Navigation */
.glass-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(7, 7, 10, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: var(--transition-smooth);
}

.glass-nav.scrolled {
    background: rgba(7, 7, 10, 0.85);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
}

.logo {
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}

.nav-links a:not(.btn) {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a:not(.btn):hover {
    color: var(--text-main);
}

.nav-links a:not(.btn)::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--neon-cyan);
    transition: var(--transition-smooth);
    box-shadow: var(--glow-cyan);
}

.nav-links a:not(.btn):hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: var(--text-main);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 80px;
    right: -100%;
    width: 250px;
    padding: 2rem;
    gap: 1.5rem;
    z-index: 99;
    transition: var(--transition-smooth);
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.mobile-nav.active {
    right: 0;
}

.mobile-link {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    border-radius: 12px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    outline: none;
}

.btn-primary {
    background: var(--text-main);
    color: var(--bg-dark);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    background: var(--neon-cyan);
    color: var(--bg-dark);
    box-shadow: var(--glow-cyan);
    transform: translateY(-2px);
}

.glass-btn {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    backdrop-filter: blur(10px);
}

.glass-btn:hover {
    background: var(--glass-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-nav {
    padding: 0.5rem 1.25rem;
    font-size: 0.9rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: var(--text-main);
    border-radius: 8px;
}

.btn-nav:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--neon-cyan);
    box-shadow: 0 0 15px rgba(0,240,255,0.2);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-top: 80px;
    text-align: center;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    z-index: 10;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.85rem;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    margin-bottom: 1rem;
}

.trust-badge i {
    color: var(--neon-cyan);
    font-size: 1.1rem;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 1rem 0 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.discord-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 1.5rem;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    animation: float 6s infinite ease-in-out;
}

.avatar-container {
    position: relative;
    width: 48px;
    height: 48px;
}

.avatar {
    width: 100%;
    height: 100%;
    background: #5865F2; /* Discord Brand Color */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    color: white;
    position: relative;
    z-index: 2;
}

.avatar-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #5865F2;
    border-radius: 50%;
    filter: blur(10px);
    opacity: 0.7;
    z-index: 1;
}

.profile-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

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

.profile-info .username {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.1rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.6;
    transition: var(--transition-fast);
}

.scroll-indicator:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid var(--text-muted);
    border-radius: 20px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--neon-cyan);
    border-radius: 2px;
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Sections Global */
section {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    padding: 2.5rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(255,255,255,0.06), transparent 40%);
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
    z-index: 1;
}

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

.service-card:hover {
    transform: translateY(-10px);
    border-color: rgba(255,255,255,0.2);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.service-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    background: rgba(255,255,255,0.05);
}

.icon-cyan {
    color: var(--neon-cyan);
    box-shadow: inset 0 0 10px rgba(0,240,255,0.1);
    border: 1px solid rgba(0,240,255,0.2);
}

.icon-purple {
    color: var(--neon-purple);
    box-shadow: inset 0 0 10px rgba(176,38,255,0.1);
    border: 1px solid rgba(176,38,255,0.2);
}

.icon-white {
    color: var(--neon-white);
    box-shadow: inset 0 0 10px rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
}

.service-card h3 {
    font-size: 1.3rem;
    z-index: 2;
}

.service-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    z-index: 2;
}

/* Why Choose Me */
.why-me-section .large-panel {
    padding: 4rem;
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    position: relative;
    overflow: hidden;
}

.why-me-section .large-panel::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 150%;
    background: radial-gradient(ellipse, rgba(0,240,255,0.08) 0%, transparent 70%);
    transform: rotate(30deg);
    pointer-events: none;
}

.why-content {
    position: relative;
    z-index: 2;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

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

.feature-icon {
    font-size: 2rem;
    color: var(--neon-cyan);
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.feature-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.feature-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Section */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    overflow: hidden;
}

.contact-info {
    padding: 4rem 3rem;
    background: rgba(255,255,255,0.02);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
}

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

.contact-info > p {
    color: var(--text-muted);
    margin-bottom: 3rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: auto;
}

.info-block {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.info-block i {
    font-size: 1.8rem;
    color: var(--neon-purple);
    background: rgba(176,38,255,0.1);
    padding: 1rem;
    border-radius: 12px;
}

.info-block .label {
    display: block;
    color: var(--text-muted);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.info-block .value {
    display: block;
    font-size: 1.1rem;
    font-weight: 500;
}

.helper-text {
    margin-top: 3rem;
    padding: 1.5rem;
    background: rgba(0,240,255,0.05);
    border: 1px solid rgba(0,240,255,0.2);
    border-radius: 12px;
    font-size: 0.95rem;
    line-height: 1.5;
}

.glass-form {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: flex;
    gap: 1.5rem;
}

.form-group {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group.half {
    flex: 1;
}

.glass-form label {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 500;
}

.glass-form input,
.glass-form select,
.glass-form textarea {
    width: 100%;
    background: rgba(0,0,0,0.2);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    padding: 1rem 1.25rem;
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-smooth);
    outline: none;
}

.glass-form textarea {
    resize: vertical;
    min-height: 120px;
}

.glass-form input:focus,
.glass-form select:focus,
.glass-form textarea:focus {
    border-color: var(--neon-cyan);
    background: rgba(0,0,0,0.4);
}

.glass-form select option {
    background: var(--bg-dark);
    color: var(--text-main);
}

.full-width {
    width: 100%;
    margin-top: 1rem;
    padding: 1rem;
    font-size: 1.1rem;
}

.form-status {
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
    min-height: 24px;
}

.status-success {
    color: #4ade80;
    text-shadow: 0 0 10px rgba(74,222,128,0.3);
}

.status-error {
    color: #f87171;
    text-shadow: 0 0 10px rgba(248,113,113,0.3);
}

/* FAQ Section */
.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 1.5rem 2rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    outline: none;
}

.faq-question i {
    color: var(--neon-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.4s ease, padding 0.4s ease;
    padding: 0 2rem;
    background: rgba(0,0,0,0.1);
}

.faq-item.active .faq-answer {
    padding: 0 2rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: var(--text-muted);
}

/* Footer */
.glass-footer {
    background: rgba(7, 7, 10, 0.8);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
    margin-top: 4rem;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

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

.social-btn {
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 1.3rem;
}

.social-btn:hover {
    color: var(--neon-cyan);
    border-color: var(--neon-cyan);
    box-shadow: var(--glow-cyan);
}

.footer-divider {
    height: 1px;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
    margin: 2rem 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.trust-text {
    font-family: var(--font-heading);
    color: var(--neon-white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* Animations */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Tooltips */
.tooltip-container {
    position: relative;
}

.tooltip {
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-main);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.tooltip-container:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

/* Vouch System */
.vouch-dashboard {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.vouch-stats {
    display: flex;
    gap: 3rem;
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-value {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1;
}

.stat-stars {
    color: #eab308;
    margin: 0.5rem 0;
    font-size: 1.2rem;
}

.stat-label {
    color: var(--text-muted);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.vouch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
}

.vouch-card {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    transition: var(--transition-smooth);
    border-top: 2px solid transparent;
    /* Use float animation lightly on cards */
    animation: float 10s infinite ease-in-out alternate;
}

.vouch-card:nth-child(even) {
    animation-delay: -5s;
}

.vouch-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: var(--neon-cyan);
    box-shadow: 0 15px 35px rgba(0, 240, 255, 0.3), inset 0 0 20px rgba(0, 240, 255, 0.1);
    z-index: 10;
}

.vouch-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.vouch-user {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.vouch-avatar {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    color: var(--neon-cyan);
}

.vouch-user-info {
    display: flex;
    flex-direction: column;
}

.vouch-username {
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.verified-icon {
    color: var(--neon-cyan);
    font-size: 1rem;
    filter: drop-shadow(0 0 5px var(--neon-cyan));
}

.vouch-date {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.vouch-service-tag {
    font-size: 0.75rem;
    background: rgba(176, 38, 255, 0.15);
    color: var(--neon-purple);
    padding: 0.25rem 0.75rem;
    border-radius: 100px;
    border: 1px solid rgba(176, 38, 255, 0.3);
    white-space: nowrap;
}

.vouch-rating {
    color: #eab308;
    display: flex;
    gap: 0.25rem;
    font-size: 1.1rem;
}

.vouch-feedback {
    color: var(--text-main);
    font-size: 0.95rem;
    font-style: italic;
    line-height: 1.6;
}

.empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    color: var(--text-muted);
}

.empty-state i {
    font-size: 3rem;
    color: rgba(255,255,255,0.2);
}

/* Modal */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-smooth);
    padding: 1rem;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    width: 100%;
    max-width: 500px;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: var(--transition-smooth);
    max-height: 90vh;
    overflow-y: auto;
}

.modal-overlay.active .modal-container {
    transform: translateY(0) scale(1);
}

.modal-close-btn {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.modal-close-btn:hover {
    color: var(--neon-cyan);
    transform: rotate(90deg);
}

.modal-header {
    padding: 2.5rem 2.5rem 1rem;
    text-align: center;
}

.modal-header h3 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

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

.modal-form {
    padding: 1.5rem 2.5rem 2.5rem;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    gap: 0.5rem;
    font-size: 2rem;
    color: rgba(255,255,255,0.1);
    cursor: pointer;
    margin-top: 0.5rem;
}

.star-rating-input i {
    transition: var(--transition-fast);
}

.star-rating-input i.active,
.star-rating-input i.hover {
    color: #eab308;
    filter: drop-shadow(0 0 8px rgba(234, 179, 8, 0.4));
}

.vouch-card-enter {
    animation: slideIn 0.5s ease-out forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 992px) {
    .contact-container {
        grid-template-columns: 1fr;
    }
    .contact-info {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 3rem 2rem;
    }
    .glass-form {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .nav-links, .btn-nav {
        display: none;
    }
    .mobile-menu-btn {
        display: block;
    }
    .why-me-section .large-panel {
        padding: 2.5rem 1.5rem;
    }
    .form-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .footer-top {
        flex-direction: column;
        gap: 2rem;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    .hero-buttons .btn {
        width: 100%;
    }
}

.captcha-container {
    margin: 20px 0;
    display: flex;
    justify-content: center;
}

/* Dashboard Wrapper */
.dashboard-wrapper {
    display: flex;
    gap: 2rem;
    padding-top: 100px;
    min-height: calc(100vh - 100px);
}

.dashboard-sidebar {
    width: 250px;
    flex-shrink: 0;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-user {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
}

.sidebar-user img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--neon-cyan);
}

.sidebar-user-info h4 {
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.user-role {
    font-size: 0.8rem;
    color: var(--neon-purple);
    background: rgba(176,38,255,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-link {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    text-align: left;
    padding: 0.8rem 1rem;
    border-radius: 10px;
    cursor: pointer;
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-family: var(--font-body);
}

.sidebar-link:hover, .sidebar-link.active {
    color: var(--neon-cyan);
    background: rgba(0, 240, 255, 0.1);
    text-shadow: var(--glow-cyan);
}

.dashboard-main {
    flex-grow: 1;
    padding: 2rem 3rem;
}

.dashboard-section {
    display: none;
    animation: fadeUp 0.4s ease-out forwards;
}

.dashboard-section.active {
    display: block;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Auth Logic Utility */
.hidden {
    display: none !important;
}

/* Nav User Profile */
.user-profile {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.nav-avatar {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 1px solid var(--neon-cyan);
}
.nav-username {
    font-weight: 500;
}

/* Orders UI */
.orders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.order-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 1.5rem;
    transition: var(--transition-smooth);
}
.order-card:hover {
    border-color: rgba(255,255,255,0.15);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.order-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.order-id {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.order-status {
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
}
.status-pending { background: rgba(234, 179, 8, 0.1); color: #eab308; }
.status-progress { background: rgba(0, 240, 255, 0.1); color: var(--neon-cyan); }
.status-testing { background: rgba(176, 38, 255, 0.1); color: var(--neon-purple); }
.status-completed { background: rgba(74, 222, 128, 0.1); color: #4ade80; }

.order-progress-bar {
    height: 6px;
    background: rgba(255,255,255,0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-top: 1.5rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--neon-cyan), var(--neon-purple));
    border-radius: 3px;
    transition: width 1s ease-in-out;
}

/* Tickets UI */
.tickets-layout {
    display: flex;
    gap: 1.5rem;
    height: 600px;
}

.tickets-sidebar {
    width: 300px;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.tickets-list {
    flex-grow: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ticket-item {
    padding: 1rem;
    border-radius: 10px;
    background: rgba(255,255,255,0.03);
    cursor: pointer;
    border: 1px solid transparent;
    transition: var(--transition-fast);
}

.ticket-item:hover, .ticket-item.active {
    background: rgba(255,255,255,0.08);
    border-color: var(--glass-border);
}

.ticket-chat {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    padding: 0;
    overflow: hidden;
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0,0,0,0.2);
}

.chat-messages {
    flex-grow: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-msg {
    max-width: 75%;
    padding: 1rem;
    border-radius: 15px;
    line-height: 1.5;
}

.msg-admin {
    align-self: flex-start;
    background: rgba(176,38,255,0.15);
    border: 1px solid rgba(176,38,255,0.3);
    border-bottom-left-radius: 2px;
}

.msg-user {
    align-self: flex-end;
    background: rgba(0,240,255,0.15);
    border: 1px solid rgba(0,240,255,0.3);
    border-bottom-right-radius: 2px;
}

.role-badge {
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.05em;
}
.role-badge.admin {
    color: var(--neon-purple);
    border: 1px solid var(--neon-purple);
}
.role-badge.client {
    color: var(--neon-cyan);
    border: 1px solid var(--neon-cyan);
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--glass-border);
    display: flex;
    gap: 1rem;
    background: rgba(0,0,0,0.2);
}

.chat-input-area input {
    flex-grow: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 0.8rem 1.2rem;
    color: var(--text-main);
    outline: none;
}

/* Skeletons */
.loading-skeleton {
    height: 150px;
    border-radius: 15px;
    background: linear-gradient(90deg, rgba(255,255,255,0.03) 25%, rgba(255,255,255,0.08) 50%, rgba(255,255,255,0.03) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Admin Tabs */
.admin-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 1rem;
}

.admin-tab {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: var(--transition-fast);
}

.admin-tab:hover, .admin-tab.active {
    color: var(--neon-purple);
    text-shadow: var(--glow-purple);
}

.admin-tab-content { display: none; }
.admin-tab-content.active { display: block; animation: fadeUp 0.3s; }

/* Invoices */
.invoice-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}
.invoice-info h4 { color: var(--neon-cyan); margin-bottom: 0.2rem; }

/* Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    background: rgba(7, 7, 10, 0.9);
    border: 1px solid var(--neon-cyan);
    color: var(--text-main);
    padding: 1rem 1.5rem;
    border-radius: 10px;
    box-shadow: var(--glow-cyan);
    animation: slideInRight 0.3s forwards, fadeOut 0.3s 2.7s forwards;
    backdrop-filter: blur(10px);
}

@keyframes slideInRight {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes fadeOut {
    from { opacity: 1; }
    to { opacity: 0; }
}

/* Dashboard & Admin Mobile Responsiveness */
@media (max-width: 992px) {
    .dashboard-wrapper {
        flex-direction: column;
        padding-top: 80px;
    }
    .dashboard-sidebar {
        width: 100%;
        position: static;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        gap: 1rem;
        overflow-x: auto;
    }
    .sidebar-user {
        border-bottom: none;
        border-right: 1px solid var(--glass-border);
        padding-bottom: 0;
        padding-right: 1rem;
        min-width: max-content;
    }
    .sidebar-nav {
        display: flex;
        flex-direction: row;
        gap: 0.5rem;
    }
    .sidebar-link {
        white-space: nowrap;
        padding: 0.5rem 1rem;
    }
    .tickets-layout {
        flex-direction: column;
        height: auto;
    }
    .tickets-sidebar {
        width: 100%;
        height: 300px;
    }
    .ticket-chat {
        height: 500px;
    }
    
    /* Admin Responsiveness */
    .admin-container {
        padding-top: 80px;
    }
    .admin-menu {
        flex-direction: row;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 10px;
    }
    .admin-tab-content table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
}

@media (max-width: 768px) {
    .ticket-chat {
        height: 400px;
    }
    .admin-tabs {
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 5px;
    }
}

