/* ===============================================
   Base Styles from Main Site
   =============================================== */

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

:root {
    /* Modern Edgy Color Palette */
    --primary-bg: #0a0a0a;
    --secondary-bg: #111111;
    --card-bg: rgba(18, 18, 18, 0.95);
    --accent-color: #00ff88;
    --accent-secondary: #ff0070;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --text-muted: #666666;
    --border-color: rgba(255, 255, 255, 0.1);
    --hover-bg: rgba(0, 255, 136, 0.1);
    
    /* Gradients */
    --gradient: linear-gradient(135deg, #00ff88 0%, #00d4aa 50%, #00b894 100%);
    --gradient-dark: linear-gradient(135deg, rgba(0, 255, 136, 0.2) 0%, rgba(0, 212, 170, 0.2) 50%, rgba(0, 184, 148, 0.2) 100%);
    --gradient-card: linear-gradient(135deg, rgba(18, 18, 18, 0.8) 0%, rgba(25, 25, 25, 0.9) 100%);
    
    /* Neon Effects */
    --neon-green: #00ff88;
    --neon-blue: #00d4ff;
    --neon-pink: #ff0070;
    --neon-purple: #8b5cf6;
    
    /* Box Shadows */
    --shadow-neon: 0 0 20px rgba(0, 255, 136, 0.5);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.6);
    --shadow-hover: 0 12px 40px rgba(0, 255, 136, 0.3);
}

body {
    background: var(--primary-bg);
    color: var(--text-primary);
    font-family: 'Inter', 'Segoe UI', system-ui, sans-serif;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

/* Add cyberpunk grid background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 255, 136, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 136, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
    z-index: -1;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo a {
    font-size: 24px;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    text-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:hover {
    color: var(--neon-green);
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: width 0.3s ease;
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link.active {
    color: var(--neon-green);
}

.nav-link.active::after {
    width: 100%;
}

/* Dropdown Menu */
.nav-dropdown {
    position: relative;
}

.dropdown-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(17, 17, 17, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 10px;
    padding: 10px 0;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    z-index: 1000;
    margin-top: 15px;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.dropdown-item:hover {
    color: var(--neon-green);
    background: rgba(0, 255, 136, 0.05);
    border-left-color: var(--neon-green);
    padding-left: 25px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    background: none;
    border: none;
    padding: 5px;
}

.hamburger .bar {
    width: 25px;
    height: 3px;
    background: var(--text-secondary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover .bar {
    background: var(--neon-green);
    box-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
    background: var(--neon-green);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
    background: var(--neon-green);
}

/* Sticky CTA Mobile */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--gradient-card);
    backdrop-filter: blur(20px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
    padding: 12px 16px;
    z-index: 9998;
    display: none;
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
}

.sticky-cta-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px;
    background: var(--gradient);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    box-shadow: var(--shadow-neon);
    transform: translateY(-2px);
}

/* ===============================================
   SEO Content Creation Landing Page - Custom Styles
   =============================================== */

/* Container utility (missing from main styles) */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 40px;
    }
}

@media (min-width: 1200px) {
    .container {
        padding: 0 50px;
    }
}

/* Section utility classes */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 30px;
    color: var(--neon-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-description {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Button styles */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient);
    color: var(--primary-bg);
    box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 35px rgba(0, 255, 136, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--neon-green);
    background: rgba(0, 255, 136, 0.1);
    color: var(--neon-green);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 2px solid var(--neon-green);
}

.btn-outline:hover {
    background: var(--neon-green);
    color: var(--primary-bg);
}

.btn-glow {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.5);
    }
    to {
        box-shadow: 0 0 30px rgba(0, 255, 136, 0.8);
    }
}

/* Gradient text utility */
.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ===== HERO SECTION ===== */
.hero {
    min-height: 100vh;
    background: radial-gradient(ellipse at center, rgba(0, 255, 136, 0.1) 0%, var(--primary-bg) 70%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 0 20px;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.4rem);
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.hero-badge {
    display: inline-block;
    padding: 12px 24px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 50px;
    color: var(--neon-green);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 30px;
    animation: pulse 2s infinite;
}

.hero-badge span {
    margin-right: 8px;
}

/* Hero Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

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

.animate-fade-in {
    animation: fadeIn 1s ease-out forwards;
    opacity: 0;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 10px rgba(0, 255, 136, 0.3);
    }
    50% {
        box-shadow: 0 0 20px rgba(0, 255, 136, 0.6);
    }
}

.hero-stats {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--border-color);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 140px;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
}

.hero-illustration {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 1;
    opacity: 0.1;
}

.illustration-element {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(0, 255, 136, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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


/* ===== STICKY CTA MOBILE ===== */
.sticky-cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1500;
    display: none;
    padding: 16px 20px;
    background: rgba(10, 10, 10, 0.98);
    backdrop-filter: blur(20px);
    border-top: 2px solid var(--neon-green);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
}

