:root {
    --primary: #4169E1;
    --primary-dark: #2850b8;
    --primary-light: #6b8cff;
    --secondary: #00d4cf;
    --accent: #ff85b3;
    --dark: #0f1029;
    --dark-2: #171842;
    --dark-3: #1f2055;
    --dark-4: #2a2b6a;
    --dark-5: #35367f;
    --text: #e0e0f8;
    --text-muted: #9090b8;
    --white: #ffffff;
    --success: #00c9a7;
    --warning: #ffd47a;
    --danger: #ff8a6b;
    --info: #8ecaff;
    --gradient-1: linear-gradient(135deg, #4169E1 0%, #00d4cf 100%);
    --gradient-2: linear-gradient(135deg, #4169E1 0%, #ff85b3 100%);
    --gradient-3: linear-gradient(135deg, #00d4cf 0%, #4169E1 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
    --shadow-sm: 0 2px 10px rgba(0,0,0,0.25);
    --shadow-md: 0 8px 32px rgba(0,0,0,0.35);
    --shadow-lg: 0 16px 64px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 40px rgba(65,105,225,0.3);
    --shadow-glow-lg: 0 0 80px rgba(65,105,225,0.2);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 50px;
    --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.2s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(124,108,247,0.08) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(0,212,207,0.06) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(255,133,179,0.04) 0%, transparent 50%);
    background-attachment: fixed;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    background: rgba(15, 16, 41, 0.7);
    backdrop-filter: blur(24px) saturate(180%);
    -webkit-backdrop-filter: blur(24px) saturate(180%);
    border-bottom: 1px solid rgba(65,105,225,0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(15, 16, 41, 0.95);
    box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.nav-container {
    display: flex; align-items: center; justify-content: space-between; height: 72px;
    position: relative;
}

.logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: var(--white);
}

.logo i {
    font-size: 1.7rem;
    background: var(--gradient-1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 8px rgba(108,92,231,0.4));
}

.logo-accent { color: var(--secondary); }

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

.nav-links > li > a {
    color: var(--text-muted); font-weight: 500; font-size: 0.9rem;
    position: relative; padding: 4px 0;
}

.nav-links > li > a:hover { color: var(--white); }

.nav-links > li > a::after {
    content: ''; position: absolute; bottom: -2px; left: 0;
    width: 0; height: 2px;
    background: var(--gradient-1);
    transition: var(--transition);
    border-radius: 2px;
}

.nav-links > li > a:hover::after { width: 100%; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-full);
    font-weight: 600; font-size: 0.9rem; cursor: pointer;
    border: none; transition: var(--transition); text-align: center;
    justify-content: center; font-family: inherit;
    position: relative; overflow: hidden;
}

.btn::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, rgba(255,255,255,0) 100%);
    opacity: 0; transition: var(--transition);
}

.btn:hover::before { opacity: 1; }

.btn-primary-nav {
    background: var(--gradient-1); color: var(--white) !important;
    box-shadow: 0 4px 15px rgba(108,92,231,0.3);
}
.btn-primary-nav:hover { transform: translateY(-2px); box-shadow: 0 6px 25px rgba(108,92,231,0.4); }

.btn-outline-nav {
    border: 1.5px solid rgba(108,92,231,0.4); color: var(--primary-light) !important;
    background: rgba(108,92,231,0.05);
}
.btn-outline-nav:hover { background: rgba(108,92,231,0.15); border-color: var(--primary); color: var(--white) !important; }

.btn-primary {
    background: linear-gradient(135deg, #1a237e, #4169E1); color: var(--white);
    padding: 14px 32px; font-size: 1rem;
    box-shadow: 0 4px 20px rgba(65,105,225,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(108,92,231,0.4); }

.btn-secondary {
    background: rgba(255,255,255,0.05); color: var(--white);
    padding: 14px 32px; font-size: 1rem;
    border: 1px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
}
.btn-secondary:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); transform: translateY(-2px); }

.btn-large { padding: 16px 40px; font-size: 1rem; letter-spacing: 0.3px; }

.btn-success { background: var(--success); color: var(--white); }
.btn-danger { background: var(--danger); color: var(--white); }
.btn-warning { background: var(--warning); color: var(--dark); }

/* ===== DROPDOWN ===== */
.nav-user { position: relative; }
.nav-user-btn { display: flex; align-items: center; gap: 8px; cursor: pointer; }

.dropdown-menu {
    position: absolute; top: calc(100% + 12px); right: 0;
    background: var(--dark-2); border: 1px solid var(--dark-4);
    border-radius: var(--radius-md); min-width: 220px;
    padding: 8px 0; opacity: 0; visibility: hidden;
    transform: translateY(8px); transition: var(--transition);
    list-style: none; box-shadow: var(--shadow-lg);
    backdrop-filter: blur(20px);
}

.nav-user:hover .dropdown-menu {
    opacity: 1; visibility: visible; transform: translateY(0);
}

.dropdown-menu a {
    display: flex; align-items: center; gap: 12px;
    padding: 11px 20px; font-size: 0.88rem; color: var(--text-muted);
}

.dropdown-menu a:hover { background: rgba(108,92,231,0.1); color: var(--white); }
.dropdown-menu a i { width: 18px; text-align: center; }

/* ===== HAMBURGER ===== */
.hamburger {
    display: none; flex-direction: column; gap: 6px;
    background: none; border: none; cursor: pointer; padding: 8px;
    position: relative; z-index: 1001;
}

