:root {
    --bg-body: #0b0f19;
    --bg-card: #111827;
    --bg-card-hover: #1a2332;
    --bg-section-alt: #0f1525;
    --bg-input: #1a2332;
    --border-color: #1e293b;
    --border-subtle: rgba(255,255,255,0.06);

    --accent: #3b82f6;
    --accent-hover: #FB6A21;
    --accent-glow: rgba(59,130,246,0.15);
    --accent-soft: rgba(59,130,246,0.08);
    --brand-orange: #FB6A21;
    --brand-orange-glow: rgba(251,106,33,0.3);
    --cyan: #06b6d4;
    --green: #10b981;
    --orange: #f59e0b;
    --red: #ef4444;
    --purple: #8b5cf6;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-muted: #64748b;
    --text-heading: #ffffff;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 20px;
    --radius-xl: 24px;

    --shadow: 0 4px 24px rgba(0,0,0,0.25);
    --shadow-lg: 0 12px 48px rgba(0,0,0,0.4);
    --shadow-glow: 0 0 30px rgba(59,130,246,0.12);

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s ease;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--bg-body);
    color: var(--text-secondary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection { background: var(--accent); color: #fff; }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-body); }
::-webkit-scrollbar-thumb { background: #1e293b; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #334155; }

a { color: var(--accent); transition: var(--transition-fast); }
a:hover { color: var(--accent-hover); }

h1, h2, h3, h4, h5, h6 { color: var(--text-heading); }

/* ============ TOPBAR ============ */
.topbar {
    background: rgba(11,15,25,0.7);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.4rem 0;
    font-size: 0.8rem;
}
.topbar a { color: var(--text-muted); text-decoration: none; }
.topbar a:hover { color: var(--accent); }

/* ============ NAVBAR ============ */
.navbar-dark-custom {
    background: rgba(11,15,25,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.6rem 0;
    transition: var(--transition);
}
.navbar-dark-custom.scrolled {
    background: rgba(11,15,25,0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-brand {
    display: flex;
    align-items: center;
    padding: 0;
}
.site-logo {
    height: 40px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
}
.navbar-brand:hover .site-logo { opacity: 0.85; }
.footer-logo {
    height: 36px;
    width: auto;
    max-width: 180px;
    object-fit: contain;
    opacity: 0.8;
    transition: var(--transition);
}
.footer-logo:hover { opacity: 1; }
.navbar .nav-link {
    color: var(--text-secondary) !important;
    font-weight: 500;
    font-size: 0.9rem;
    padding: 0.5rem 0.85rem !important;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    position: relative;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
    color: #fff !important;
    background: rgba(255,255,255,0.05);
}
.navbar .dropdown-menu {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem;
    margin-top: 0.5rem;
}
.navbar .dropdown-item {
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    padding: 0.55rem 1rem;
    font-size: 0.88rem;
    transition: var(--transition-fast);
}
.navbar .dropdown-item:hover {
    background: var(--accent-soft);
    color: var(--accent);
}
.navbar .dropdown-item i { color: var(--accent); }
.btn-nav-outline {
    border: 1.5px solid var(--border-color);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 0.4rem 1rem;
    transition: var(--transition);
    background: transparent;
}
.btn-nav-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: rgba(251,106,33,0.08); }
.btn-nav-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.4rem 1.2rem;
    transition: var(--transition);
}
.btn-nav-primary:hover { background: var(--brand-orange); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 15px var(--brand-orange-glow); }

/* ============ HERO ============ */
.hero-section {
    background: var(--bg-body);
    position: relative;
    padding: 6rem 0 5rem;
    overflow: hidden;
}
.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59,130,246,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(6,182,212,0.06) 0%, transparent 70%);
    pointer-events: none;
}
.hero-section h1 {
    font-size: 3.5rem;
    font-weight: 800;
    letter-spacing: -1.5px;
    line-height: 1.15;
    color: #fff;
}
.hero-section h1 .gradient-text {
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section .lead {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 540px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--accent-soft);
    border: 1px solid rgba(59,130,246,0.2);
    color: var(--accent);
    padding: 0.35rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-features {
    display: flex;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-subtle);
}
.hero-features .hf-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--text-muted);
    font-size: 0.85rem;
}
.hero-features .hf-item i {
    color: var(--green);
    font-size: 1rem;
}
.hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-glow-circle {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(59,130,246,0.08), rgba(6,182,212,0.05));
    border: 1px solid rgba(59,130,246,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.hero-glow-circle::before {
    content: '';
    position: absolute;
    inset: 20px;
    border-radius: 50%;
    border: 1px dashed rgba(59,130,246,0.15);
    animation: spinSlow 30s linear infinite;
}
.hero-glow-circle i {
    font-size: 5rem;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
@keyframes spinSlow { to { transform: rotate(360deg); } }

/* ============ BUTTONS ============ */
.btn-primary {
    background: var(--accent);
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    color: #fff;
    transition: var(--transition);
}
.btn-primary:hover {
    background: var(--brand-orange);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--brand-orange-glow);
    color: #fff;
}
.btn-outline-primary {
    border: 1.5px solid var(--accent);
    color: var(--accent);
    border-radius: var(--radius-sm);
    padding: 0.65rem 1.5rem;
    font-weight: 600;
    background: transparent;
    transition: var(--transition);
}
.btn-outline-primary:hover {
    background: var(--brand-orange);
    border-color: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--brand-orange-glow);
}
.btn-hero {
    padding: 0.85rem 2rem;
    font-size: 1rem;
    border-radius: var(--radius);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}
