/* ========================================
   CSS VARIABLES & RESET
======================================== */

:root {
    /* Z-index layers */
    --z-base: 1;
    --z-content: 10;
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;

    /* Colors */
    --color-primary: #30b74b;
    --color-primary-dark: #1db94f;
    --color-primary-light: #4cd964;
    --color-secondary: #6366f1;
    --color-accent: #f59e0b;
    
    --color-bg: #ffffff;
    --color-bg-secondary: #fafafa;
    --color-bg-tertiary: #f5f5f5;
    
    --color-text: #0a0a0a;
    --color-text-secondary: #6a6a6a;
    --color-text-tertiary: #9a9a9a;
    
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
    --gradient-secondary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #ec4899 100%);
    --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'Fira Code', 'Courier New', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 0.75rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    /* Borders */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1), 0 10px 10px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 250ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 350ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Dark Mode Variables */
@media (prefers-color-scheme: dark) {
    :root {
        --color-bg: #0a0a0a;
        --color-bg-secondary: #1a1a1a;
        --color-bg-tertiary: #2a2a2a;
        
        --color-text: #ffffff;
        --color-text-secondary: #a0a0a0;
        --color-text-tertiary: #6a6a6a;
        
        --color-border: #2a2a2a;
        --color-border-light: #1a1a1a;
    }
}

/* Reset & Base Styles */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-primary);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
    transition: var(--transition-base);
}

ul, ol {
    list-style: none;
}

/* ========================================
   NAVIGATION - COMPLETE & WORKING
   ======================================== */

/* Navbar Container */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1030;
    background: #1a1a1a;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.08);
}

/* Nav Container */
.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    position: relative;
}

/* Logo */
.nav-logo {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
    z-index: 10002;
    position: relative;
    white-space: nowrap;
}

.nav-logo:hover {
    color: #30b74b;
    transform: translateY(-1px);
}

/* Desktop Navigation Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 600;
    color: #6a6a6a;
    text-decoration: none;
    position: relative;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    display: inline-block;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #30b74b, #1db94f);
    transition: width 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-radius: 2px;
}

.nav-link:hover,
.nav-link.active {
    color: #30b74b;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Desktop CTA Button */
.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(48, 183, 75, 0.25);
    white-space: nowrap;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(48, 183, 75, 0.35);
    background: linear-gradient(135deg, #1db94f 0%, #30b74b 100%);
}

.nav-cta:active {
    transform: translateY(0);
}

.nav-cta i {
    font-size: 0.875rem;
    transition: transform 0.3s ease;
}

.nav-cta:hover i {
    transform: translateX(4px);
}

/* ========================================
   HAMBURGER MENU BUTTON
   ======================================== */

.hamburger-menu {
    display: none;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: transparent;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    padding: 0;
    z-index: 10002;
    position: relative;
    transition: all 0.3s ease;
}

.hamburger-menu:hover {
    background: rgba(48, 183, 75, 0.08);
}

.hamburger-menu:active {
    transform: scale(0.95);
}

.hamburger-menu i {
    font-size: 24px;
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    display: block;
}

.hamburger-menu:hover i {
    color: #30b74b;
}

/* Hamburger Active State */
.hamburger-menu.active i::before {
    content: "\f00d"; /* Font Awesome X icon */
    color: #30b74b;
}

.hamburger-menu.active {
    background: rgba(48, 183, 75, 0.12);
}

/* ========================================
   MOBILE SIDEBAR
   ======================================== */

.mobile-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 50px rgba(0, 0, 0, 0.15);
    z-index: 10001;
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.mobile-sidebar.active {
    right: 0;
}

/* Custom Scrollbar */
.mobile-sidebar::-webkit-scrollbar {
    width: 6px;
}

.mobile-sidebar::-webkit-scrollbar-track {
    background: #fafafa;
}

.mobile-sidebar::-webkit-scrollbar-thumb {
    background: #30b74b;
    border-radius: 3px;
}