.hamburger span {
    width: 24px; height: 2px; background: var(--white);
    transition: var(--transition); border-radius: 2px;
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ===== HERO ===== */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 72px;
    background: linear-gradient(135deg, #0a0f2e 0%, #111845 50%, #0d1538 100%);
}

.hero-bg {
    position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1639762681485-074b7f938ba0?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.hero-bg::after {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(10,15,46,0.5) 0%, rgba(10,15,46,0.9) 100%);
}

.hero-particles { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }

.particle {
    position: absolute; width: 3px; height: 3px;
    background: var(--primary-light); border-radius: 50%;
    opacity: 0.2; animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% { transform: translateY(100vh) rotate(0deg); opacity: 0; }
    10% { opacity: 0.3; }
    90% { opacity: 0.3; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

.hero-content {
    position: relative; z-index: 2;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 60px; align-items: center;
}

.hero-text h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 3.6rem; font-weight: 800; line-height: 1.1;
    margin-bottom: 24px; color: var(--white);
    letter-spacing: -1px;
}

.hero-text h1 span {
    background: linear-gradient(135deg, #4169E1, #00d4cf);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 0 20px rgba(65,105,225,0.3));
}

.hero-text p {
    font-size: 1.1rem; color: var(--text-muted);
    margin-bottom: 36px; max-width: 500px; line-height: 1.8;
}

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

.hero-stats {
    display: flex; gap: 48px; margin-top: 48px;
    padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.08);
}

.stat-item h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 700;
    background: linear-gradient(135deg, #4169E1, #00d4cf);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    line-height: 1.2;
}

.stat-item p { font-size: 0.82rem; color: var(--text-muted); margin-top: 4px; letter-spacing: 0.5px; }

.hero-visual { display: flex; justify-content: center; align-items: flex-end; }

.hero-image-wrapper {
    position: relative; width: 100%; max-width: 560px;
}

.hero-image-wrapper::before {
    content: ''; position: absolute; inset: -3px;
    background: linear-gradient(135deg, #4169E1, #00d4cf, #4169E1);
    border-radius: calc(var(--radius-lg) + 3px);
    z-index: -1; opacity: 0.4; filter: blur(25px);
    animation: borderGlow 4s ease-in-out infinite;
}

@keyframes borderGlow {
    0%, 100% { opacity: 0.3; filter: blur(25px); }
    50% { opacity: 0.6; filter: blur(35px); }
}

.hero-image-wrapper img {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.1);
}

.hero-float-card {
    position: absolute;
    background: rgba(23, 24, 66, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(65,105,225,0.3);
    border-radius: var(--radius-md);
    padding: 14px 20px; display: flex; align-items: center;
    gap: 12px; animation: floatCard 5s ease-in-out infinite;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}

.hero-float-card.card-1 { top: 8%; left: -30px; }
.hero-float-card.card-2 { bottom: 18%; right: -30px; animation-delay: 2.5s; }

.hero-float-card i { font-size: 1.3rem; color: var(--success); }
.hero-float-card span { font-weight: 600; color: var(--white); font-size: 0.85rem; }

@keyframes floatCard {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}

/* ===== TRUSTED BY ===== */
.trusted-section { padding: 50px 0; }

.trusted-label {
    color: var(--text-muted); font-size: 0.78rem;
    text-transform: uppercase; letter-spacing: 4px;
    text-align: center; margin-bottom: 30px; font-weight: 600;
}

.trusted-icons {
    display: flex; justify-content: center; align-items: center;
    gap: 60px; flex-wrap: wrap;
}

.trusted-icon {
    font-size: 2.2rem; color: rgba(255,255,255,0.12);
    transition: var(--transition); cursor: default;
}

.trusted-icon:hover { color: rgba(108,92,231,0.5); transform: scale(1.1); }

/* ===== SECTIONS ===== */
.section { padding: 110px 0; }

.section-header { text-align: center; margin-bottom: 64px; }

.section-header .subtitle {
    display: inline-block; font-size: 0.78rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: 4px;
    color: var(--secondary); margin-bottom: 16px;
    position: relative; padding: 0 20px;
}

.section-header .subtitle::before,
.section-header .subtitle::after {
    content: ''; position: absolute; top: 50%;
    width: 30px; height: 1px; background: var(--secondary); opacity: 0.4;
}
.section-header .subtitle::before { left: -30px; }
.section-header .subtitle::after { right: -30px; }

.section-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem; font-weight: 700;
    color: var(--white); margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.section-header p {
    font-size: 1.05rem; color: var(--text-muted);
    max-width: 560px; margin: 0 auto; line-height: 1.8;
}

/* ===== CARDS ===== */
.card {
    background: linear-gradient(180deg, var(--dark-3) 0%, rgba(31,32,85,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 36px;
    transition: border-color 0.35s ease, box-shadow 0.35s ease;
    position: relative; overflow: visible;
}

.card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gradient-1);
    opacity: 0; transition: var(--transition);
}

.card::after {
    content: ''; position: absolute; inset: 0;
    background: radial-gradient(600px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(108,92,231,0.06), transparent 40%);
    opacity: 0; transition: opacity 0.5s;
}

.card:hover {
    border-color: rgba(108,92,231,0.2);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(108,92,231,0.1);
}

.card:hover::before { opacity: 1; }
.card:hover::after { opacity: 1; }

.card-icon {
    width: 64px; height: 64px;
    border-radius: var(--radius-md);
    background: rgba(108,92,231,0.08);
    border: 1px solid rgba(108,92,231,0.12);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 22px; transition: var(--transition);
}

.card:hover .card-icon {
    background: rgba(108,92,231,0.15);
    border-color: rgba(108,92,231,0.25);
    transform: scale(1.05);
}

.card-icon i { font-size: 1.4rem; color: var(--primary-light); }

.card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 600;
    color: var(--white); margin-bottom: 12px;
}

.card p { color: var(--text-muted); font-size: 0.92rem; line-height: 1.7; }

/* ===== SERVICES GRID ===== */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

/* ===== PROCESS ===== */
.process-steps {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative;
}

.process-steps::before {
    content: ''; position: absolute; top: 44px;
    left: 12%; right: 12%; height: 2px;
    background: linear-gradient(90deg, transparent, var(--dark-4), var(--primary), var(--dark-4), transparent);
}

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

.step-number {
    width: 88px; height: 88px; border-radius: 50%;
    background: var(--dark-2);
    border: 2px solid var(--dark-4);
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: var(--primary-light);
    transition: var(--transition);
    position: relative;
}

.step-number::before {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%; background: var(--gradient-1); opacity: 0;
    transition: var(--transition); z-index: -1;
}

.process-step:hover .step-number {
    border-color: var(--primary);
    background: rgba(108,92,231,0.1);
}

.process-step:hover .step-number::before { opacity: 0.2; }

.process-step h4 { font-size: 1.05rem; color: var(--white); margin-bottom: 8px; }
.process-step p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ===== TESTIMONIALS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: linear-gradient(180deg, var(--dark-3) 0%, rgba(31,32,85,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 32px;
    transition: var(--transition); position: relative;
}

.testimonial-card:hover {
    border-color: rgba(108,92,231,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.testimonial-stars { color: var(--warning); margin-bottom: 16px; font-size: 0.9rem; }
.testimonial-stars i { margin: 0 1px; }

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

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

.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--white); font-size: 1rem;
    box-shadow: 0 4px 12px rgba(108,92,231,0.3);
}

.testimonial-author h4 { font-size: 0.92rem; color: var(--white); font-weight: 600; }
.testimonial-author p { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }

/* ===== CTA ===== */
.cta-section { padding: 80px 0; }

.cta-box {
    background: linear-gradient(135deg, #1a237e 0%, #4169E1 50%, #0d47a1 100%);
    border-radius: var(--radius-xl);
    padding: 72px 60px; text-align: center;
    position: relative; overflow: hidden;
    box-shadow: 0 20px 60px rgba(65,105,225,0.35);
}

.cta-box::before {
    content: ''; position: absolute; top: -40%; right: -5%;
    width: 400px; height: 400px;
    background: rgba(255,255,255,0.08); border-radius: 50%;
}

.cta-box::after {
    content: ''; position: absolute; bottom: -30%; left: -5%;
    width: 300px; height: 300px;
    background: rgba(255,255,255,0.05); border-radius: 50%;
}

.cta-box h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.6rem; color: var(--white);
    margin-bottom: 16px; position: relative; z-index: 1;
}

.cta-box p {
    color: rgba(255,255,255,0.9); font-size: 1.1rem;
    margin-bottom: 36px; position: relative; z-index: 1;
    max-width: 600px; margin-left: auto; margin-right: auto;
}

.cta-box .btn { position: relative; z-index: 1; }

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-2);
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px; margin-bottom: 56px;
}

.footer-logo {
    display: flex; align-items: center; gap: 10px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: var(--white);
    margin-bottom: 16px;
}

.footer-logo i {
    font-size: 1.5rem;
    background: var(--gradient-1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.footer-col p { color: var(--text-muted); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.7; }

.footer-col h4 {
    font-size: 0.95rem; font-weight: 600;
    color: var(--white); margin-bottom: 20px;
    text-transform: uppercase; letter-spacing: 1px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }

.footer-col ul a {
    color: var(--text-muted); font-size: 0.88rem;
    display: flex; align-items: center; gap: 6px;
}

.footer-col ul a:hover { color: var(--white); padding-left: 4px; }

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

.social-links a {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary); border-color: var(--primary);
    color: var(--white); transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(65,105,225,0.4);
}

.contact-list li {
    display: flex; align-items: center; gap: 12px;
    color: var(--text-muted); font-size: 0.88rem;
}

.contact-list i { color: var(--primary-light); width: 18px; }

.footer-bottom {
    display: flex; justify-content: space-between; align-items: center;
    padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-bottom p { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: var(--text-muted); font-size: 0.82rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* ===== PAGE HEADER ===== */
.page-header {
    padding: 150px 0 60px;
    background: var(--dark-2); position: relative; overflow: hidden;
}

.page-header::before {
    content: ''; position: absolute; inset: 0;
    background: url('https://images.unsplash.com/photo-1621761191319-c6fb62004040?w=1920&q=80') center/cover no-repeat;
    opacity: 0.06;
}

.page-header::after {
    content: ''; position: absolute; bottom: 0; left: 0; right: 0;
    height: 60px;
    background: linear-gradient(transparent, var(--dark-2));
}

.page-header-content { position: relative; z-index: 1; }

.page-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.8rem; font-weight: 700;
    color: var(--white); margin-bottom: 12px;
}

.breadcrumb {
    display: flex; align-items: center; gap: 10px;
    color: var(--text-muted); font-size: 0.88rem;
}

.breadcrumb a { color: var(--primary-light); }
.breadcrumb a:hover { color: var(--white); }

/* ===== FORMS ===== */
.form-group { margin-bottom: 22px; }

.form-group label {
    display: block; margin-bottom: 8px;
    font-weight: 500; font-size: 0.88rem; color: var(--text);
}

.form-control {
    width: 100%; padding: 13px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--white); font-size: 0.92rem;
    font-family: inherit; transition: var(--transition);
}

.form-control:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(108,92,231,0.15);
    background: rgba(255,255,255,0.05);
}

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

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

select.form-control {
    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='%237878a0' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 16px center;
    position: relative; z-index: 10;
    cursor: pointer;
}

select.form-control option {
    background: var(--dark-2);
    color: var(--text);
    padding: 10px;
    border: none;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

/* ===== AUTH PAGES ===== */
.auth-container {
    min-height: 100vh; display: flex; align-items: center;
    justify-content: center; padding: 40px 20px; position: relative;
    background: var(--dark);
    overflow: hidden;
}

.auth-bg-shape {
    position: absolute; border-radius: 50%;
    filter: blur(120px); opacity: 0.15; pointer-events: none;
}

.auth-bg-shape-1 {
    width: 600px; height: 600px;
    background: var(--primary);
    top: -200px; right: -200px;
}

.auth-bg-shape-2 {
    width: 500px; height: 500px;
    background: var(--secondary);
    bottom: -200px; left: -150px;
}

.auth-card {
    width: 100%; max-width: 460px;
    background: rgba(13,13,43,0.7);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-xl);
    position: relative; z-index: 1;
    backdrop-filter: blur(40px) saturate(150%);
    -webkit-backdrop-filter: blur(40px) saturate(150%);
    box-shadow: 0 24px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
    overflow: hidden;
}

.auth-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 2px; background: var(--gradient-1);
}

