/* Sellify Website Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

/* Custom Colors - Updated with your brand colors */
:root {
    --primary-gradient: linear-gradient(135deg, #01c3e2 0%, #296bb4 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #01c3e2 0%, #00d4ff 100%);
    --success-gradient: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
    --warning-gradient: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --primary-blue: #296bb4;
    --primary-cyan: #01c3e2;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
}

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.8rem;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    transition: all 0.3s ease;
    position: relative;
}

    .nav-link:hover {
        color: var(--primary-cyan) !important;
    }

.btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(1, 195, 226, 0.3);
}

    .btn-primary:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(1, 195, 226, 0.4);
    }

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--primary-gradient);
    color: white;
    position: relative;
    overflow: visible;
    padding-bottom: 200px; /* Space for spanning image */
}

    .hero::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="%23ffffff10" points="0,0 1000,300 1000,1000 0,700"/></svg>');
        background-size: cover;
    }

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero p.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.feature-badge {
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* Hero Image Container - Spanning sections */
.hero-image-container {
    position: absolute;
    bottom: -150px;
    left: 0;
    right: 0;
    z-index: 3;
}

.hero-dashboard {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

/* Dashboard Mockup */
.dashboard-frame {
    background: white;
    border-radius: 20px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    animation: float 6s ease-in-out infinite;
}

.dashboard-header {
    background: #f8f9fa;
    padding: 15px 20px;
    border-bottom: 1px solid #e9ecef;
    display: flex;
    align-items: center;
    gap: 15px;
}

.dashboard-nav {
    display: flex;
    gap: 8px;
}

.nav-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #dc3545;
}

    .nav-dot:nth-child(2) {
        background: #ffc107;
    }

    .nav-dot:nth-child(3) {
        background: #28a745;
    }

.dashboard-title {
    font-weight: 600;
    color: #495057;
    font-size: 0.9rem;
}

.dashboard-content {
    display: flex;
    min-height: 400px;
}

.dashboard-sidebar {
    width: 200px;
    background: #f8f9fa;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    height: 12px;
    background: #dee2e6;
    border-radius: 6px;
}

    .sidebar-item.active {
        background: var(--primary-gradient);
    }

.dashboard-main {
    flex: 1;
    padding: 30px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-cyan);
}

.stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: var(--primary-gradient);
}

    .stat-icon.bg-success {
        background: var(--success-gradient);
    }

    .stat-icon.bg-warning {
        background: var(--warning-gradient);
    }

.stat-content .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    line-height: 1;
}

.stat-content .stat-label {
    font-size: 0.85rem;
    color: #6c757d;
    margin-top: 2px;
}

.chart-area {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 20px;
    height: 200px;
    display: flex;
    align-items: end;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    width: 100%;
    height: 100%;
}

.chart-bar {
    flex: 1;
    background: var(--primary-gradient);
    border-radius: 4px 4px 0 0;
    min-height: 20px;
    animation: chartGrow 2s ease-out;
}

@keyframes chartGrow {
    from {
        height: 0;
    }

    to {
        height: var(--height, 50%);
    }
}

/* Floating Elements */
.floating-element {
    position: absolute;
    animation: floatSlow 8s ease-in-out infinite;
}

    .floating-element.element-1 {
        top: 50px;
        right: -50px;
        animation-delay: -1s;
    }

    .floating-element.element-2 {
        top: 200px;
        left: -80px;
        animation-delay: -3s;
    }

    .floating-element.element-3 {
        bottom: 100px;
        right: -60px;
        animation-delay: -5s;
    }

.floating-card-mini {
    background: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.9rem;
    color: #2c3e50;
    white-space: nowrap;
}

    .floating-card-mini i {
        font-size: 1.2rem;
    }

@keyframes floatSlow {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-15px) rotate(1deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Features Section */
.features {
    padding: 200px 0 100px; /* Extra top padding for overlapping hero image */
    background: var(--bg-light);
    position: relative;
}

.feature-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: none;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

.feature-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    color: white;
}

.icon-gradient-1 {
    background: var(--primary-gradient);
}

.icon-gradient-2 {
    background: var(--secondary-gradient);
}

.icon-gradient-3 {
    background: var(--accent-gradient);
}

.icon-gradient-4 {
    background: var(--success-gradient);
}

