/* ==========================================================================
   FINZO TECH SOLUTIONS - Crazy-Level Futuristic Dark/Glassmorphism Design System
   Next-Gen Digital, IT & E-Commerce Engineering
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* CSS Variables - Cyber Obsidian & Neon Glow System */
:root {
    --bg-dark: #070913;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --bg-glass: rgba(13, 17, 36, 0.75);
    
    --primary-gradient: linear-gradient(135deg, #00F2FE 0%, #4FACFE 100%);
    --secondary-gradient: linear-gradient(135deg, #7F00FF 0%, #E100FF 100%);
    --gold-gradient: linear-gradient(135deg, #FFD700 0%, #FF8C00 100%);
    --emerald-gradient: linear-gradient(135deg, #00DF89 0%, #007E4E 100%);
    --cyber-gradient: linear-gradient(135deg, #00F2FE 0%, #4FACFE 50%, #E100FF 100%);

    --primary-color: #00F2FE;
    --primary-dark: #0080FF;
    --secondary-color: #E100FF;
    --accent-gold: #FFD700;
    --accent-emerald: #00DF89;
    
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --text-silver: #cbe1ff;
    --border-glass: rgba(255, 255, 255, 0.1);
    --border-glow: rgba(0, 242, 254, 0.4);

    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
    
    --border-radius-sm: 10px;
    --border-radius: 16px;
    --border-radius-lg: 24px;
    --border-radius-xl: 32px;
    
    --box-shadow-glow: 0 0 35px rgba(0, 242, 254, 0.2);
    --box-shadow-gold: 0 0 35px rgba(255, 215, 0, 0.25);
    --box-shadow-purple: 0 0 35px rgba(225, 0, 255, 0.2);
    --box-shadow-card: 0 15px 35px rgba(0, 0, 0, 0.5);
    
    --transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-primary);
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-main);
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(0, 242, 254, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(225, 0, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(13, 17, 36, 0.9) 0%, var(--bg-dark) 100%);
    background-attachment: fixed;
    overflow-x: hidden;
}

/* Custom Cyber Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #070913;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #00F2FE, #7F00FF);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #4FACFE, #E100FF);
}

/* Typography & Headings */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-main);
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.75rem; font-weight: 800; }
h2 { font-size: 2.85rem; font-weight: 700; }
h3 { font-size: 2.1rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    color: var(--text-muted);
    margin-bottom: 1rem;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: #4FACFE;
    text-decoration: none;
}

/* Utility Gradients & Highlights */
.gradient-text {
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-gold {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.gradient-purple {
    background: var(--secondary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #070913;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid rgba(0, 242, 254, 0.2);
    border-top-color: #00F2FE;
    border-radius: 50%;
    animation: spin 1s infinite linear;
    margin: 20px auto 0;
}
@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Scroll To Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary-gradient);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--box-shadow-glow);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 9999;
}
.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}
.scroll-to-top:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.6);
}

/* ==========================================================================
   Header & Glassmorphism Navigation
   ========================================================================== */
.top-bar {
    background: rgba(7, 9, 19, 0.95);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.top-bar-left ul {
    list-style: none;
    display: flex;
    gap: 24px;
    margin: 0;
    padding: 0;
}
.top-bar-left ul li {
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-left ul li i {
    color: var(--primary-color);
}
.top-bar-left ul li a {
    color: var(--text-muted);
}
.top-bar-left ul li a:hover {
    color: var(--primary-color);
}
.top-bar-buttons .btn {
    font-weight: 600;
    font-size: 0.8rem;
    padding: 6px 14px;
    border-radius: 8px;
}

.site-header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(13, 17, 36, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-glass);
    transition: var(--transition);
}
.site-header.scrolled {
    background: rgba(7, 9, 19, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.navbar-brand img {
    height: 48px;
    transition: var(--transition);
}
.navbar-nav .nav-link {
    color: var(--text-main) !important;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.95rem;
    padding: 10px 16px !important;
    position: relative;
    transition: var(--transition);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
}
.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 16px;
    right: 16px;
    height: 2px;
    background: var(--primary-gradient);
    transform: scaleX(0);
    transition: var(--transition);
}
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

/* Dropdown Menu Glassmorphism */
.dropdown-menu {
    background: rgba(13, 17, 36, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow-card);
    padding: 12px;
}
.dropdown-item {
    color: var(--text-silver);
    border-radius: 8px;
    padding: 10px 14px;
    font-weight: 500;
    transition: var(--transition);
}
.dropdown-item:hover {
    background: rgba(0, 242, 254, 0.1);
    color: var(--primary-color);
}
.dropdown-divider {
    border-color: rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Crazy-Level Buttons & Store CTA System
   ========================================================================== */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    padding: 12px 28px;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-primary, .btn-gradient {
    background: var(--primary-gradient);
    color: #070913 !important;
    box-shadow: var(--box-shadow-glow);
    font-weight: 700;
}
.btn-primary:hover, .btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(0, 242, 254, 0.5);
    color: #000 !important;
}

.btn-secondary-cyber {
    background: var(--secondary-gradient);
    color: #ffffff !important;
    box-shadow: var(--box-shadow-purple);
}
.btn-secondary-cyber:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 35px rgba(225, 0, 255, 0.6);
}

.btn-store {
    background: var(--gold-gradient);
    color: #070913 !important;
    font-weight: 800;
    border-radius: 12px;
    padding: 12px 28px;
    box-shadow: var(--box-shadow-gold);
    animation: storePulse 2.5s infinite;
}
.btn-store:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 45px rgba(255, 215, 0, 0.7);
    color: #000 !important;
}