.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    border: none;
    box-shadow: 0 4px 20px rgba(59,130,246,0.3);
}
.btn-hero-primary:hover {
    background: var(--brand-orange);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px var(--brand-orange-glow);
}
.btn-hero-outline {
    background: transparent;
    color: var(--text-secondary);
    border: 1.5px solid var(--border-color);
}
.btn-hero-outline:hover { border-color: var(--brand-orange); color: var(--brand-orange); background: rgba(251,106,33,0.08); }
.btn-lg { padding: 0.8rem 2rem; font-size: 1rem; border-radius: var(--radius); }

/* ============ SECTIONS ============ */
.section-padding { padding: 5rem 0; }
.section-title {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 0.5rem;
    color: var(--text-heading);
}
.section-subtitle {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 550px;
    margin: 0 auto;
}
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: var(--accent);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 0.75rem;
}
.bg-section-alt { background: var(--bg-section-alt); }

/* ============ PRODUCT CARDS ============ */
.product-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    height: 100%;
    position: relative;
    overflow: hidden;
}
.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--cyan));
    opacity: 0;
    transition: var(--transition);
}
.product-card:hover {
    border-color: rgba(251,106,33,0.3);
    transform: translateY(-6px);
    box-shadow: 0 0 30px rgba(251,106,33,0.1);
    background: var(--bg-card-hover);
}
.product-card:hover::before { opacity: 1; }
.product-card .icon-circle {
    width: 72px;
    height: 72px;
    border-radius: 18px;
    background: var(--accent-soft);
    border: 1px solid rgba(59,130,246,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.6rem;
    color: var(--accent);
    transition: var(--transition);
}
.product-card:hover .icon-circle {
    background: var(--brand-orange);
    color: #fff;
    transform: scale(1.08);
    box-shadow: 0 8px 25px var(--brand-orange-glow);
}
.product-card h5 { font-weight: 700; margin-bottom: 0.75rem; font-size: 1.1rem; }
.product-card p { color: var(--text-muted); font-size: 0.88rem; line-height: 1.6; }

/* ============ FEATURE BOX ============ */
.feature-box {
    text-align: center;
    padding: 2rem 1.5rem;
    border-radius: var(--radius);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    height: 100%;
}
.feature-box:hover {
    border-color: rgba(59,130,246,0.2);
    background: var(--bg-card-hover);
    transform: translateY(-4px);
}
.feature-box .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin: 0 auto 1.2rem;
    transition: var(--transition);
}
.feature-box h6 { font-weight: 700; margin-bottom: 0.5rem; }
.feature-box p { font-size: 0.85rem; color: var(--text-muted); margin: 0; }