.icon-gradient-5 {
    background: var(--warning-gradient);
}

/* Services Section */
.services {
    padding: 100px 0;
}

.service-item {
    display: flex;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

    .service-item:hover {
        transform: translateY(-5px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.1);
    }

    .service-item:nth-child(even) {
        flex-direction: row-reverse;
    }

.service-content {
    flex: 1;
    padding: 2rem;
}

.service-image {
    flex: 1;
    text-align: center;
}

.service-mockup {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
}

.stat-item {
    text-align: center;
    margin-bottom: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    background: var(--bg-light);
}

.pricing-card {
    background: white;
    border-radius: 20px;
    padding: 3rem 2rem;
    text-align: center;
    border: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    }

    .pricing-card.featured {
        border: 3px solid var(--primary-cyan);
        transform: scale(1.05);
    }

        .pricing-card.featured::before {
            content: 'Most Popular';
            position: absolute;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--primary-gradient);
            color: white;
            padding: 5px 20px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 600;
        }

.price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-blue);
    margin: 1rem 0;
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 400;
}

/* Testimonials */
.testimonials {
    padding: 100px 0;
}

.testimonial-card {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    margin: 1rem;
    height: 100%;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    font-weight: 600;
}

.stars {
    color: #ffc107;
    margin-bottom: 1rem;
}

/* CTA Section */
.cta {
    padding: 100px 0;
    background: var(--primary-gradient);
    color: white;
    text-align: center;
}

    .cta h2 {
        font-size: 3rem;
        font-weight: 800;
        margin-bottom: 1.5rem;
    }

.btn-white {
    background: white;
    color: var(--primary-blue);
    border: none;
    border-radius: 50px;
    padding: 15px 40px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(255,255,255,0.3);
}

    .btn-white:hover {
        transform: translateY(-3px);
        box-shadow: 0 10px 25px rgba(255,255,255,0.4);
        color: var(--primary-blue);
    }

/* Footer */
.footer {
    background: #2c3e50;
    color: white;
    padding: 60px 0 30px;
}

.footer-brand {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

    .footer-links li {
        margin-bottom: 0.5rem;
    }

    .footer-links a {
        color: #bdc3c7;
        text-decoration: none;
        transition: all 0.3s ease;
    }

        .footer-links a:hover {
            color: white;
        }

.social-icons a {
    display: inline-block;
    width: 45px;
    height: 45px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 45px;
    margin-right: 10px;
    color: white;
    transition: all 0.3s ease;
}

    .social-icons a:hover {
        background: var(--primary-cyan);
        transform: translateY(-3px);
    }

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding-bottom: 150px;
    }

        .hero h1 {
            font-size: 2.5rem;
        }

        .hero p.lead {
            font-size: 1.1rem;
        }

    .hero-features {
        flex-direction: column;
        align-items: center;
    }

    .hero-image-container {
        bottom: -100px;
    }

    .dashboard-content {
        flex-direction: column;
        min-height: 300px;
    }

    .dashboard-sidebar {
        width: 100%;
        flex-direction: row;
        padding: 15px 20px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .floating-element {
        display: none; /* Hide floating elements on mobile */
    }

    .service-item,
    .service-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }

    .cta h2 {
        font-size: 2rem;
    }

    .features {
        padding: 150px 0 80px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-bottom: 120px;
    }

    .hero-image-container {
        bottom: -80px;
    }

    .dashboard-frame {
        margin: 0 15px;
    }

    .dashboard-main {
        padding: 20px;
    }

    .chart-area {
        height: 150px;
    }
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Loading Animation for Service Mockups */
.service-placeholder {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
    border-radius: 15px;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-weight: 500;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }

    100% {
        background-position: -200% 0;
    }
}

/* Additional Brand Color Utilities */
.text-primary-cyan {
    color: var(--primary-cyan) !important;
}

.text-primary-blue {
    color: var(--primary-blue) !important;
}

.bg-primary-gradient {
    background: var(--primary-gradient) !important;
}

.border-primary-cyan {
    border-color: var(--primary-cyan) !important;
}

.btn-outline-primary-custom {
    color: var(--primary-cyan);
    border-color: var(--primary-cyan);
}

    .btn-outline-primary-custom:hover {
        background-color: var(--primary-cyan);
        border-color: var(--primary-cyan);
        color: white;
    }