.sticky-cta-btn {
    display: block;
    width: 100%;
    padding: 16px 24px;
    background: var(--gradient);
    color: var(--primary-bg);
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: var(--shadow-neon);
    transition: all 0.3s ease;
}

.sticky-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 30px rgba(0, 255, 136, 0.6);
}

@media (max-width: 768px) {
    .sticky-cta-mobile {
        display: block;
    }
    
    body {
        padding-bottom: 80px;
    }
}

/* ===== NAVIGATION OVERRIDES ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    height: var(--site-navbar-height);
}

/* ===== PROBLEM-SOLUTION SECTION ===== */
.problem-solution {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
    margin-top: 40px; /* ensure it clears hero visuals */
    z-index: 3; /* bring above hero decorations when scrolling */
}

.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.problem-card {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.problem-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-8px);
    border-color: var(--neon-green);
    box-shadow: var(--shadow-hover);
}

.problem-card:hover::before {
    transform: scaleX(1);
}

.problem-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    display: block;
}

.problem-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.problem-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.solution-box {
    padding: 50px 40px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border: 2px solid var(--neon-green);
    border-radius: 20px;
    margin-top: 60px;
    position: relative;
}

.solution-box::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: var(--gradient);
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(8px);
}

.solution-box h3 {
    font-size: 1.75rem;
    margin-bottom: 24px;
    color: var(--neon-green);
    text-align: center;
    font-weight: 700;
}

.solution-box p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-primary);
    margin-bottom: 30px;
    text-align: center;
}

.solution-benefits {
    list-style: none;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.solution-benefits li {
    padding: 16px 20px;
    font-size: 16px;
    color: var(--text-secondary);
    background: rgba(0, 255, 136, 0.05);
    border-radius: 8px;
    border-left: 3px solid var(--neon-green);
    transition: all 0.3s ease;
}

.solution-benefits li:hover {
    background: rgba(0, 255, 136, 0.1);
    transform: translateX(4px);
}

/* ===== SERVICES OVERVIEW SECTION ===== */
.services-overview {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.services-grid-2col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    gap: 30px;
}

.service-card {
    padding: 30px 40px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: left;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.service-card:hover::before {
    left: 100%;
}

.service-card.featured {
    border: 2px solid var(--neon-green);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 15px;
    right: 20px;
    padding: 8px 20px;
    background: var(--gradient);
    color: var(--primary-bg);
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.2);
    border-color: var(--neon-green);
}

.service-card.featured:hover {
    transform: translateY(-12px) scale(1.04);
}

.service-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--neon-green);
    display: block;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: rotate(10deg) scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.service-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 24px 0;
    text-align: left;
}

.service-features li {
    padding: 10px 0;
    font-size: 14px;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    padding-left: 24px;
    transition: all 0.3s ease;
}

.service-features li:last-child {
    border-bottom: none;
}

.service-features li::before {
    content: '✓';
    color: var(--neon-green);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 10px;
    font-size: 16px;
}