@keyframes storePulse {
    0% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
    50% { box-shadow: 0 0 35px rgba(255, 215, 0, 0.6); }
    100% { box-shadow: 0 0 20px rgba(255, 215, 0, 0.3); }
}

.btn-outline-light {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-glass);
    color: var(--text-main) !important;
}
.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* ==========================================================================
   Hero & Glassmorphism Sections
   ========================================================================== */
.hero-section {
    position: relative;
    padding: 120px 0 100px;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: 
        radial-gradient(circle at 80% 20%, rgba(0, 242, 254, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(225, 0, 255, 0.15) 0%, transparent 40%),
        var(--bg-dark);
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    color: var(--primary-color);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    box-shadow: 0 0 20px rgba(0, 242, 254, 0.2);
}

/* Glassmorphism Card Components */
.glass-card, .service-card, .info-card, .contact-form-wrapper {
    background: var(--bg-card);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--border-glass);
    border-radius: var(--border-radius-lg);
    padding: 36px 30px;
    transition: var(--transition);
    box-shadow: var(--box-shadow-card);
    position: relative;
    overflow: hidden;
}
.glass-card:hover, .service-card:hover {
    background: var(--bg-card-hover);
    border-color: rgba(0, 242, 254, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 242, 254, 0.15);
}

/* Service Card Icons */
.service-icon {
    width: 76px;
    height: 76px;
    border-radius: 20px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: var(--transition);
}
.service-icon i {
    font-size: 32px;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    border-color: var(--primary-color);
    box-shadow: 0 0 25px rgba(0, 242, 254, 0.4);
}

/* ==========================================================================
   NEW: Finzo WooCommerce Store / E-Commerce Hub Section
   ========================================================================== */
.store-hub-section {
    position: relative;
    padding: 100px 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.08) 0%, transparent 60%),
        rgba(13, 17, 36, 0.4);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.store-hub-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.12);
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: var(--accent-gold);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.store-feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 215, 0, 0.15);
    border-radius: 20px;
    padding: 30px;
    height: 100%;
    transition: var(--transition);
}
.store-feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.15);
}
.store-feature-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(255, 215, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.store-feature-icon i {
    font-size: 28px;
    color: var(--accent-gold);
}

/* ==========================================================================
   Section Headers & Badges
   ========================================================================== */
.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}
.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 20px;
}

/* Stats Counter Section */
.stats-counter-box {
    background: var(--bg-card);
    border: 1px solid var(--border-glass);
    border-radius: 24px;
    padding: 40px 20px;
    text-align: center;
    transition: var(--transition);
}
.stats-counter-box:hover {
    border-color: var(--primary-color);
    box-shadow: var(--box-shadow-glow);
    transform: translateY(-5px);
}
.stats-counter-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--cyber-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
}

/* CTA Wrapper Section */
.cta-wrapper {
    background: 
        radial-gradient(circle at 10% 20%, rgba(0, 242, 254, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(225, 0, 255, 0.25) 0%, transparent 50%),
        linear-gradient(135deg, rgba(13, 17, 36, 0.95), rgba(7, 9, 19, 0.98));
    border: 1px solid rgba(0, 242, 254, 0.3);
    border-radius: var(--border-radius-xl);
    padding: 70px 50px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
}

/* ==========================================================================
   Footer Styling (Obsidian Space)
   ========================================================================== */
.site-footer {
    background: rgba(7, 9, 19, 0.98);
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-muted);
    position: relative;
    overflow: hidden;
}
.footer-top {
    padding: 80px 0 50px;
}
.footer-widget h5 {
    color: var(--text-main);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 12px;
}
.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: 2px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links li a {
    color: var(--text-muted);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}
.footer-links li a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-contact li {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}
.footer-contact .icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(0, 242, 254, 0.1);
    border: 1px solid rgba(0, 242, 254, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-bottom {
    background: #05070f;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 24px 0;
    font-size: 0.9rem;
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 991px) {
    h1 { font-size: 2.75rem; }
    h2 { font-size: 2.25rem; }
    .hero-section {
        padding: 90px 0 70px;
        text-align: center;
    }
    .hero-section .hero-buttons {
        justify-content: center;
    }
    .cta-wrapper {
        padding: 50px 24px;
    }
}

@media (max-width: 575px) {
    h1 { font-size: 2.25rem; }
    h2 { font-size: 1.85rem; }
    .glass-card, .service-card, .contact-form-wrapper {
        padding: 24px 20px;
    }
}