.mobile-sidebar::-webkit-scrollbar-thumb:hover {
    background: #1db94f;
}

/* Sidebar Header */
.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    position: sticky;
    top: 0;
    z-index: 10;
}

.sidebar-logo {
    font-weight: 800;
    font-size: 1.375rem;
    letter-spacing: -0.02em;
    color: #0a0a0a;
}

.close-sidebar {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #30b74b, #1db94f);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.25rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(48, 183, 75, 0.3);
}

.close-sidebar:hover {
    background: linear-gradient(135deg, #1db94f, #30b74b);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 16px rgba(48, 183, 75, 0.4);
}

.close-sidebar:active {
    transform: rotate(90deg) scale(0.95);
}

/* Sidebar Navigation Links */
.sidebar-links {
    display: flex;
    flex-direction: column;
    padding: 1.5rem 0;
    flex: 1;
    gap: 0.25rem;
}

.sidebar-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.5rem;
    text-decoration: none;
    color: #0a0a0a;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
    position: relative;
    margin: 0 0.5rem;
    border-radius: 0 12px 12px 0;
}

.sidebar-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(48, 183, 75, 0.1) 0%, 
        rgba(48, 183, 75, 0.05) 50%,
        transparent 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
    border-radius: 0 12px 12px 0;
}

.sidebar-link:hover::before,
.sidebar-link.active::before {
    width: 100%;
}

.sidebar-link:hover,
.sidebar-link.active {
    color: #30b74b;
    border-left-color: #30b74b;
    padding-left: 2rem;
}

