:root {
    --primary-color: #4361ee;
    --secondary-color: #7209b7;
    --accent-color: #4cc9f0;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --text-dark: #2b2d42;
    --text-muted: #6c757d;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.3);
    --card-shadow: 0 10px 30px rgba(67, 97, 238, 0.08);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-nav {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
    padding: 15px 0;
    transition: all 0.3s ease;
}

.glass-nav.scrolled {
    padding: 10px 0;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.navbar-light .navbar-nav .nav-link {
    color: var(--text-dark);
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.navbar-light .navbar-nav .nav-link:hover, 
.navbar-light .navbar-nav .nav-link.active {
    color: var(--primary-color);
}

.glass-card {
    background: var(--bg-white);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.glass-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(67, 97, 238, 0.15);
}

.hero-section {
    min-height: 90vh;
    padding: 120px 0;
    background: radial-gradient(circle at 10% 20%, rgba(67, 97, 238, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 90% 80%, rgba(76, 201, 240, 0.05) 0%, transparent 40%);
    position: relative;
    overflow: hidden;
}

.hero-blob {
    position: absolute;
    width: 600px;
    height: 600px;
    background: linear-gradient(135deg, rgba(67, 97, 238, 0.1), rgba(76, 201, 240, 0.1));
    filter: blur(80px);
    z-index: -1;
    border-radius: 50%;
}

.blob-1 { top: -100px; right: -100px; }
.blob-2 { bottom: -100px; left: -100px; }

.custom-btn {
    border-radius: 14px;
    padding: 14px 32px;
    font-weight: 600;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.hero-btn {
    position: relative;
    z-index: 10;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
}

.btn-primary.custom-btn {
    background: #007bff !important;
    border: none;
    box-shadow: 0 8px 20px rgba(0, 123, 255, 0.2);
    color: white !important;
}

.btn-primary.custom-btn:hover {
    background: #0056b3 !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 123, 255, 0.3);
    color: white !important;
}

.btn-outline-primary.custom-btn {
    border: 2px solid #007bff !important;
    color: #007bff !important;
    background: transparent !important;
}

.btn-outline-primary.custom-btn:hover {
    background: #007bff !important;
    color: white !important;
}

.stat-card h2 {
    font-size: 3rem;
    color: var(--primary-color);
}

.product-card .icon-box {
    width: 64px;
    height: 64px;
    background: rgba(67, 97, 238, 0.08);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    margin-bottom: 24px;
}

.client-logo,
.client-logo-large {
    max-height: 80px;
    width: auto;
    margin: 0 auto;
}

.lang-switch {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.lang-switch:hover, .lang-switch.active {
    background: rgba(67, 97, 238, 0.1);
    color: var(--primary-color);
}

/* Sophisticated Reveal Animations */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
    transition-duration: 0.8s;
    transition-timing-function: ease-out;
}

.aos-animate {
    opacity: 1 !important;
    transform: translate3d(0, 0, 0) !important;
}

/* Admin Styles Re-adaptation */
.admin-sidebar {
    background: #ffffff;
    border-right: 1px solid #edf2f7;
}

.admin-nav-link {
    color: #4a5568;
    border-radius: 12px;
    margin: 4px 15px;
}

.admin-nav-link:hover, .admin-nav-link.active {
    background: #f7fafc;
    color: var(--primary-color);
}

.card-dashboard {
    background: #ffffff;
    border: 1px solid #edf2f7;
    box-shadow: 0 4px 6px rgba(0,0,0,0.02);
}