.auth-card-inner { padding: 44px 40px 40px; }

.auth-logo {
    display: flex; align-items: center; gap: 12px;
    justify-content: center; margin-bottom: 28px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem; font-weight: 700; color: var(--white);
}

.auth-logo-icon {
    width: 48px; height: 48px; border-radius: 14px;
    background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--white);
    box-shadow: 0 4px 20px rgba(108,92,231,0.4);
}

.admin-logo-icon {
    background: linear-gradient(135deg, #e17055, #fdcb6e);
    box-shadow: 0 4px 20px rgba(225,112,85,0.4);
}

.auth-header { text-align: center; margin-bottom: 32px; }

.auth-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.65rem; color: var(--white); margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-muted); font-size: 0.9rem; line-height: 1.5;
}

.auth-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(225,112,85,0.1);
    border: 1px solid rgba(225,112,85,0.2);
    border-radius: var(--radius-full);
    padding: 6px 16px; font-size: 0.78rem;
    color: var(--danger); font-weight: 600;
    margin-bottom: 16px; text-transform: uppercase; letter-spacing: 1px;
}

.auth-form .form-group { margin-bottom: 20px; }

.auth-form label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; font-weight: 500;
    color: var(--text); margin-bottom: 8px;
}

.auth-form label i {
    font-size: 0.8rem; color: var(--primary-light); width: 14px;
}