.sidebar-link i {
    font-size: 1.25rem;
    width: 24px;
    min-width: 24px;
    color: #30b74b;
    transition: transform 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.sidebar-link:hover i {
    transform: scale(1.2) rotate(5deg);
}

.sidebar-link span {
    flex: 1;
}

/* Sidebar CTA */
.sidebar-cta {
    margin: 1.5rem;
    padding: 1.125rem 1.5rem;
    background: linear-gradient(135deg, #30b74b 0%, #1db94f 100%);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-align: center;
    text-decoration: none;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    box-shadow: 0 8px 20px rgba(48, 183, 75, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.sidebar-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.sidebar-cta:hover::before {
    left: 100%;
}

.sidebar-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(48, 183, 75, 0.4);
}

.sidebar-cta:active {
    transform: translateY(-1px);
}

.sidebar-cta i {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.sidebar-cta:hover i {
    transform: translateX(4px);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ========================================
   RESPONSIVE BREAKPOINTS
   ======================================== */

/* Tablet & Mobile (1024px and below) */
@media (max-width: 1024px) {
    .nav-menu,
    .nav-cta {
        display: none;
    }

    .hamburger-menu {
        display: flex;
    }
}

/* Tablet (768px) */
@media (max-width: 768px) {
    .nav-container {
        padding: 1rem 1.5rem;
    }

    .nav-logo {
        font-size: 1.375rem;
    }

    .mobile-sidebar {
        width: 100%;
        max-width: 100%;
    }

    .hamburger-menu {
        width: 44px;
        height: 44px;
    }

    .hamburger-menu i {
        font-size: 22px;
    }
}

/* Mobile (480px) */
@media (max-width: 480px) {
    .nav-container {
        padding: 0.875rem 1rem;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .sidebar-link {
        padding: 1rem 1.25rem;
        font-size: 0.9375rem;
    }

    .sidebar-cta {
        margin: 1rem;
        padding: 1rem;
        font-size: 0.9375rem;
    }

    .close-sidebar {
        width: 44px;
        height: 44px;
    }

    .hamburger-menu {
        width: 40px;
        height: 40px;
    }
}

/* ========================================
   ACCESSIBILITY & PERFORMANCE
   ======================================== */

/* Focus States for Keyboard Navigation */
.nav-link:focus-visible,
.sidebar-link:focus-visible,
.nav-cta:focus-visible,
.sidebar-cta:focus-visible,
.hamburger-menu:focus-visible,
.close-sidebar:focus-visible {
    outline: 3px solid rgba(48, 183, 75, 0.5);
    outline-offset: 3px;
    border-radius: 4px;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .mobile-sidebar,
    .sidebar-overlay,
    .hamburger-menu {
        display: none !important;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .navbar {
        border-bottom: 2px solid #0a0a0a;
    }

    .nav-link,
    .sidebar-link {
        font-weight: 700;
    }
}



/* ========================================
   HERO SECTION - FIXED TO BE VISIBLE
======================================== */

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex !important; /* FORCE DISPLAY */
    align-items: center;
    justify-content: center;
    padding: 8rem 2rem 4rem;
    overflow: hidden;
    background: var(--color-bg); /* ENSURE BACKGROUND */
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(var(--color-border-light) 1px, transparent 1px),
        linear-gradient(90deg, var(--color-border-light) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.5;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(48, 183, 75, 0.05) 0%, 
        transparent 70%);
}

.hero-content {
    max-width: 900px;
    text-align: center;
    position: relative;
    z-index: 10;
    opacity: 1 !important; /* FORCE VISIBLE */
    transform: none !important; /* FORCE VISIBLE */
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 500;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.2); }
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 1.5rem;
}

.title-line {
    display: block;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: var(--text-xl);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: var(--text-3xl);
    font-weight: 800;
    color: var(--color-text);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

.hero-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 10;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: var(--color-text-tertiary);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { transform: translateY(0); opacity: 0; }
    50% { transform: translateY(20px); opacity: 1; }
}

/* ========================================
   BUTTONS
======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: var(--text-base);
    font-weight: 600;
    border-radius: var(--radius-full);
    transition: var(--transition-base);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: 0 4px 12px rgba(48, 183, 75, 0.2);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(48, 183, 75, 0.3);
}

.btn-secondary {
    background: var(--color-bg-tertiary);
    color: var(--color-text);
    border: 1px solid var(--color-border);
}

.btn-secondary:hover {
    background: var(--color-border);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-border);
}

.btn-outline:hover {
    border-color: var(--color-primary);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: var(--text-lg);
}

.btn i {
    font-size: 0.875em;
    transition: var(--transition-base);
}

.btn:hover i {
    transform: translateX(4px);
}

/* ========================================
   SECTION STYLES - FORCE VISIBLE
======================================== */

section {
    padding: var(--space-5xl) 2rem;
    position: relative;
    background: var(--color-bg);
    display: block !important; /* FORCE DISPLAY */
    opacity: 1 !important; /* FORCE VISIBLE */
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-4xl);
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 1rem;
}

.section-description {
    font-size: var(--text-lg);
    color: var(--color-text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

/* FORCE ALL CONTENT TO BE VISIBLE BY DEFAULT */
[data-fade-in],
[data-service-card],
[data-process-step],
[data-faq-item] {
    opacity: 1 !important;
    transform: none !important;
}

/* ========================================
   ENHANCED SERVICES SECTION
   ======================================== */

   .services-section {
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

/* Subtle background pattern */
.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(48, 183, 75, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 1;
}

/* Enhanced Service Card */
.service-card-enhanced {
    background: var(--color-bg);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    opacity: 0;
    transform: translateY(30px);
}

.service-card-enhanced.visible {
    opacity: 1;
    transform: translateY(0);
}

.service-card-enhanced:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

/* Image Wrapper with Gradient Background */
.service-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.service-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-enhanced:hover .service-image {
    transform: scale(1.05);
}

/* SVG Illustration Animation */
.service-illustration {
    width: 100%;
    height: 100%;
    max-width: 200px;
    opacity: 0.9;
    transition: all 0.6s ease;
}

.service-card-enhanced:hover .service-illustration {
    opacity: 1;
    transform: scale(1.1) rotate(2deg);
}

/* Service Number Badge */
.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--color-text);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.4s ease;
}

.service-card-enhanced:hover .service-number {
    transform: scale(1.1) rotate(360deg);
    background: var(--color-primary);
    color: white;
}

/* Content Area */
.service-content-enhanced {
    padding: 2rem;
}

.service-title-enhanced {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text);
    transition: color 0.3s ease;
}

.service-card-enhanced:hover .service-title-enhanced {
    color: var(--color-primary);
}

.service-description-enhanced {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

/* Features List */
.service-features-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.service-features-enhanced li {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    padding-left: 1.5rem;
    position: relative;
    transition: all 0.3s ease;
}

.service-features-enhanced li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: var(--color-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.service-card-enhanced:hover .service-features-enhanced li::before {
    width: 8px;
    height: 8px;
    box-shadow: 0 0 8px var(--color-primary);
}

.service-card-enhanced:hover .service-features-enhanced li {
    color: var(--color-text);
    padding-left: 1.75rem;
}

/* Enhanced Link */
.service-link-enhanced {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--color-primary);
    padding: 0.75rem 0;
    transition: all 0.3s ease;
    position: relative;
}

.service-link-enhanced::after {
    content: '';
    position: absolute;
    bottom: 0.5rem;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.service-link-enhanced:hover::after {
    width: calc(100% - 24px);
}

.service-link-enhanced svg {
    transition: transform 0.3s ease;
}

.service-link-enhanced:hover svg {
    transform: translateX(6px);
}

/* Stagger Animation */
.service-card-enhanced:nth-child(1) {
    transition-delay: 0.1s;
}

.service-card-enhanced:nth-child(2) {
    transition-delay: 0.2s;
}

.service-card-enhanced:nth-child(3) {
    transition-delay: 0.3s;
}

.service-card-enhanced:nth-child(4) {
    transition-delay: 0.4s;
}

.service-card-enhanced:nth-child(5) {
    transition-delay: 0.5s;
}

.service-card-enhanced:nth-child(6) {
    transition-delay: 0.6s;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .services-grid-enhanced {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 2rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
}

@media (max-width: 768px) {
    .services-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
    
    .service-content-enhanced {
        padding: 1.5rem;
    }
    
    .service-features-enhanced {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .service-card-enhanced {
        background: var(--color-bg-tertiary);
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    }
    
    .service-card-enhanced:hover {
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    }
    
    .service-number {
        background: rgba(26, 26, 26, 0.95);
        color: white;
    }
}


/* ========================================
   ALL OTHER SECTIONS CONTINUE...
   (Process, Tech, Pricing, Testimonials, FAQ, CTA, Footer)
======================================== */

/* Process Section */
.process-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 2rem;
    padding: 2rem 0;
}

.process-number {
    font-size: var(--text-4xl);
    font-weight: 900;
    color: var(--color-border);
}

.process-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 16px rgba(48, 183, 75, 0.2);
}

.process-icon i {
    font-size: var(--text-2xl);
    color: white;
}

.process-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 1rem;
}

.process-description {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.process-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
}

.process-list li {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    padding-left: 1.5rem;
    position: relative;
}

.process-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: 700;
}

.process-line {
    position: absolute;
    left: 40px;
    top: 100%;
    width: 2px;
    height: 100%;
    background: var(--color-border-light);
}

.process-step:last-child .process-line {
    display: none;
}

/* Tech Stack */
.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tech-category {
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 2rem;
    transition: var(--transition-base);
}

.tech-category:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.tech-category-title {
    font-size: var(--text-xl);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.tech-items {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--color-bg-tertiary);
    border-radius: var(--radius-lg);
    font-size: var(--text-sm);
    font-weight: 500;
    transition: var(--transition-base);
}

.tech-item:hover {
    background: var(--color-primary);
    color: white;
    transform: scale(1.05);
}

.tech-item i {
    font-size: var(--text-lg);
}

/* Pricing */
.pricing-section {
    background: var(--color-bg-secondary);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: var(--color-bg);
    border: 2px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 3rem 2rem;
    transition: var(--transition-base);
}

.pricing-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.5rem 1.5rem;
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-subtitle {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
}

.price-currency {
    font-size: var(--text-2xl);
    font-weight: 700;
    vertical-align: super;
}

.price-amount {
    font-size: var(--text-5xl);
    font-weight: 900;
}

.price-period {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: var(--text-sm);
    border-bottom: 1px solid var(--color-border-light);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features li.disabled {
    color: var(--color-text-tertiary);
}

.pricing-features .fa-check {
    color: var(--color-success);
}

.pricing-features .fa-times {
    color: var(--color-text-tertiary);
}

.pricing-btn {
    width: 100%;
    justify-content: center;
}

/* Testimonials */
.testimonials-slider {
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.testimonials-track {
    display: flex;
    gap: 2rem;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: calc(100% - 4rem);
    background: var(--color-bg);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 3rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #f59e0b;
}

.testimonial-text {
    font-size: var(--text-lg);
    line-height: 1.8;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-size: var(--text-base);
    font-weight: 700;
}

.author-role {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.slider-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.slider-btn {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    transition: var(--transition-base);
}

.slider-btn:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
}

.slider-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.slider-dot {
    width: 8px;
    height: 8px;
    background: var(--color-border);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition-base);
}

.slider-dot.active {
    width: 24px;
    background: var(--color-primary);
    border-radius: var(--radius-full);
}

/* FAQ */
.faq-grid {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    font-size: var(--text-lg);
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    transition: var(--transition-base);
}

.faq-question:hover {
    color: var(--color-primary);
}

.faq-icon {
    font-size: var(--text-base);
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--color-primary);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 0 1.5rem 0;
    font-size: var(--text-base);
    line-height: 1.7;
    color: var(--color-text-secondary);
}

/* CTA */
.cta-section {
    position: relative;
    padding: var(--space-5xl) 2rem;
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    z-index: 0;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
    color: white;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.cta-description {
    font-size: var(--text-xl);
    line-height: 1.7;
    opacity: 0.9;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta-section .btn-primary {
    background: white;
    color: var(--color-primary);
}

.cta-section .btn-outline {
    border-color: white;
    color: white;
}

.cta-section .btn-outline:hover {
    background: white;
    color: var(--color-primary);
}

/* Footer */
.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid var(--color-border);
    padding: var(--space-4xl) 2rem var(--space-2xl);
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr repeat(3, 1fr);
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    font-size: var(--text-2xl);
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-description {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-social {
    display: flex;
    gap: 0.75rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-bg-tertiary);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.footer-social a:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

.footer-title {
    font-size: var(--text-base);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.footer-contact i {
    color: var(--color-primary);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border);
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    font-size: var(--text-sm);
    color: var(--color-text-secondary);
    transition: var(--transition-base);
}

.footer-legal a:hover {
    color: var(--color-primary);
}

/* ========================================
   RESPONSIVE DESIGN
======================================== */

@media (max-width: 1024px) {
    section {
        padding: var(--space-4xl) 1.5rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }
    
    .process-step {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .process-line {
        display: none;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: none;
    }
    
    .testimonial-card {
        min-width: 100%;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-divider {
        width: 40px;
        height: 1px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-list {
        grid-template-columns: 1fr;
    }
    
    .tech-grid {
        grid-template-columns: 1fr;
    }
}
/* ========================================
   SERVICES SECTION - MOBILE RESPONSIVE FIX
======================================== */

/* Tablets - 1024px */
@media (max-width: 1024px) {
    .services-section {
        padding: 4rem 1.5rem;
    }
    
    .services-grid-enhanced {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .service-image-wrapper {
        height: 200px;
    }
    
    .service-content-enhanced {
        padding: 1.75rem;
    }
    
    .service-features-enhanced {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
}

/* Tablets - 768px */
@media (max-width: 768px) {
    .services-section {
        padding: 3rem 1.25rem;
    }
    
    /* Single column layout for mobile */
    .services-grid-enhanced {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    
    .service-card-enhanced {
        width: 100%;
        max-width: 100%;
        margin: 0 auto;
    }
    
    .service-image-wrapper {
        height: 220px;
    }
    
    .service-content-enhanced {
        padding: 1.5rem;
    }
    
    .service-title-enhanced {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .service-description-enhanced {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1.25rem;
    }
    
    .service-features-enhanced {
        grid-template-columns: 1fr;
        gap: 0.5rem;
        margin-bottom: 1.25rem;
    }
    
    .service-features-enhanced li {
        font-size: 0.8125rem;
        padding-left: 1.25rem;
    }
    
    .service-number {
        width: 45px;
        height: 45px;
        font-size: 1rem;
        top: 1.25rem;
        right: 1.25rem;
    }
    
    /* Adjust hover effects for mobile - make them less dramatic */
    .service-card-enhanced:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
    }
}

/* Mobile - 480px */
@media (max-width: 480px) {
    .services-section {
        padding: 2.5rem 1rem;
    }
    
    .section-header {
        margin-bottom: 2rem;
    }
    
    .section-label {
        font-size: 0.75rem;
        padding: 0.4rem 0.85rem;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .section-description {
        font-size: 0.9375rem;
        padding: 0 0.5rem;
    }
    
    .services-grid-enhanced {
        gap: 1.25rem;
    }
    
    .service-card-enhanced {
        border-radius: 1rem;
    }
    
    .service-image-wrapper {
        height: 180px;
    }
    
    .service-illustration {
        max-width: 160px;
    }
    
    .service-content-enhanced {
        padding: 1.25rem;
    }
    
    .service-title-enhanced {
        font-size: 1.125rem;
    }
    
    .service-description-enhanced {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .service-features-enhanced {
        margin-bottom: 1rem;
    }
    
    .service-features-enhanced li {
        font-size: 0.75rem;
        padding: 0.5rem 0 0.5rem 1rem;
    }
    
    .service-features-enhanced li::before {
        width: 5px;
        height: 5px;
    }
    
    .service-link-enhanced {
        font-size: 0.875rem;
        padding: 0.5rem 0;
    }
    
    .service-number {
        width: 40px;
        height: 40px;
        font-size: 0.9375rem;
        top: 1rem;
        right: 1rem;
    }
    
    /* Disable hover effects on mobile */
    .service-card-enhanced:hover {
        transform: none;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    }
    
    .service-card-enhanced:hover .service-number {
        transform: none;
        background: rgba(255, 255, 255, 0.95);
        color: var(--color-text);
    }
    
    .service-card-enhanced:hover .service-illustration {
        transform: none;
    }
    
    .service-card-enhanced:hover .service-image {
        transform: none;
    }
}

/* Extra Small - 375px */
@media (max-width: 375px) {
    .services-section {
        padding: 2rem 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 0.875rem;
    }
    
    .service-image-wrapper {
        height: 160px;
    }
    
    .service-illustration {
        max-width: 140px;
    }
    
    .service-content-enhanced {
        padding: 1rem;
    }
    
    .service-title-enhanced {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .service-description-enhanced {
        font-size: 0.75rem;
        margin-bottom: 0.875rem;
    }
    
    .service-features-enhanced li {
        font-size: 0.6875rem;
        padding: 0.4rem 0 0.4rem 0.875rem;
    }
    
    .service-link-enhanced {
        font-size: 0.8125rem;
    }
    
    .service-number {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .services-grid-enhanced {
        padding: 0 0.5rem;
    }
    
    .service-image-wrapper {
        height: 140px;
    }
    
    .service-content-enhanced {
        padding: 0.875rem;
    }
}