/* ============ STATS ============ */
.stat-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    transition: var(--transition);
}
.stat-card:hover { border-color: rgba(59,130,246,0.2); }
.stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(135deg, var(--accent), var(--cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card .stat-label { color: var(--text-muted); font-size: 0.88rem; margin-top: 0.5rem; }

/* ============ CTA ============ */
.cta-section {
    background: linear-gradient(135deg, rgba(59,130,246,0.1), rgba(6,182,212,0.05));
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    padding: 4.5rem 0;
    position: relative;
}
.cta-section h2 { color: #fff; }
.cta-section p { color: var(--text-secondary); }

/* ============ BLOG CARD ============ */
.blog-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    height: 100%;
}
.blog-card:hover {
    border-color: rgba(251,106,33,0.3);
    transform: translateY(-5px);
    box-shadow: 0 0 30px rgba(251,106,33,0.1);
}
.blog-card .card-body { padding: 1.5rem; }
.blog-card .category-badge {
    display: inline-block;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.blog-card h5 { font-weight: 700; font-size: 1.05rem; line-height: 1.4; }
.blog-card h5 a { color: var(--text-heading) !important; text-decoration: none; }
.blog-card h5 a:hover { color: var(--accent) !important; }
.blog-card p { color: var(--text-muted); font-size: 0.88rem; }

/* ============ PAGE HEADER ============ */
.page-header {
    background: var(--bg-section-alt);
    border-bottom: 1px solid var(--border-subtle);
    padding: 3rem 0;
}
.page-header h1 { font-size: 2rem; font-weight: 800; color: #fff; }
.page-header .breadcrumb { margin-bottom: 0; }
.page-header .breadcrumb-item a { color: var(--text-muted); text-decoration: none; }
.page-header .breadcrumb-item a:hover { color: var(--accent); }
.page-header .breadcrumb-item.active { color: var(--text-secondary); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: var(--text-muted); }

/* ============ FORMS ============ */
.form-control, .form-select {
    background: var(--bg-input);
    border: 1.5px solid var(--border-color);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 0.7rem 1rem;
    font-size: 0.92rem;
    transition: var(--transition);
}
.form-control:focus, .form-select:focus {
    background: var(--bg-input);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px var(--accent-glow);
    color: var(--text-primary);
}
.form-control::placeholder { color: var(--text-muted); }
.form-select option { background: var(--bg-card); color: var(--text-primary); }
.form-label { color: var(--text-secondary); font-size: 0.9rem; }
.form-check-input {
    background-color: var(--bg-input);
    border-color: var(--border-color);
}
.form-check-input:checked { background-color: var(--accent); border-color: var(--accent); }
.form-check-label { color: var(--text-secondary); }

/* ============ CARDS (generic) ============ */
.card-hover {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    box-shadow: none;
    transition: var(--transition);
}
.card-hover:hover { border-color: rgba(59,130,246,0.2); }

/* ============ FAQ ============ */
.faq-accordion .accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--border-color) !important;
    border-radius: var(--radius) !important;
    margin-bottom: 0.75rem;
    overflow: hidden;
}
.faq-accordion .accordion-button {
    background: var(--bg-card);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 1.1rem 1.3rem;
    box-shadow: none;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: var(--bg-card-hover);
    color: var(--accent);
}
.faq-accordion .accordion-button::after { filter: invert(0.6); }
.faq-accordion .accordion-body { padding: 0 1.3rem 1.3rem; color: var(--text-secondary); }

/* ============ ALERTS ============ */
.alert { border-radius: var(--radius-sm); border: none; font-size: 0.9rem; }
.alert-success { background: rgba(16,185,129,0.12); color: var(--green); }
.alert-danger { background: rgba(239,68,68,0.12); color: var(--red); }
.alert-warning { background: rgba(245,158,11,0.12); color: var(--orange); }
.alert-info { background: rgba(59,130,246,0.12); color: var(--accent); }
.btn-close { filter: invert(0.5); }

/* ============ TABLES ============ */
.table { color: var(--text-secondary); }
.table thead th {
    background: var(--bg-section-alt);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: var(--border-color);
    padding: 0.85rem 1rem;
}
.table td { border-color: var(--border-color); padding: 0.85rem 1rem; vertical-align: middle; font-size: 0.9rem; }
.table-borderless td, .table-borderless th { border: none; }

/* ============ BADGES ============ */
.badge.bg-success { background: rgba(16,185,129,0.15) !important; color: var(--green) !important; }
.badge.bg-warning { background: rgba(245,158,11,0.15) !important; color: var(--orange) !important; }
.badge.bg-danger { background: rgba(239,68,68,0.15) !important; color: var(--red) !important; }
.badge.bg-info { background: rgba(59,130,246,0.15) !important; color: var(--accent) !important; }
.badge.bg-secondary { background: rgba(100,116,139,0.15) !important; color: var(--text-muted) !important; }
.badge.bg-primary { background: rgba(59,130,246,0.15) !important; color: var(--accent) !important; }
.badge.bg-light { background: rgba(255,255,255,0.06) !important; color: var(--text-secondary) !important; }

/* ============ USER PANEL ============ */
.user-sidebar {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    overflow: hidden;
}
.user-sidebar .list-group-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid var(--border-subtle);
    padding: 0.85rem 1.5rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: var(--transition-fast);
}
.user-sidebar .list-group-item:hover,
.user-sidebar .list-group-item.active {
    background: var(--accent-soft);
    color: var(--accent);
}
.user-sidebar .list-group-item.active { border-left: 3px solid var(--accent); }
.user-sidebar .list-group-item i { width: 24px; }

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    transition: var(--transition);
}
.dashboard-card:hover { border-color: rgba(59,130,246,0.2); }
.dashboard-card .icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* ============ ADMIN CARD (used in user panel too) ============ */
.admin-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}
.admin-table { font-size: 0.88rem; color: var(--text-secondary); }
.admin-table thead th {
    background: var(--bg-section-alt);
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-color: var(--border-color);
    padding: 0.8rem;
}
.admin-table td { border-color: var(--border-color); padding: 0.8rem; vertical-align: middle; }