.auth-form .form-control {
    padding: 14px 18px; font-size: 0.92rem;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
}

.auth-form .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(108,92,231,0.12);
    background: rgba(255,255,255,0.05);
}

.password-field {
    position: relative;
}

.password-field .form-control { padding-right: 50px; }

.toggle-password-btn {
    position: absolute; right: 4px; top: 50%;
    transform: translateY(-50%);
    width: 40px; height: 40px;
    display: flex; align-items: center; justify-content: center;
    background: none; border: none;
    color: var(--text-muted); cursor: pointer;
    border-radius: 8px; transition: var(--transition-fast);
}

.toggle-password-btn:hover {
    color: var(--white); background: rgba(255,255,255,0.05);
}

.btn-auth-submit {
    width: 100%; padding: 16px 28px; margin-top: 8px;
    background: var(--gradient-1); color: var(--white);
    border: none; border-radius: var(--radius-sm);
    font-size: 1rem; font-weight: 600; font-family: inherit;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; justify-content: center; gap: 10px;
    position: relative; overflow: hidden;
    box-shadow: 0 4px 20px rgba(108,92,231,0.35);
}

.btn-auth-submit::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.2) 0%, rgba(255,255,255,0) 100%);
    opacity: 0; transition: var(--transition);
}

.btn-auth-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(108,92,231,0.5);
}

.btn-auth-submit:hover::before { opacity: 1; }

.btn-auth-submit:active { transform: translateY(0); }

.btn-auth-submit i {
    font-size: 0.9rem; transition: transform 0.3s ease;
}

.btn-auth-submit:hover i { transform: translateX(4px); }

.admin-submit {
    background: linear-gradient(135deg, #e17055, #fdcb6e);
    box-shadow: 0 4px 20px rgba(225,112,85,0.35);
}

.admin-submit:hover {
    box-shadow: 0 8px 32px rgba(225,112,85,0.5);
}

.auth-divider {
    display: flex; align-items: center;
    margin: 28px 0; gap: 16px;
}

.auth-divider::before,
.auth-divider::after {
    content: ''; flex: 1; height: 1px;
    background: rgba(255,255,255,0.06);
}

.auth-divider span {
    color: var(--text-muted); font-size: 0.8rem;
    white-space: nowrap; text-transform: uppercase; letter-spacing: 1px;
}

.auth-social { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.btn-social {
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 13px 16px;
    background: rgba(255,255,255,0.03);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-sm);
    color: var(--text); font-size: 0.88rem; font-weight: 500;
    transition: var(--transition);
}

.btn-social:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.15);
    color: var(--white); transform: translateY(-1px);
}

.btn-social i { font-size: 1.1rem; }

.auth-footer {
    text-align: center; margin-top: 28px;
    padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.04);
}

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

.auth-footer a {
    color: var(--primary-light); font-weight: 600;
}

.auth-footer a:hover { color: var(--white); }

.auth-admin-link {
    text-align: center; margin-top: 16px;
}

.auth-admin-link a {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--text-muted); font-size: 0.82rem;
    padding: 8px 16px; border-radius: var(--radius-sm);
    transition: var(--transition);
}

.auth-admin-link a:hover {
    color: var(--white); background: rgba(255,255,255,0.04);
}

.password-strength {
    display: flex; align-items: center; gap: 12px;
    margin-bottom: 20px;
}

.strength-bar {
    flex: 1; height: 4px; background: rgba(255,255,255,0.06);
    border-radius: 2px; overflow: hidden;
}

.strength-fill {
    height: 100%; width: 0; border-radius: 2px;
    transition: all 0.3s ease;
}

.strength-text {
    font-size: 0.78rem; font-weight: 600;
    min-width: 50px; text-align: right;
}

/* ===== ALERTS ===== */
.alert {
    padding: 14px 18px; border-radius: var(--radius-sm);
    margin-bottom: 22px; font-size: 0.88rem;
    display: flex; align-items: center; gap: 10px;
}

.alert-danger { background: rgba(225,112,85,0.1); border: 1px solid rgba(225,112,85,0.2); color: var(--danger); }
.alert-success { background: rgba(0,184,148,0.1); border: 1px solid rgba(0,184,148,0.2); color: var(--success); }
.alert-warning { background: rgba(253,203,110,0.1); border: 1px solid rgba(253,203,110,0.2); color: var(--warning); }
.alert-info { background: rgba(116,185,255,0.1); border: 1px solid rgba(116,185,255,0.2); color: var(--info); }