.service-features li:hover {
    color: var(--text-primary);
    padding-left: 28px;
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.pricing-card {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.pricing-card:hover::before {
    transform: scaleX(1);
}

.pricing-card.featured {
    border: 2px solid var(--neon-green);
    transform: scale(1.03);
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured::before {
    transform: scaleX(1);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 24px;
    background: var(--gradient);
    color: var(--primary-bg);
    font-size: 13px;
    font-weight: 700;
    border-radius: 25px;
    box-shadow: 0 4px 15px rgba(0, 255, 136, 0.4);
    white-space: nowrap;
    z-index: 2;
}

.pricing-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 255, 136, 0.15),
        0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-green);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-12px);
    box-shadow: 
        0 30px 60px rgba(0, 255, 136, 0.2),
        0 12px 24px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-header h3 {
    font-size: 1.75rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.pricing-description {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.pricing-price {
    text-align: center;
    padding: 30px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 30px;
    position: relative;
}

.price-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    margin-top: 8px;
    display: block;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 12px 0;
    font-size: 15px;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    padding-left: 8px;
    color: var(--neon-green);
}

.pricing-features li.disabled {
    color: var(--text-muted);
}

.pricing-features li.disabled:hover {
    color: var(--text-muted);
    padding-left: 0;
}

.check {
    color: var(--neon-green);
    font-weight: bold;
    font-size: 18px;
}

.cross {
    color: var(--text-muted);
    font-size: 18px;
}

.pricing-note {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    margin-top: 50px;
    position: relative;
}

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

.pricing-note p {
    font-size: 16px;
    color: var(--text-primary);
    line-height: 1.7;
    margin: 0;
}

/* ===== WHY CHOOSE SECTION ===== */
.why-choose {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.benefit-card {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.benefit-card:hover::before {
    left: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 4rem;
    margin-bottom: 24px;
    color: var(--neon-green);
    display: block;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: rotate(10deg) scale(1.1);
}

.benefit-card h3 {
    font-size: 1.375rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.benefit-card p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
}

.process-timeline {
    max-width: 900px;
    margin: 60px auto 0;
}

.process-step {
    display: flex;
    gap: 30px;
    margin-bottom: 60px;
    position: relative;
    align-items: flex-start;
}

.process-step::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 70px;
    width: 2px;
    height: calc(100% + 40px);
    background: linear-gradient(180deg, var(--neon-green) 0%, rgba(0, 255, 136, 0.3) 50%, transparent 100%);
    z-index: 1;
}

.process-step:last-child::after {
    display: none;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    font-weight: 800;
    background: var(--gradient);
    color: var(--primary-bg);
    border-radius: 50%;
    box-shadow: 
        var(--shadow-neon),
        0 0 30px rgba(0, 255, 136, 0.5);
    z-index: 2;
    position: relative;
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    transform: scale(1.1);
    box-shadow: 
        var(--shadow-neon),
        0 0 40px rgba(0, 255, 136, 0.7);
}

.step-content {
    flex: 1;
    padding: 10px 0;
}

.step-content h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--text-primary);
    font-weight: 700;
}

.step-content > p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.step-details {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.step-details li {
    padding: 8px 16px;
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    border-radius: 20px;
    font-size: 13px;
    color: var(--neon-green);
    font-weight: 500;
    transition: all 0.3s ease;
}

.step-details li:hover {
    background: rgba(0, 255, 136, 0.2);
    transform: translateY(-2px);
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin: 60px 0;
}

.testimonial-card {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.testimonial-card:hover::before {
    transform: scaleX(1);
}

.testimonial-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
    border-color: var(--neon-green);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 20px;
    color: #ffd700;
}

.testimonial-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 30px;
    font-style: italic;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-bg);
    font-weight: 700;
    font-size: 1.125rem;
}

.author-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.author-info strong {
    font-size: 16px;
    color: var(--text-primary);
    font-weight: 600;
}

.author-info span {
    font-size: 13px;
    color: var(--text-muted);
}

.trust-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin: 80px 0;
    padding: 50px 40px;
    background: var(--card-bg);
    border-radius: 20px;
    border: 1px solid var(--border-color);
    position: relative;
}

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

.trust-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.trust-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.trust-label {
    font-size: 14px;
    color: var(--text-secondary);
    text-align: center;
    font-weight: 500;
}

.trust-badge-area {
    text-align: center;
    padding: 40px 30px;
    background: linear-gradient(135deg, rgba(0, 255, 136, 0.08) 0%, rgba(0, 212, 170, 0.08) 100%);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 16px;
    margin-top: 50px;
    position: relative;
}

.trust-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-primary);
}

/* ===== FAQ SECTION ===== */
.faq-section {
    padding: 100px 0;
    background: var(--secondary-bg);
    position: relative;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 60px auto 0;
}

.faq-card {
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.faq-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-card:hover::before {
    transform: scaleX(1);
}

.faq-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 
        0 15px 40px rgba(0, 255, 136, 0.15),
        0 8px 20px rgba(0, 0, 0, 0.3);
}

.faq-card-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 16px;
}

.faq-card-icon {
    font-size: 2rem;
    flex-shrink: 0;
    animation: float 3s ease-in-out infinite;
}

.faq-card-question {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
    margin: 0;
    line-height: 1.4;
    flex: 1;
}