/* ============ FOOTER ============ */
.footer {
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
    font-size: 0.9rem;
    padding-top: 4rem;
    padding-bottom: 1.5rem;
}
.footer h5, .footer h6 { color: var(--text-heading); }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition-fast);
    font-size: 0.88rem;
}
.footer-links a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
    border-top: 1px solid var(--border-subtle);
    margin-top: 2.5rem;
    padding-top: 1.5rem;
}

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 56px;
    height: 56px;
    background: #25d366;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 24px rgba(37,211,102,0.35);
    z-index: 9999;
    transition: var(--transition);
}
.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    color: white;
    box-shadow: 0 8px 30px rgba(37,211,102,0.5);
}

/* ============ SCROLL TOP ============ */
.scroll-top-btn {
    position: fixed;
    bottom: 95px;
    right: 32px;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: 1.1rem;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 9998;
    transition: var(--transition);
}
.scroll-top-btn.visible { display: flex; }
.scroll-top-btn:hover { background: var(--brand-orange); color: #fff; border-color: var(--brand-orange); transform: translateY(-2px); }

/* ============ CONTENT AREA ============ */
.content-area { color: var(--text-secondary); line-height: 1.8; }
.content-area h2, .content-area h3, .content-area h4 { color: var(--text-heading); margin-top: 1.5rem; margin-bottom: 0.75rem; }
.content-area p { margin-bottom: 1rem; }
.content-area ul, .content-area ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-area li { margin-bottom: 0.3rem; }
.content-area a { color: var(--accent); }
.content-area strong { color: var(--text-primary); }

/* ============ MISC ============ */
.bg-primary { background: var(--accent) !important; }
.text-primary { color: var(--accent) !important; }
.text-muted { color: var(--text-muted) !important; }
.text-dark { color: var(--text-primary) !important; }
.bg-light { background: var(--bg-section-alt) !important; }
.bg-light-custom { background: var(--bg-section-alt); }
.border-top { border-color: var(--border-subtle) !important; }
.border-bottom { border-color: var(--border-subtle) !important; }
.bg-opacity-10 { --bs-bg-opacity: 0.08; }

.bg-success { background: rgba(16,185,129,0.12) !important; }
.bg-info { background: rgba(59,130,246,0.12) !important; }
.bg-warning { background: rgba(245,158,11,0.12) !important; }
.text-success { color: var(--green) !important; }
.text-info { color: var(--cyan) !important; }
.text-warning { color: var(--orange) !important; }
.text-danger { color: var(--red) !important; }

/* ============ ANIMATIONS ============ */
.fade-in { animation: fadeIn 0.6s ease-out; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99998;
    background: var(--bg-card);
    border-top: 1px solid var(--border-color);
    padding: 1rem 0;
    box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
    animation: slideUp 0.4s ease-out;
}
.cookie-consent p {
    font-size: 0.84rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}
.cookie-consent p i { color: var(--accent); }
.cookie-consent a { color: var(--accent); font-weight: 600; text-decoration: underline; }
.cookie-consent a:hover { color: var(--accent-hover); }
.btn-cookie-accept {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: var(--radius-sm);
    padding: 0.45rem 1.3rem;
    font-size: 0.82rem;
    font-weight: 600;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-cookie-accept:hover { background: var(--accent-hover); color: #fff; }
.btn-cookie-dismiss {
    background: transparent;
    border: 1px solid var(--border-color);
    color: var(--text-muted);
    border-radius: var(--radius-sm);
    padding: 0.45rem 0.65rem;
    font-size: 0.82rem;
    transition: var(--transition);
}
.btn-cookie-dismiss:hover { border-color: var(--text-muted); color: var(--text-secondary); }
@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ============ PARTNERS ============ */
.partners-section {
    padding: 4rem 0;
    background: var(--bg-section-alt);
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    overflow: hidden;
}
.partners-slider {
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    margin-top: 1rem;
}
.partners-track {
    display: flex;
    gap: 1.5rem;
    animation: partnerScroll 30s linear infinite;
    width: max-content;
}
.partner-logo {
    flex-shrink: 0;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    height: 70px;
    transition: var(--transition);
}
.partner-logo:hover {
    border-color: rgba(59,130,246,0.3);
    background: var(--bg-card-hover);
}
.partner-logo span {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: -0.3px;
    white-space: nowrap;
    transition: var(--transition);
}
.partner-logo img {
    max-height: 40px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: grayscale(100%) brightness(0.7);
    opacity: 0.6;
    transition: var(--transition);
}
.partner-logo:hover span { color: var(--text-primary); }
.partner-logo:hover img { filter: grayscale(0%) brightness(1); opacity: 1; }
a.partner-logo { text-decoration: none; }
@keyframes partnerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ============ PAGINATION ============ */
.pagination .page-link {
    background: var(--bg-card);
    border-color: var(--border-color);
    color: var(--text-secondary);
    border-radius: var(--radius-sm);
    margin: 0 2px;
    font-size: 0.88rem;
}
.pagination .page-link:hover { background: rgba(251,106,33,0.08); border-color: var(--brand-orange); color: var(--brand-orange); }
.pagination .page-item.active .page-link { background: var(--accent); border-color: var(--accent); color: #fff; }

/* ============ RESPONSIVE ============ */
@media (max-width: 991.98px) {
    .hero-section { padding: 3.5rem 0; }
    .hero-section h1 { font-size: 2.2rem; }
    .section-padding { padding: 3.5rem 0; }
    .section-title { font-size: 1.7rem; }
    .stat-card .stat-number { font-size: 2rem; }
    .hero-features { flex-wrap: wrap; gap: 1rem; }
    .navbar .collapse { background: var(--bg-card); border-radius: var(--radius); margin-top: 0.5rem; padding: 1rem; border: 1px solid var(--border-color); }
}
@media (max-width: 767.98px) {
    .hero-section h1 { font-size: 1.8rem; }
    .hero-section .lead { font-size: 0.95rem; }
    .whatsapp-float { width: 48px; height: 48px; font-size: 1.4rem; bottom: 20px; right: 20px; border-radius: 14px; }
    .scroll-top-btn { bottom: 78px; right: 24px; }
    .hero-features .hf-item { font-size: 0.78rem; }
}