/* ===== DASHBOARD ===== */
.dashboard-layout {
    display: grid; grid-template-columns: 260px 1fr;
    min-height: calc(100vh - 72px); padding-top: 72px;
}

.sidebar {
    background: var(--dark-2);
    border-right: 1px solid rgba(255,255,255,0.04);
    padding: 32px 0; position: sticky;
    top: 72px; height: calc(100vh - 72px); overflow-y: auto;
}

.sidebar-menu { list-style: none; }

.sidebar-menu li a {
    display: flex; align-items: center; gap: 14px;
    padding: 13px 28px; color: var(--text-muted);
    font-size: 0.88rem; transition: var(--transition-fast);
    border-left: 3px solid transparent;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    color: var(--white); background: rgba(108,92,231,0.08);
    border-left-color: var(--primary);
}

.sidebar-menu li a i { width: 20px; text-align: center; font-size: 0.95rem; }

.dashboard-content { padding: 32px; }

.dashboard-header {
    display: flex; justify-content: space-between;
    align-items: center; margin-bottom: 32px;
}

.dashboard-header h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.7rem; color: var(--white);
}

/* ===== STATS CARDS ===== */
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }

.stat-card {
    background: linear-gradient(180deg, var(--dark-3) 0%, rgba(31,32,85,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 26px;
    transition: var(--transition); position: relative; overflow: hidden;
}

.stat-card:hover { border-color: rgba(108,92,231,0.2); transform: translateY(-2px); }

.stat-card .stat-icon {
    width: 50px; height: 50px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 16px; font-size: 1.2rem;
}

.stat-icon.purple { background: rgba(108,92,231,0.12); color: var(--primary-light); }
.stat-icon.teal { background: rgba(0,206,201,0.12); color: var(--secondary); }
.stat-icon.green { background: rgba(0,184,148,0.12); color: var(--success); }
.stat-icon.orange { background: rgba(253,203,110,0.12); color: var(--warning); }
.stat-icon.pink { background: rgba(253,121,168,0.12); color: var(--accent); }

.stat-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem; color: var(--white); margin-bottom: 4px;
}

.stat-card p { font-size: 0.82rem; color: var(--text-muted); }

/* ===== TABLE ===== */
.table-container {
    background: linear-gradient(180deg, var(--dark-2) 0%, rgba(13,13,43,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); overflow: hidden;
}

.table-header {
    display: flex; justify-content: space-between; align-items: center;
    padding: 20px 28px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.table-header h3 {
    font-family: 'Space Grotesk', sans-serif;
    color: var(--white); font-size: 1.05rem;
}

table { width: 100%; border-collapse: collapse; }

th, td { padding: 14px 24px; text-align: left; font-size: 0.88rem; }

th {
    background: rgba(255,255,255,0.02);
    color: var(--text-muted); font-weight: 600;
    font-size: 0.75rem; text-transform: uppercase; letter-spacing: 1px;
}

tr { border-bottom: 1px solid rgba(255,255,255,0.03); }
tr:last-child { border-bottom: none; }
tr:hover { background: rgba(108,92,231,0.04); }

/* ===== BADGES ===== */
.badge {
    display: inline-flex; align-items: center; gap: 4px;
    padding: 4px 12px; border-radius: var(--radius-full);
    font-size: 0.72rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.5px;
}

.badge-primary { background: rgba(108,92,231,0.15); color: var(--primary-light); }
.badge-success { background: rgba(0,184,148,0.15); color: var(--success); }
.badge-warning { background: rgba(253,203,110,0.15); color: var(--warning); }
.badge-danger { background: rgba(225,112,85,0.15); color: var(--danger); }
.badge-info { background: rgba(116,185,255,0.15); color: var(--info); }
.badge-secondary { background: rgba(255,255,255,0.05); color: var(--text-muted); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }

.about-image { border-radius: var(--radius-lg); overflow: hidden; position: relative; }
.about-image img { width: 100%; display: block; }

.about-content h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; color: var(--white); margin-bottom: 20px;
}

.about-content p { color: var(--text-muted); margin-bottom: 18px; line-height: 1.8; }

.features-list { list-style: none; margin-top: 24px; }

.features-list li {
    display: flex; align-items: flex-start; gap: 14px;
    margin-bottom: 14px; color: var(--text); font-size: 0.95rem;
}

.features-list i { color: var(--success); margin-top: 4px; font-size: 0.9rem; }

/* ===== CONTACT ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }

.contact-info-card {
    display: flex; gap: 16px; padding: 22px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm); margin-bottom: 14px;
    transition: var(--transition);
}

.contact-info-card:hover { border-color: rgba(108,92,231,0.15); background: rgba(108,92,231,0.03); }

.contact-info-card i {
    width: 52px; height: 52px; border-radius: var(--radius-sm);
    background: rgba(108,92,231,0.1);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-light); font-size: 1.15rem; flex-shrink: 0;
}

.contact-info-card h4 { color: var(--white); margin-bottom: 4px; font-size: 0.95rem; }
.contact-info-card p { color: var(--text-muted); font-size: 0.85rem; }

/* ===== SERVICES DETAIL ===== */
.service-detail-card {
    background: linear-gradient(180deg, var(--dark-2) 0%, rgba(13,13,43,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); overflow: hidden;
    margin-bottom: 28px; transition: var(--transition);
}

.service-detail-card:hover { border-color: rgba(108,92,231,0.15); }

.service-detail-card .service-img {
    width: 100%; height: 260px; object-fit: cover;
}

.service-detail-card .service-body { padding: 32px; }

.service-detail-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.35rem; color: var(--white); margin-bottom: 14px;
}

.service-detail-card p { color: var(--text-muted); margin-bottom: 16px; line-height: 1.7; }

.service-detail-card ul { list-style: none; margin-top: 16px; }

.service-detail-card ul li {
    display: flex; align-items: center; gap: 12px;
    padding: 8px 0; color: var(--text); font-size: 0.92rem;
}

.service-detail-card ul li i { color: var(--success); font-size: 0.85rem; }

/* ===== MESSAGES ===== */
.message-list { max-height: 400px; overflow-y: auto; }

.message-item {
    display: flex; gap: 14px; padding: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.03);
}

.message-avatar {
    width: 42px; height: 42px; border-radius: 50%;
    background: var(--gradient-1);
    display: flex; align-items: center; justify-content: center;
    color: var(--white); font-weight: 600; flex-shrink: 0;
    font-size: 0.85rem;
}

.message-content { flex: 1; }

.message-meta {
    display: flex; justify-content: space-between; margin-bottom: 6px;
}

.message-meta strong { color: var(--white); font-size: 0.88rem; }
.message-meta small { color: var(--text-muted); font-size: 0.78rem; }
.message-text { color: var(--text); font-size: 0.88rem; line-height: 1.6; }

/* ===== REQUEST DETAIL ===== */
.request-detail-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 28px; }