.faq-card-answer {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin: 0;
    padding-left: 0;
}

.faq-card-answer br {
    display: block;
    content: "";
    margin-top: 8px;
}

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

/* Responsive FAQ Grid */
@media (max-width: 1024px) {
    .faq-grid {
        gap: 25px;
    }
    
    .faq-card {
        padding: 30px;
    }
    
    .faq-card-header {
        gap: 12px;
    }
    
    .faq-card-icon {
        font-size: 1.75rem;
    }
    
    .faq-card-question {
        font-size: 1.0625rem;
    }
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .faq-card {
        padding: 25px;
    }
    
    .faq-card-header {
        gap: 10px;
    }
    
    .faq-card-icon {
        font-size: 1.5rem;
    }
    
    .faq-card-question {
        font-size: 1rem;
    }
    
    .faq-card-answer {
        font-size: 0.875rem;
    }
}

/* ===== FINAL CTA SECTION ===== */
.final-cta {
    padding: 100px 0;
    background: var(--primary-bg);
    position: relative;
    text-align: center;
}

.cta-content {
    text-align: center;
    margin-bottom: 80px;
}

.cta-content h2 {
    font-size: 2.75rem;
    margin-bottom: 24px;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    line-height: 1.2;
}

.cta-content > p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto 40px;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.contact-option {
    padding: 40px 30px;
    background: var(--card-bg);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.contact-option::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(0, 255, 136, 0.1), 
        transparent
    );
    transition: left 0.6s ease;
}

.contact-option:hover::before {
    left: 100%;
}

.contact-option:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--neon-green);
    box-shadow: 
        0 20px 40px rgba(0, 255, 136, 0.15),
        0 8px 16px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    color: var(--neon-green);
    display: block;
    transition: all 0.3s ease;
}

.contact-option:hover .contact-icon {
    transform: rotate(10deg) scale(1.1);
}

.contact-option h3 {
    font-size: 1.25rem;
    margin-bottom: 16px;
    color: var(--text-primary);
    font-weight: 700;
}

.contact-link {
    display: block;
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--neon-green);
    text-decoration: none;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.contact-link:hover {
    text-shadow: 0 0 15px rgba(0, 255, 136, 0.8);
    transform: scale(1.05);
}

.contact-option p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Contact Form */
.contact-form {
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    backdrop-filter: blur(10px);
    margin-top: 20px;
}

.form-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.form-column-left,
.form-column-right {
    display: flex;
    flex-direction: column;
}

.form-group {
    margin-bottom: 25px;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-primary);
    font-size: 14px;
    transition: all 0.3s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
    background: rgba(0, 255, 136, 0.05);
}

.form-group textarea {
    resize: vertical;
    height: 100%;
    min-height: 180px;
}

.form-footer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
}

.error-message {
    color: var(--neon-pink);
    font-size: 12px;
    margin-top: 5px;
    display: block;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.error-message.show {
    opacity: 1;
}

.submit-btn {
    padding: 18px 40px;
    background: var(--gradient);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-neon);
    white-space: nowrap;
    animation: pulse 2s infinite;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.4);
    animation: none;
}

.submit-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0, 255, 136, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0, 255, 136, 0);
    }
}

.checkbox-group {
    flex-direction: row;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    user-select: none;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 4px;
    cursor: pointer;
}

