/* Modern Design System - urwebdev */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Outfit:wght@500;600;700;800&family=Plus+Jakarta+Sans:wght@500;600;700&display=swap');

:root {
    --primary-dark: #0f172a;
    --secondary-dark: #1e293b;
    --accent-teal: #14b8aa;
    --accent-glow: rgba(20, 184, 170, 0.5);
    --text-primary: #f8fafc;
    --text-secondary: #94a3b8;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    --gradient-card: linear-gradient(180deg, rgba(30, 41, 59, 0.7) 0%, rgba(15, 23, 42, 0.8) 100%);
}

/* Base Reset */
* { box-sizing: border-box; }

body { 
    margin: 0; 
    font-family: 'Inter', system-ui, -apple-system, sans-serif; 
    background-color: var(--primary-dark); 
    color: var(--text-primary); 
    overflow-x: hidden;
    position: relative;
}

/* Minimal Noise Texture */
body::after {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Spotlight Effect */
.spotlight-card {
    position: relative;
    overflow: hidden;
}

.spotlight-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(
        800px circle at var(--mouse-x, 50%) var(--mouse-y, 50%), 
        rgba(255, 255, 255, 0.06), 
        transparent 40%
    );
    z-index: 2;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.spotlight-card:hover::before {
    opacity: 1;
}

/* Bento Grid Utilities */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .bento-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-auto-rows: minmax(200px, auto);
    }
    
    .bento-col-span-2 {
        grid-column: span 2;
    }
    
    .bento-col-span-3 {
        grid-column: span 3;
    }
    
    .bento-row-span-2 {
        grid-row: span 2;
    }
}


h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

.font-display {
    font-family: 'Outfit', sans-serif;
}

/* Glassmorphism Utilities */
.glass {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.glass-card {
    background: var(--gradient-card);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.glass-card:hover {
    background: rgba(30, 41, 59, 0.8);
    border-color: var(--accent-teal);
    box-shadow: 0 0 30px rgba(20, 184, 170, 0.15);
    transform: translateY(-4px);
}

/* Glow Effects */
.glow-text {
    text-shadow: 0 0 20px var(--accent-glow);
}

.glow-box {
    box-shadow: 0 0 20px rgba(20, 184, 170, 0.1);
}

/* Navigation */
.nav-blur {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Hero Section */
.hero-gradient {
    background: var(--gradient-hero);
    position: relative;
}

.hero-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: radial-gradient(circle at 50% 0%, rgba(20, 184, 170, 0.15) 0%, transparent 50%);
    pointer-events: none;
}

/* Utility Classes */
.hidden { display: none; }
.fade-in-up { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease-out, transform 0.6s ease-out; }
.fade-in-up.visible { opacity: 1; transform: translateY(0); }

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

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-teal);
}

/* Hide scrollbar utility */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}

/* Mobile Nav */
#mobile-nav-toggle svg {
    transition: transform 0.3s ease;
}

/* Service Items */
.service-item {
    width: 100%; 
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.02); 
    border-left: 4px solid #334155;
    transition: all 0.3s ease;
    text-align: left;
    border-radius: 0 8px 8px 0;
}

.service-item:hover {
    background-color: rgba(30, 41, 59, 0.8);
    border-left-color: #14b8aa;
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr); 
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 2rem; 
}

@media (max-width: 768px) {
    .service-list {
        grid-template-columns: 1fr;
        padding: 12px;
        gap: 12px;
    }
    .service-item {
        width: 100%;
        max-width: 450px;
        margin: 0 auto;
        border-radius: 0.5rem;
        padding: 1rem;
    }
}


