﻿/*:root {
    --primary: #6C63FF;
    --secondary: #FF6584;
    --accent: #36D1DC;
    --dark: #2A2D3E;
    --light: #F8F9FA;
    --success: #4CAF50;
}*/

:root {
    --primary: #FF3B6A; /* Neon Sushi Pink */
    --secondary: #00D1C1; /* Fresh Aqua Mint */
    --accent: #FFD454; /* Egg Yolk Yellow */
    --dark: #1F1F28;
    --light: #FAFAFC;
    --primary-gradient: linear-gradient(135deg, #FF3B6A, #FF5F87);
    --secondary-gradient: linear-gradient(135deg, #00D1C1, #2BE4D9);
    --accent-gradient: linear-gradient(135deg, #FFD454, #FFE08A);
    --success: #4CAF50;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    overflow-x: hidden;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary) !important;
}

.btn-primary {
    background-color: var(--primary);
    border-color: var(--primary);
    padding: 10px 25px;
    font-weight: 500;
}

    .btn-primary:hover {
        background-color: #5a52e0;
        border-color: #5a52e0;
    }

.btn-secondary {
    background-color: var(--secondary);
    border-color: var(--secondary);
    padding: 10px 25px;
    font-weight: 500;
}

    .btn-secondary:hover {
        background-color: #e05578;
        border-color: #e05578;
    }

.hero-section {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    color: white;
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

    .hero-section::before {
        content: '';
        position: absolute;
        width: 200%;
        height: 200%;
        background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
        top: -50%;
        left: -50%;
        z-index: 0;
    }

.hero-content {
    position: relative;
    z-index: 1;
}

.section-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    display: inline-block;
}

    .section-title::after {
        content: '';
        position: absolute;
        width: 60%;
        height: 4px;
        background: var(--primary);
        bottom: -10px;
        left: 0;
        border-radius: 2px;
    }

.feature-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: white;
    font-size: 1.8rem;
}

.pricing-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    overflow: hidden;
}

    .pricing-card:hover {
        transform: translateY(-10px);
    }

.pricing-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.pricing-popular {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

    .pricing-popular .pricing-header {
        background: linear-gradient(135deg, var(--secondary), var(--primary));
    }

.price {
    font-size: 3rem;
    font-weight: 700;
    margin: 20px 0;
}

    .price span {
        font-size: 1rem;
        font-weight: 400;
    }

.testimonial-card {
    border: none;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
    margin-bottom: 30px;
}

.testimonial-img {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 20px;
}

.footer {
    background-color: var(--dark);
    color: white;
    padding: 80px 0 30px;
}

    .footer a {
        color: #ddd;
        text-decoration: none;
        transition: color 0.3s ease;
    }

        .footer a:hover {
            color: white;
        }

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    margin-right: 10px;
    transition: background-color 0.3s ease;
}

    .social-icons a:hover {
        background-color: var(--primary);
    }

.qr-demo {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: inline-block;
    margin: 20px 0;
}

.qr-code {
    width: 180px;
    height: 180px;
    background: #f8f9fa;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    border: 1px dashed #ddd;
}

.coming-soon {
    background: var(--secondary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-left: 10px;
}

.free-badge {
    background: var(--success);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    display: inline-block;
    margin-left: 10px;
}

.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.contact-form {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    padding: 30px;
}

@media (max-width: 768px) {
    .hero-section {
        padding: 100px 0 60px;
        text-align: center;
    }

    .pricing-popular {
        transform: scale(1);
    }
}