/* Copy all CSS from original HTML file */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&family=Poppins:wght@700;800&display=swap');

:root {
    --primary: #2C3CFF;
    --secondary: #3b82f6;
    --accent: #10b981;
    --dark: #1e293b;
    --light: #f8fafc;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--dark);
}

.font-display {
    font-family: 'Poppins', sans-serif;
}

.gradient-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #2C3CFF 100%);
}

.gradient-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
}

.gradient-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #34d399 100%);
}

.gradient-text-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-pattern {
    background-image: radial-gradient(circle at 20% 80%, rgba(255, 107, 0, 0.1) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 50%), radial-gradient(circle at 40% 40%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.card-hover {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

    .card-hover:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    }

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, #ff8c42 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-primary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.3s ease;
    }

    .btn-primary:hover::before {
        left: 100%;
    }

.btn-secondary {
    background: linear-gradient(135deg, var(--secondary) 0%, #60a5fa 100%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

    .btn-secondary::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: rgba(255, 255, 255, 0.2);
        transition: left 0.3s ease;
    }

    .btn-secondary:hover::before {
        left: 100%;
    }

.feature-icon {
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1) rotate(5deg);
}

.tab-active {
    border-bottom: 3px solid var(--primary);
    color: var(--primary);
}

.portfolio-item {
    position: relative;
    overflow: hidden;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

.floating {
    animation: floating 3s ease-in-out infinite;
}

@keyframes floating {
    0% {
        transform: translate(0, 0px);
    }

    50% {
        transform: translate(0, -20px);
    }

    100% {
        transform: translate(0, -0px);
    }
}

/* Mobile Navigation */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background: white;
    z-index: 1000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    overflow-y: auto;
}

    .mobile-menu.active {
        right: 0;
    }

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    display: none;
}

    .overlay.active {
        display: block;
    }

header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 50;
    background: white;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
}

    .mobile-menu nav a {
        width: 100%;
        text-align: center;
        padding: 12px 0;
        border-bottom: 1px solid #f3f4f6;
    }

/* Responsive improvements */
@media (max-width: 768px) {
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .hero-pattern {
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .text-5xl,
    .text-6xl {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .flex.justify-center.mb-12 .inline-flex {
        flex-direction: column;
        width: 100%;
    }

        .flex.justify-center.mb-12 .inline-flex button {
            width: 100%;
            margin-bottom: 5px;
        }

    .grid-cols-3 {
        grid-template-columns: 1fr;
    }

    .transform.scale-105 {
        transform: none;
    }

    #home {
        padding-top: 80px;
        align-items: flex-start;
    }
}

@media (max-width: 640px) {
    .text-4xl {
        font-size: 2rem;
    }

    .text-xl {
        font-size: 1.1rem;
    }

    .p-8 {
        padding: 1.5rem;
    }

    .space-y-8 > * + * {
        margin-top: 1.5rem;
    }

    .grid.grid-cols-2.gap-6 {
        grid-template-columns: 1fr;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 6px rgba(0, 0, 0, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

    .whatsapp-float:hover {
        background-color: #128C7E;
        transform: scale(1.1);
    }

.whatsapp-icon {
    color: white;
}

/* WhatsApp button responsive adjustments */
@media (max-width: 768px) {
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* MOST POPULAR badge responsive fix */
.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #fbbf24;
    color: #7c2d12;
    padding: 4px 12px;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .popular-badge {
        top: -10px;
        padding: 3px 10px;
        font-size: 0.65rem;
    }
}

@media (max-width: 640px) {
    .popular-badge {
        top: -8px;
        padding: 2px 8px;
        font-size: 0.6rem;
    }
}