/* Extracted from Index */

        html {
            scroll-behavior: smooth;
        }
        
        /* Hero CTA buttons - max-width only on mobile */
        .hero-cta-button {
            max-width: 200px;
        }
        
        @media (min-width: 640px) {
            .hero-cta-button {
                max-width: none;
            }
        }
        
        .service-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr); 
            gap: 30px;
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem; 
        }

        .service-item {
            width: 100%; 
            height: 100%;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 1.5rem;
            background-color: transparent; 
            border-left: 4px solid #334155;
            transition: background-color 0.2s ease, border-left-color 0.2s ease;
            text-align: left;
        }
        
        .service-item:hover {
            background-color: #1f2937;
            border-left-color: #14b8aa;
        }

        @media (max-width: 768px) {
            .service-list {
                grid-template-columns: 1fr;
                padding: 12px;
                gap: 12px;
            }
            .service-item {
                width: 100%;
                max-width: 450px;
                margin: 0 auto;
                border-radius: 0.5rem;
                padding: 1rem;
            }
        }

        .hero-gradient {
            background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
        }

        .pricing-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .pricing-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(20, 184, 170, 0.2);
        }

        .portfolio-item {
            transition: transform 0.3s ease;
        }

        .portfolio-item:hover {
            transform: scale(1.02);
        }

        /* Timeline Card Styles */
        .timeline-card {
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .timeline-card:hover {
            transform: translateY(-4px);
        }

        /* FAQ Styles */
        .faq-item {
            transition: border-color 0.3s ease;
        }

        .rotate-180 {
            transform: rotate(180deg);
        }

        /* Timeline Connector */
        @media (min-width: 768px) {
            .timeline-card:not(:last-child)::after {
                content: '';
                position: absolute;
                top: 50%;
                right: -2rem;
                width: 2rem;
                height: 2px;
                background: linear-gradient(to right, rgba(20, 184, 170, 0.6), rgba(59, 130, 246, 0.6));
                transform: translateY(-50%);
                z-index: 1;
            }
        }

        /* Calculator Styles */
        .calculator-step {
            display: none;
            animation: fadeIn 0.3s ease-in;
        }

        .calculator-step.active {
            display: block;
        }

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

        .step-indicator {
            display: flex;
            flex-direction: column;
            align-items: center;
            flex: 1;
        }

        .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background-color: #1e293b;
            border: 2px solid #475569;
            color: #94a3b8;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
            transition: all 0.3s ease;
            margin-bottom: 8px;
        }

        .step-indicator.active .step-number {
            background-color: #14b8aa;
            border-color: #14b8aa;
            color: white;
            transform: scale(1.1);
        }

        .step-indicator.completed .step-number {
            background-color: #14b8aa;
            border-color: #14b8aa;
            color: white;
        }

        .step-label {
            font-size: 0.875rem;
            color: #94a3b8;
            transition: color 0.3s ease;
            text-align: center;
            white-space: nowrap;
        }

        .step-indicator.active .step-label {
            color: #14b8aa;
            font-weight: 600;
        }

        .step-line {
            flex: 1;
            height: 2px;
            background-color: #475569;
            margin: 0 8px 20px;
            transition: background-color 0.3s ease;
            min-width: 20px;
        }

        @media (max-width: 640px) {
            .step-indicator {
                flex: 0 0 auto;
            }
            .step-label {
                font-size: 0.75rem;
            }
            .step-number {
                width: 32px;
                height: 32px;
                font-size: 0.875rem;
            }
            .step-line {
                margin: 0 4px 16px;
                min-width: 12px;
            }
        }

        .step-indicator.active ~ .step-line,
        .step-indicator.completed ~ .step-line {
            background-color: #14b8aa;
        }

        .business-type-card {
            background-color: #0f172a;
            border: 2px solid #334155;
            border-radius: 12px;
            padding: 12px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s ease;
            touch-action: manipulation;
        }

        @media (min-width: 640px) {
            .business-type-card {
                padding: 20px;
            }
        }

        @media (min-width: 768px) {
            .business-type-card {
                padding: 16px;
            }
        }

        .business-type-card:hover {
            transform: translateY(-4px);
            border-color: #14b8aa;
            box-shadow: 0 10px 25px rgba(20, 184, 170, 0.2);
        }

        .business-type-card.selected {
            background-color: #14b8aa;
            border-color: #14b8aa;
        }

        .business-type-card.selected .card-icon {
            transform: scale(1.2);
        }

        .card-icon {
            font-size: 32px;
            margin-bottom: 6px;
            transition: transform 0.3s ease;
        }

        @media (min-width: 640px) {
        .card-icon {
            font-size: 48px;
            margin-bottom: 12px;
            }
        }

        @media (min-width: 768px) {
            .card-icon {
                font-size: 40px;
                margin-bottom: 8px;
            }
        }

        .quantity-btn {
            width: 36px;
            height: 36px;
            border-radius: 8px;
            background-color: #1e293b;
            border: 2px solid #475569;
            color: #f8fafc;
            font-size: 20px;
            font-weight: bold;
            cursor: pointer;
            transition: all 0.2s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            touch-action: manipulation;
            -webkit-tap-highlight-color: transparent;
        }

        @media (max-width: 640px) {
            .quantity-btn {
                width: 44px;
                height: 44px;
                font-size: 24px;
            }
        }

        .quantity-btn:hover {
            background-color: #14b8aa;
            border-color: #14b8aa;
            transform: scale(1.1);
        }

        .quantity-btn:active {
            transform: scale(0.95);
        }

        .feature-card {
            background-color: #0f172a;
            border: 2px solid #334155;
            border-radius: 12px;
            padding: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
            touch-action: manipulation;
        }

        @media (min-width: 640px) {
            .feature-card {
                padding: 20px;
            }
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(20, 184, 170, 0.1), transparent);
            transition: left 0.5s ease;
        }

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

        .feature-card:hover {
            transform: translateY(-4px);
            border-color: #14b8aa;
            box-shadow: 0 10px 25px rgba(20, 184, 170, 0.2);
        }

        .feature-card.selected {
            background-color: rgba(20, 184, 170, 0.1);
            border-color: #14b8aa;
        }

        .feature-card.selected .feature-check {
            opacity: 1;
            transform: scale(1);
        }

        .feature-check {
            position: absolute;
            top: 8px;
            right: 40px;
            width: 24px;
            height: 24px;
            background-color: #14b8aa;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: scale(0);
            transition: all 0.3s ease;
            z-index: 15;
        }

        @media (min-width: 640px) {
            .feature-check {
                top: 10px;
                right: 46px;
            }
        }

        .feature-icon {
            font-size: 32px;
            margin-bottom: 12px;
            margin-top: 0;
            margin-left: 0;
            display: block;
            text-align: left;
            width: auto;
            transition: transform 0.3s ease;
        }

        @media (min-width: 640px) {
            .feature-icon {
                font-size: 36px;
            }
        }

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

        .feature-info-btn {
            position: absolute;
            top: 8px;
            right: 8px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background-color: rgba(20, 184, 170, 0.25);
            border: 1.5px solid #14b8aa;
            color: #14b8aa;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 12px;
            font-weight: bold;
            z-index: 20;
            box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        }

        @media (min-width: 640px) {
            .feature-info-btn {
                width: 28px;
                height: 28px;
                font-size: 14px;
                top: 10px;
                right: 10px;
            }
        }

        .feature-info-btn:hover {
            background-color: #14b8aa;
            color: white;
            transform: scale(1.15);
            box-shadow: 0 4px 8px rgba(20, 184, 170, 0.4);
        }

        .feature-detail-modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            background-color: rgba(0, 0, 0, 0.85);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 20px;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
        }

        .feature-detail-modal.active {
            opacity: 1;
            visibility: visible;
        }

        .feature-detail-content {
            background-color: #1e293b;
            border-radius: 16px;
            max-width: 600px;
            max-height: 80vh;
            overflow-y: auto;
            padding: 32px;
            transform: scale(0.9);
            transition: transform 0.3s ease;
            border: 2px solid #14b8aa;
        }

        .feature-detail-modal.active .feature-detail-content {
            transform: scale(1);
        }

        .feature-example {
            background-color: #0f172a;
            border-radius: 8px;
            padding: 16px;
            margin-top: 16px;
            border-left: 3px solid #14b8aa;
            display: none;
        }

        .feature-example-title {
            color: #14b8aa;
            font-weight: 600;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 0.95rem;
        }

        .feature-detail-explanation {
            line-height: 1.7;
            color: #cbd5e1;
        }

        .feature-benefits {
            list-style: none;
            padding: 0;
            margin-top: 16px;
        }

        .feature-benefits li {
            padding: 8px 0;
            padding-left: 24px;
            position: relative;
            color: #94a3b8;
        }

        .feature-benefits li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #14b8aa;
            font-weight: bold;
        }

        .quote-item {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid #334155;
        }

        .quote-item:last-child {
            border-bottom: none;
        }

        .pulse-animation {
            animation: pulse 0.5s ease-in-out;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.05); }
        }

        /* Blog Post Modal Styles */
        .blog-post-modal {
            position: fixed;
            inset: 0;
            z-index: 200;
            background-color: rgba(0, 0, 0, 0.8);
            display: none;
            align-items: center;
            justify-content: center;
            padding: 20px;
            overflow-y: auto;
        }

        .blog-post-modal.active {
            display: flex;
        }

        .blog-post-content {
            background-color: #1e293b;
            border-radius: 16px;
            max-width: 800px;
            width: 100%;
            max-height: 90vh;
            overflow-y: auto;
            padding: 32px;
            position: relative;
        }

        /* Scroll-triggered animations */
        .fade-in-up {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(30px);
            transition: opacity 0.6s ease-out, transform 0.6s ease-out;
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        /* Stagger animation delays */
        .stagger-item {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .stagger-item.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .stagger-item:nth-child(1) { transition-delay: 0.1s; }
        .stagger-item:nth-child(2) { transition-delay: 0.2s; }
        .stagger-item:nth-child(3) { transition-delay: 0.3s; }
        .stagger-item:nth-child(4) { transition-delay: 0.4s; }
        .stagger-item:nth-child(5) { transition-delay: 0.5s; }
        .stagger-item:nth-child(6) { transition-delay: 0.6s; }
        .stagger-item:nth-child(7) { transition-delay: 0.7s; }
        .stagger-item:nth-child(8) { transition-delay: 0.8s; }

        /* Package Carousel Styles */
        /* Process Section Left-to-Right Animation */
        .process-timeline {
            position: relative;
            padding: 2rem 0;
        }

        .process-timeline-line {
            position: absolute;
            top: 60px;
            left: 0;
            right: 0;
            height: 3px;
            background: #334155;
            z-index: 0;
            overflow: hidden;
        }

        @media (max-width: 767px) {
            .process-timeline-line {
                display: none;
            }
        }

        .process-timeline-progress {
            position: absolute;
            top: 0;
            left: 0;
            height: 100%;
            width: 0%;
            background: linear-gradient(90deg, #14b8aa, #8b5cf6);
            transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-timeline.animate .process-timeline-progress {
            width: 100%;
        }

        .process-step {
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
        }

        .process-step-circle {
            width: 50px;
            height: 50px;
            background: #1e293b;
            border: 2px solid #475569;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            color: #94a3b8;
            font-weight: bold;
            font-size: 1.25rem;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .process-step:hover .process-step-circle,
        .process-step.active .process-step-circle {
            background: #14b8aa;
            border-color: #14b8aa;
            color: white;
            transform: scale(1.1);
            box-shadow: 0 0 20px rgba(20, 184, 170, 0.4);
        }

        /* Process step staggered animation */
        .process-step {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 0.5s ease-out, transform 0.5s ease-out;
        }

        .process-step.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .process-timeline.animate .process-step {
            animation: fadeInUp 0.5s forwards;
        }

        .process-timeline.animate .process-step:nth-child(1) { animation-delay: 0.1s; }
        .process-timeline.animate .process-step:nth-child(2) { animation-delay: 0.3s; }
        .process-timeline.animate .process-step:nth-child(3) { animation-delay: 0.5s; }
        .process-timeline.animate .process-step:nth-child(4) { animation-delay: 0.7s; }

        @keyframes fadeInUp {
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* FAQ Hover Animation */
        .faq-button:hover {
            color: #14b8aa;
        }

        .faq-button:hover svg {
            stroke: #14b8aa;
        }
