/* ===== LOGO BAR ===== */
.logo-bar {
    width: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    border-bottom: 2px solid #ff0033;
}

.logo-img {
    height: 100px;
    width: auto;
    object-fit: contain;
    margin-top: 4px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 1;
}
.customer-stats {
    /* ...existing code... */
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 1s 0.3s forwards;
    border-top: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    border: none !important;
}

@keyframes fadeInUp {
    background: #111;
    padding: 40px 0 30px 0;
}
.stats-flex {
    display: flex;
    justify-content: flex-start;
    gap: 60px;
    align-items: flex-start;
}
.stat-box {
    text-align: left;
}
.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff0033;
    margin-bottom: 0.3rem;
}
.stat-label {
    color: #fff;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}
/* ===== LOGO BAR ===== */
.logo-bar {
    width: 100%;
    background: #0a0a0a;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2000;
    border-bottom: 2px solid #ff0033;
}

.logo-img {
    height: 200px;
    width: auto;
    object-fit: contain;
    margin-top: 4px;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.logo-img:hover {
    opacity: 1;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #ff0033;
    --primary-dark: #cc0028;
    --primary-light: #ff3366;
    --secondary: #1a1a1a;
    --dark-bg: #0d0d0d;
    --light-bg: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --border: #ff0033;
    --success: #10b981;
    --gradient-1: linear-gradient(135deg, #ff0033 0%, #ff3366 100%);
    --gradient-2: linear-gradient(135deg, #ff0033 0%, #cc0028 100%);
    --gradient-3: linear-gradient(135deg, #ff3366 0%, #ff0033 100%);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0d0d0d;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

h1 { font-size: 3.5rem; font-weight: 600; line-height: 1.15; }
h2 { font-size: 2.5rem; font-weight: 600; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    color: var(--text-secondary);
    font-size: 1rem;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border: 2px solid transparent;
    border-radius: 0.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    text-align: center;
}

.btn-primary {
    background: #ff0033;
    color: white;
    border-color: #ff0033;
    box-shadow: 0 0 20px rgba(255, 0, 51, 0.5);
}

.btn-primary:hover {
    background: #ff3366;
    border-color: #ff3366;
    transform: translateY(-1px);
    box-shadow: 0 0 30px rgba(255, 0, 51, 0.8);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-ghost {
    background: transparent;
    color: var(--primary);
    border: none;
    font-weight: 600;
    padding: 0.5rem 1rem;
}

.btn-ghost:hover {
    transform: translateX(5px);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border-color: var(--border);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn-primary-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    background: var(--primary);
    color: white;
}

/* ===== NAVIGATION ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 150px;
    padding: 80px 0 120px 0;
    background: #0d0d0d;
    border-bottom: none !important;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.15;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: #ff0033;
    top: -200px;
    left: -200px;
    animation: float 8s ease-in-out infinite;
}

.glow-2 {
    width: 300px;
    height: 300px;
    background: #ff3366;
    bottom: -150px;
    right: -150px;
    animation: float 10s ease-in-out infinite reverse;
    animation-delay: 2s;
}

.glow-3 {
    width: 200px;
    height: 200px;
    background: #ff0033;
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-30px); }
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    border: 1px solid rgba(99, 102, 241, 0.2);
}

.hero-title {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-subtitle {
    font-size: 1.25rem;
    max-width: 700px;
    margin-bottom: 2.5rem;
    color: var(--text-secondary);
    line-height: 1.8;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
}

.stat-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.stat-text {
    color: var(--text-secondary);
    font-weight: 500;
}

/* ===== FEATURED WORK ===== */
.featured-work {
    padding: 100px 0;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-header h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 500;
}

.section-header p {
    font-size: 1rem;
    color: #b0b0b0;
    font-weight: 400;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card {
    background: #1a1a1a;
    border-radius: 0.75rem;
    overflow: hidden;
    border: 2px solid #ff0033;
    transition: all 0.4s ease-out;
    cursor: pointer;
    animation: fadeInUp 0.8s ease-out both;
}

.work-card:nth-child(1) {
    animation-delay: 0.1s;
}

.work-card:nth-child(2) {
    animation-delay: 0.2s;
}

.work-card:nth-child(3) {
    animation-delay: 0.3s;
}

.work-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 0, 51, 0.3);
    border-color: #ff3366;
}

.work-card-large {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.work-image {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    transition: transform 0.4s ease;
}

.work-card:hover .work-image {
    transform: scale(1.05);
}

.work-card-large .work-image {
    height: 100%;
    min-height: 500px;
}

.work-content {
    padding: 2rem;
}

.work-content h3 {
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.work-content p {
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.work-tags {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.work-tags span {
    background: #1a1a1a;
    color: white;
    padding: 0.4rem 0.85rem;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

/* ===== SERVICES SECTION ===== */
.services {
    padding: 100px 0;
    background: #0d0d0d;
    border-top: 2px solid #ff0033;
    border-bottom: 2px solid #ff0033;
}}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 0.5rem;
    border: 2px solid #ff0033;
    transition: all 0.3s ease;
}}

.service-card.premium {
    position: relative;
    overflow: hidden;
}

.service-card.premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-1);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.service-card.premium:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
    border-color: var(--primary);
}

.service-card.premium:hover::before {
    opacity: 0.05;
}

.service-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.features {
    list-style: none;
}

.features li {
    padding: 0.5rem 0;
    color: var(--text-secondary);
    font-size: 0.95rem;
    position: relative;
    padding-left: 1.5rem;
}

.features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
}

/* ===== PROCESS SECTION ===== */
.process {
    padding: 120px 0;
    background: #0d0d0d;
    border-top: 2px solid #ff0033;
}

.process-timeline {
    display: grid;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-marker {
    width: 60px;
    height: 60px;
    background: var(--gradient-1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(99, 102, 241, 0.3);
}

.timeline-content h4 {
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
    padding: 120px 0;
    background: #0d0d0d;
    border-top: 2px solid #ff0033;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: #1a1a1a;
    padding: 2.5rem;
    border-radius: 1rem;
    border: 2px solid #ff0033;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.2);
    border-color: #ff3366;
}

.stars {
    color: #fbbf24;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.testimonial-card p {
    margin-bottom: 2rem;
    font-size: 1rem;
    line-height: 1.8;
    font-style: italic;
    color: var(--text-primary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    color: var(--text-primary);
}

.testimonial-author span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ===== PRICING ===== */
.pricing {
    padding: 120px 0;
    background: #0d0d0d;
    border-top: 2px solid #ff0033;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: #1a1a1a;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 2px solid #ff0033;
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card.featured {
    background: linear-gradient(135deg, #b8002a 0%, #ff0033 100%);
    color: white;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 0, 51, 0.4);
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.pricing-card.featured:hover {
    transform: scale(1.05) translateY(-5px);
}

.badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: #fbbf24;
    color: #000;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-card.featured .price {
    color: white;
}

.price-desc {
    font-size: 0.95rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.price-list {
    list-style: none;
    margin: 2rem 0;
}

.price-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
}

.pricing-card.featured .price-list li {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.pricing-card .btn {
    width: 100%;
    margin-top: 2rem;
}

/* ===== CTA SECTION ===== */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a000a 0%, #330013 100%);
    color: white;
    text-align: center;
}

.cta-section h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-secondary {
    background: white;
    color: var(--primary);
    border-color: white;
}

.cta-section .btn-secondary:hover {
    background: var(--primary);
    color: white;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark-bg);
    color: white;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.footer-col p {
    color: #cbd5e1;
    margin-bottom: 1.5rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    color: #cbd5e1;
}

/* ===== ANIMATIONS ===== */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }

    .hero {
        margin-top: 60px;
        padding: 60px 0;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .hero-cta .btn {
        width: 100%;
    }

    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .work-card-large {
        grid-column: auto;
        grid-row: auto;
    }

    .work-card-large .work-image {
        height: 250px;
    }

    .timeline-marker {
        width: 50px;
        height: 50px;
    }

    .pricing-card.featured {
        transform: scale(1);
    }

    .cta-section h2 {
        font-size: 2rem;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-header h2 {
        font-size: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-stats-grid {
        grid-template-columns: 1fr;
    }

    .nav-logo {
        font-size: 1.25rem;
    }

    .nav-menu {
        gap: 1.5rem;
    }
}

/* ===== ADVANCED ANIMATIONS ===== */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}

.card-3d {
    perspective: 1000px;
    transform-style: preserve-3d;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.card-3d:hover {
    transform: rotateX(5deg) rotateY(-5deg) translateZ(10px);
}

.directional-card {
    position: relative;
    overflow: hidden;
}

.directional-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    transition: left 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    pointer-events: none;
}

.directional-card:hover::before {
    left: 100%;
}

.glow-on-hover {
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(99, 102, 241, 0);
}

.glow-on-hover:hover {
    box-shadow: 0 0 40px rgba(99, 102, 241, 0.4);
    filter: brightness(1.05);
}

@keyframes staggerFadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stagger-item {
    opacity: 0;
    transform: translateY(30px);
}

.stagger-item.visible {
    animation: staggerFadeUp 0.8s ease-out forwards;
}

.stagger-item:nth-child(1) { animation-delay: 0.1s; }
.stagger-item:nth-child(2) { animation-delay: 0.2s; }
.stagger-item:nth-child(3) { animation-delay: 0.3s; }
.stagger-item:nth-child(4) { animation-delay: 0.4s; }

/* Smooth transitions */
a, button {
    transition: all 0.3s ease;
}