.detail-card {
    background: linear-gradient(180deg, var(--dark-2) 0%, rgba(13,13,43,0.8) 100%);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-md); padding: 28px; margin-bottom: 20px;
}

.detail-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; color: var(--white);
    margin-bottom: 20px; padding-bottom: 14px;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.detail-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 11px 0; border-bottom: 1px solid rgba(255,255,255,0.03);
}

.detail-row:last-child { border-bottom: none; }
.detail-row .label { color: var(--text-muted); font-size: 0.88rem; }
.detail-row .value { color: var(--white); font-weight: 500; font-size: 0.88rem; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--dark-4); border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ===== BACK TO TOP ===== */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    background: linear-gradient(135deg, #4169E1, #0d47a1);
    color: var(--white); border: none;
    border-radius: 50%; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; z-index: 999;
    opacity: 0; visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(65,105,225,0.4);
}

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

.back-to-top:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(65,105,225,0.5);
}

/* ===== CHAT WIDGET ===== */
.chat-widget {
    position: fixed; bottom: 30px; right: 30px;
    width: 60px; height: 60px;
    background: linear-gradient(135deg, #0088cc, #00d4cf);
    color: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,136,204,0.5);
    transition: all 0.3s ease;
    animation: chatPulse 2s ease-in-out infinite;
    text-decoration: none; z-index: 998;
}

.chat-widget:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(0,136,204,0.6);
    color: var(--white);
}

@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 24px rgba(0,136,204,0.5); }
    50% { box-shadow: 0 4px 30px rgba(0,136,204,0.7), 0 0 0 8px rgba(0,136,204,0.15); }
}