.checkbox-label span {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.checkbox-label a {
    color: var(--neon-green);
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.btn-large {
    padding: 18px 40px;
    font-size: 17px;
}

.privacy-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-top: 16px;
}

.form-message {
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 20px;
    font-size: 15px;
    text-align: center;
    animation: slideIn 0.3s ease;
}

.form-message.success {
    background: rgba(0, 255, 136, 0.1);
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
}

.form-message.error {
    background: rgba(255, 0, 112, 0.1);
    border: 1px solid var(--accent-secondary);
    color: var(--accent-secondary);
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer Enhancements */
.footer-service-area {
    text-align: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.footer-service-area strong {
    color: var(--neon-green);
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero-stats {
        gap: 30px;
    }
    
    .stat-number {
        font-size: 28px;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .pricing-card.featured:hover {
        transform: translateY(-8px);
    }
    
    .trust-stats {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero-stats {
        flex-direction: column;
        gap: 24px;
    }
    
    .problems-grid,
    .services-grid,
    .services-grid-2col,
    .pricing-grid,
    .benefits-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .form-columns {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .process-step {
        flex-direction: column;
        gap: 16px;
    }
    
    .process-step::after {
        left: 50%;
        transform: translateX(-50%);
        top: 80px;
    }
    
    .step-number {
        margin: 0 auto;
    }
    
    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-options {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .cta-content h2 {
        font-size: 32px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 8px 16px;
    }
    
    .solution-box {
        padding: 24px;
    }
    
    .pricing-card {
        padding: 30px 20px;
    }
    
    .price-amount {
        font-size: 38px;
    }
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.footer {
    background: var(--secondary-bg);
    border-top: 1px solid var(--border-color);
    padding: 60px 0 0;
    margin-top: 80px;
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 40px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-company {
    grid-column: span 1;
}

.footer-heading {
    color: var(--neon-green);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.75);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Address Styling */
.footer-address {
    font-style: normal;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
}

.address-line {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 10px;
}

.address-icon {
    font-size: 16px;
    flex-shrink: 0;
    width: 20px;
}

.footer-link-inline {
    color: var(--neon-green);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-link-inline:hover {
    opacity: 0.8;
    text-shadow: 0 0 8px rgba(0, 255, 136, 0.5);
}

/* Navigation Lists */
.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
}

.footer-link:hover {
    color: var(--neon-green);
    transform: translateX(5px);
}

.footer-link::before {
    content: '→';
    position: absolute;
    left: -18px;
    opacity: 0;
    transition: opacity 0.3s ease;
    color: var(--neon-green);
}

.footer-link:hover::before {
    opacity: 1;
}

/* Why Us List */
.footer-why-list {
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.75);
}

.footer-why-list li {
    margin-bottom: 8px;
    padding-left: 8px;
}

/* Social Links */
.footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    background: rgba(0, 255, 136, 0.08);
    border: 1px solid rgba(0, 255, 136, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(0, 255, 136, 0.15);
    border-color: var(--neon-green);
    transform: translateX(5px);
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.footer-social-link .social-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.footer-social-link:hover .social-icon {
    transform: scale(1.15);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding: 24px 0;
}

.footer-bottom-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin: 0;
    line-height: 1.6;
}

.heart {
    color: var(--neon-pink);
    animation: pulse 2s ease-in-out infinite;
}

/* Footer Responsive */
@media (max-width: 1024px) {
    .footer {
        padding: 40px 0 0;
    }

    .footer-main {
        padding: 0 20px 30px;
    }

    .footer-grid {
        gap: 30px;
    }

    .footer-col-company {
        grid-column: span 2;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-links {
        font-size: 13px;
    }

    .footer-links a {
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 30px 0 0;
        margin-top: 60px;
    }

    .footer-main {
        padding: 0 15px 25px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-col-company {
        grid-column: span 1;
    }

    .footer-heading {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .footer-social-links {
        flex-direction: row;
        gap: 8px;
    }

    .footer-social-link {
        flex: 1;
        justify-content: center;
        padding: 8px 10px;
        font-size: 12px;
    }
}

/* ===============================================
   Mobile Navigation Styles
   =============================================== */

/* Mobile Navigation */@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-bg);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 50px;
        gap: 30px;
        transition: all 0.3s ease;
        border-top: 1px solid var(--border-color);
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        font-size: 18px;
        padding: 15px 30px;
        width: 200px;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .nav-link:hover,
    .nav-link.active {
        background: rgba(0, 255, 136, 0.1);
        border-color: var(--neon-green);
        box-shadow: 0 5px 20px rgba(0, 255, 136, 0.2);
        transform: translateY(-2px);
    }
    
    .nav-link::after {
        display: none;
    }
    
    /* Mobile Dropdown */
    .nav-dropdown {
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .dropdown-toggle {
        font-size: 18px;
        padding: 15px 30px;
        width: 200px;
        text-align: center;
        border-radius: 25px;
        background: rgba(255, 255, 255, 0.05);
        border: 1px solid var(--border-color);
        transition: all 0.3s ease;
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        margin-top: 10px;
        width: 90%;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease, padding 0.3s ease;
        padding: 0;
        border: none;
    }
    
    .nav-dropdown:hover .dropdown-menu {
        max-height: 300px;
        padding: 10px 0;
        border: 1px solid rgba(0, 255, 136, 0.2);
    }
    
    .dropdown-item {
        padding: 12px 20px;
        font-size: 15px;
        text-align: center;
    }
}