/* ===== ANIMATIONS ===== */
.fade-in {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Staggered fade-in for grid children */
.stagger-in > * {
    opacity: 0; transform: translateY(30px);
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.stagger-in.visible > * { opacity: 1; transform: translateY(0); }
.stagger-in.visible > *:nth-child(1) { transition-delay: 0.05s; }
.stagger-in.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-in.visible > *:nth-child(3) { transition-delay: 0.15s; }
.stagger-in.visible > *:nth-child(4) { transition-delay: 0.2s; }
.stagger-in.visible > *:nth-child(5) { transition-delay: 0.25s; }
.stagger-in.visible > *:nth-child(6) { transition-delay: 0.3s; }
.stagger-in.visible > *:nth-child(7) { transition-delay: 0.35s; }
.stagger-in.visible > *:nth-child(8) { transition-delay: 0.4s; }
.stagger-in.visible > *:nth-child(9) { transition-delay: 0.45s; }
.stagger-in.visible > *:nth-child(10) { transition-delay: 0.5s; }
.stagger-in.visible > *:nth-child(11) { transition-delay: 0.55s; }
.stagger-in.visible > *:nth-child(12) { transition-delay: 0.6s; }

/* Hero entrance animations */
@keyframes slideInLeft {
    from { opacity: 0; transform: translateX(-60px); }
    to { opacity: 1; transform: translateX(0); }
}

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

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

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

@keyframes scaleIn {
    from { opacity: 0; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes bounceIn {
    0% { opacity: 0; transform: scale(0.3); }
    50% { transform: scale(1.05); }
    70% { transform: scale(0.95); }
    100% { opacity: 1; transform: scale(1); }
}

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(108,92,231,0.2); }
    50% { box-shadow: 0 0 40px rgba(108,92,231,0.4); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes rotateGlow {
    0% { filter: hue-rotate(0deg); }
    100% { filter: hue-rotate(360deg); }
}

@keyframes typewriter {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blinkCursor {
    0%, 100% { border-right-color: var(--secondary); }
    50% { border-right-color: transparent; }
}

/* Hero animation classes */
.hero-text { animation: slideInLeft 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.2s both; }
.hero-visual { animation: slideInRight 0.9s cubic-bezier(0.4, 0, 0.2, 1) 0.4s both; }
.hero-badge { animation: bounceIn 0.8s cubic-bezier(0.4, 0, 0.2, 1) 0.6s both; }

.hero-stats .stat-item {
    opacity: 0;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-stats .stat-item:nth-child(1) { animation-delay: 0.8s; }
.hero-stats .stat-item:nth-child(2) { animation-delay: 0.95s; }
.hero-stats .stat-item:nth-child(3) { animation-delay: 1.1s; }

.hero-buttons .btn {
    opacity: 0;
    animation: slideInUp 0.6s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-buttons .btn:nth-child(1) { animation-delay: 0.7s; }
.hero-buttons .btn:nth-child(2) { animation-delay: 0.85s; }

/* Floating card animations */
.hero-float-card { animation: floatCard 5s ease-in-out infinite; }
.hero-float-card.card-2 { animation-delay: 2.5s; }

/* CTA glow pulse */
.cta-box { animation: pulseGlow 3s ease-in-out infinite; }

/* Card hover glow */
.card:hover, .feature-card:hover, .testimonial-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.3), 0 0 30px rgba(108,92,231,0.1);
}

/* Step number pulse on hover */
.process-step:hover .step-number {
    animation: pulseGlow 1.5s ease-in-out infinite;
}

/* Security icon pulse */
.security-item:hover i {
    animation: bounceIn 0.6s ease both;
}

/* Crypto card logo float on hover */
.crypto-card-item:hover .crypto-card-logo img {
    animation: float 2s ease-in-out infinite;
}

/* Shimmer gradient text effect */
.hero-text h1 span {
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

/* Button ripple on click */
.btn::after {
    content: ''; position: absolute;
    inset: 0; border-radius: inherit;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 10%, transparent 10%);
    transform: scale(0); opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}
.btn:active::after {
    transform: scale(2.5); opacity: 1;
    transition: 0s;
}

/* FAQ expand animation */
.faq-item p {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}
.faq-item.active p {
    max-height: 300px; opacity: 1;
}

/* FAQ chevron rotation */
.faq-question i {
    transition: transform 0.3s ease;
}
.faq-item.active .faq-question i {
    transform: rotate(90deg);
}

/* Navbar link hover glow */
.nav-links > li > a:hover {
    text-shadow: 0 0 15px rgba(108,92,231,0.5);
}

/* Form input focus glow */
.form-control:focus {
    box-shadow: 0 0 0 3px rgba(108,92,231,0.15), 0 0 20px rgba(108,92,231,0.1);
}

/* Table row highlight animation */
tr {
    transition: background 0.3s ease, transform 0.2s ease;
}
tr:hover {
    background: rgba(108,92,231,0.06);
}

/* Badge pulse */
.badge-success {
    animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,184,148,0.3); }
    50% { box-shadow: 0 0 0 6px rgba(0,184,148,0); }
}

/* Stat card number count-up glow */
.stat-card h3 {
    transition: text-shadow 0.3s ease;
}
.stat-card:hover h3 {
    text-shadow: 0 0 20px rgba(108,92,231,0.5);
}

/* Logo hover effect */
.logo:hover i {
    animation: rotateGlow 2s linear infinite;
}

/* Footer social link bounce */
.social-links a:hover {
    animation: bounceIn 0.5s ease both;
}

/* Page transition */
main {
    animation: fadeIn 0.4s ease both;
}

/* Spinner */
.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(255,255,255,0.06);
    border-top-color: var(--primary); border-radius: 50%;
    animation: spin 0.8s linear infinite; margin: 40px auto;
}

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

/* ===== PAGINATION ===== */
.pagination { display: flex; gap: 8px; justify-content: center; margin-top: 30px; }

.pagination a, .pagination span {
    padding: 8px 14px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03); color: var(--text);
    font-size: 0.82rem; border: 1px solid rgba(255,255,255,0.06);
}

.pagination a:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.pagination .active { background: var(--primary); color: var(--white); border-color: var(--primary); }

/* ===== TIMELINE ===== */
.timeline { position: relative; padding-left: 32px; }

.timeline::before {
    content: ''; position: absolute; left: 8px; top: 0; bottom: 0;
    width: 2px; background: rgba(255,255,255,0.06);
}

.timeline-item {
    position: relative; margin-bottom: 20px;
    padding: 16px; background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-sm);
}

.timeline-item::before {
    content: ''; position: absolute; left: -28px; top: 20px;
    width: 12px; height: 12px; border-radius: 50%;
    background: var(--primary); box-shadow: 0 0 10px rgba(108,92,231,0.4);
}

.timeline-item h4 { color: var(--white); font-size: 0.88rem; margin-bottom: 4px; }
.timeline-item p { color: var(--text-muted); font-size: 0.8rem; }
.timeline-item small { color: var(--text-muted); font-size: 0.75rem; }

/* ===== SEARCH ===== */
.search-bar { display: flex; gap: 10px; margin-bottom: 20px; }
.search-bar .form-control { max-width: 300px; }

/* ===== MOBILE SIDEBAR ===== */
.sidebar-toggle {
    display: none; background: var(--primary); color: var(--white);
    border: none; padding: 10px 20px; border-radius: var(--radius-sm);
    cursor: pointer; margin-bottom: 20px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .hero-text p { margin: 0 auto 40px; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { align-items: center; }
    .hero-image-wrapper { max-width: 450px; }
    .hero-float-card.card-1 { left: 10px; top: 5%; }
    .hero-float-card.card-2 { right: 10px; bottom: 15%; }
    .hero-text h1 { font-size: 3rem; }
    .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .process-steps::before { display: none; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid, .contact-grid, .request-detail-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed; top: 72px; left: 0; right: 0; bottom: 0;
        background: rgba(15, 16, 41, 0.98);
        backdrop-filter: blur(24px);
        flex-direction: column; padding: 32px 24px;
        gap: 8px; border-bottom: 1px solid rgba(65,105,225,0.1);
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto; z-index: 999;
    }
    .nav-links.active { transform: translateX(0); }
    .nav-links > li > a {
        display: block; padding: 14px 16px;
        font-size: 1rem; border-radius: var(--radius-sm);
    }
    .nav-links > li > a:hover {
        background: rgba(65,105,225,0.1);
    }
    .nav-links .btn {
        display: block; text-align: center; margin-top: 8px;
    }
    .hamburger { display: flex; position: relative; z-index: 1001; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero-text h1 { font-size: 2.2rem; }
    .hero-image-wrapper { max-width: 340px; }
    .hero-float-card { padding: 10px 14px; font-size: 0.75rem; }
    .hero-float-card.card-1 { left: 5px; top: 0; }
    .hero-float-card.card-2 { right: 5px; bottom: 10%; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .stat-item h3 { font-size: 1.6rem; }
    .section-header h2 { font-size: 2rem; }
    .services-grid, .testimonials-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .dashboard-layout { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .form-row { grid-template-columns: 1fr; }
    .cta-box { padding: 48px 24px; }
    .cta-box h2 { font-size: 1.8rem; }
    .page-header h1 { font-size: 2rem; }
    .table-header { flex-direction: column; gap: 14px; align-items: flex-start; }
    .dashboard-header { flex-direction: column; gap: 14px; align-items: flex-start; }
}

/* ===== HERO BADGE ===== */
.hero-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(65,105,225,0.15);
    border: 1px solid rgba(65,105,225,0.3);
    border-radius: var(--radius-full);
    padding: 8px 20px 8px 14px;
    font-size: 0.82rem; color: var(--primary-light);
    font-weight: 500; margin-bottom: 24px;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.9rem;
    color: var(--success);
}

/* ===== FEATURES GRID ===== */
.features-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}

.feature-card {
    background: linear-gradient(180deg, var(--dark-3) 0%, rgba(31,32,85,0.9) 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-md); padding: 32px;
    transition: var(--transition); position: relative;
}

.feature-card:hover {
    border-color: rgba(108,92,231,0.2);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.feature-icon {
    width: 56px; height: 56px;
    border-radius: var(--radius-sm);
    background: rgba(108,92,231,0.1);
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 20px; font-size: 1.3rem;
    color: var(--primary-light);
}

.feature-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem; color: var(--white); margin-bottom: 10px;
}

.feature-card p {
    color: var(--text-muted); font-size: 0.9rem; line-height: 1.7;
}

/* ===== CRYPTO GRID ===== */
.crypto-grid {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
}

.crypto-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    padding: 28px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    transition: var(--transition); cursor: default;
}

.crypto-item:hover {
    border-color: rgba(108,92,231,0.2);
    background: rgba(108,92,231,0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.crypto-item i {
    font-size: 2rem;
    background: var(--gradient-1);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}

.crypto-item span {
    font-size: 0.82rem; color: var(--text-muted);
    font-weight: 500; letter-spacing: 0.3px;
}

/* ===== SECURITY GRID ===== */
.security-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}

.security-item {
    text-align: center; padding: 36px 24px;
    background: linear-gradient(180deg, rgba(65,105,225,0.06) 0%, rgba(65,105,225,0.02) 100%);
    border: 1px solid rgba(65,105,225,0.12);
    border-radius: var(--radius-md);
    transition: var(--transition);
}

.security-item:hover {
    border-color: rgba(108,92,231,0.2);
    transform: translateY(-3px);
}

.security-item i {
    font-size: 2.2rem; color: var(--primary-light);
    margin-bottom: 16px;
    filter: drop-shadow(0 0 10px rgba(108,92,231,0.3));
}

.security-item h4 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; color: var(--white); margin-bottom: 8px;
}

.security-item p {
    color: var(--text-muted); font-size: 0.82rem; line-height: 1.6;
}

/* ===== FAQ GRID ===== */
.faq-grid {
    display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px;
    max-width: 1000px; margin: 0 auto;
}

.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    padding: 24px; cursor: pointer;
    transition: var(--transition);
}

.faq-item:hover,
.faq-item.active {
    border-color: rgba(108,92,231,0.2);
    background: rgba(108,92,231,0.03);
}

.faq-question {
    display: flex; align-items: center; gap: 12px; margin-bottom: 12px;
}

.faq-question i {
    color: var(--primary-light); font-size: 1rem;
}

.faq-question h4 {
    font-size: 0.95rem; color: var(--white);
}

.faq-item p {
    color: var(--text-muted); font-size: 0.88rem;
    line-height: 1.7; padding-left: 30px;
}

/* ===== CRYPTO SHOWCASE ===== */
.crypto-showcase {
    display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px;
    max-width: 1000px; margin: 0 auto;
}

.crypto-card-item {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px;
    padding: 24px 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.04);
    border-radius: var(--radius-md);
    transition: var(--transition); cursor: default;
}

.crypto-card-item:hover {
    border-color: rgba(108,92,231,0.2);
    background: rgba(108,92,231,0.05);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

.crypto-card-logo {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
}

.crypto-card-logo img {
    width: 40px; height: 40px;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.crypto-card-name {
    font-size: 0.88rem; color: var(--text);
    font-weight: 600;
}

.crypto-card-symbol {
    font-size: 0.75rem; color: var(--text-muted);
    font-weight: 500;
}

.crypto-card-more {
    border-style: dashed;
    border-color: rgba(255,255,255,0.1);
}

.crypto-card-more .crypto-card-name {
    color: var(--primary);
}

/* ===== TRUSTED LOGOS ===== */
.trusted-logos {
    display: flex; justify-content: center; align-items: center;
    gap: 48px; flex-wrap: wrap;
}

.trusted-logo-item {
    width: 32px; height: 32px;
    display: flex; align-items: center; justify-content: center;
    opacity: 0.4; transition: var(--transition);
}

.trusted-logo-item:hover {
    opacity: 0.8; transform: scale(1.1);
}

.trusted-logo-item img {
    width: 100%; height: 100%;
    filter: grayscale(100%) brightness(2);
}

.trusted-logo-item:hover img {
    filter: none;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .crypto-grid { grid-template-columns: repeat(4, 1fr); }
    .crypto-showcase { grid-template-columns: repeat(4, 1fr); }
    .security-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .crypto-grid { grid-template-columns: repeat(3, 1fr); }
    .crypto-showcase { grid-template-columns: repeat(3, 1fr); }
    .security-grid { grid-template-columns: 1fr; }
    .faq-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .crypto-grid { grid-template-columns: repeat(2, 1fr); }
    .crypto-showcase { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
    .hero-text h1 { font-size: 1.8rem; }
    .hero-stats { flex-direction: column; gap: 16px; align-items: center; }
    .hero-image-wrapper { max-width: 280px; }
    .hero-float-card { display: none; }
    .auth-card { max-width: 100%; }
    .auth-card-inner { padding: 32px 24px 28px; }
    .auth-social { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr; }
}
