/*
═══════════════════════════════════════════════════════════════
   NEXUS BRAND SUPPLY - Marketing Website for Suppliers
   Premium FBA Partner Acquisition Design
═══════════════════════════════════════════════════════════════
*/

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Rajdhani:wght@300;400;500;600;700&display=swap');

/* ═══════════════════════════════════════════════════════════════
   VARIABLES
   ═══════════════════════════════════════════════════════════════ */
:root {
    --neon-green: #39FF14;
    --neon-glow: rgba(57, 255, 20, 0.5);
    --neon-subtle: rgba(57, 255, 20, 0.15);
    --black: #000000;
    --black-light: #0a0a0a;
    --black-card: #111111;
    --white: #ffffff;
    --gray: #888888;
    --gray-light: #cccccc;
    --gray-dark: #333333;
}

/* ═══════════════════════════════════════════════════════════════
   RESET & BASE
   ═══════════════════════════════════════════════════════════════ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Rajdhani', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--neon-green);
    color: var(--black);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-green {
    color: var(--neon-green);
}

/* ═══════════════════════════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    background: rgba(0, 0, 0, 0.95);
    padding: 1rem 0;
    border-bottom: 2px solid var(--neon-green);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.8rem 0;
    box-shadow: 0 0 30px var(--neon-subtle);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
}

.logo-image {
    height: 45px;
    width: auto;
    filter: drop-shadow(0 0 10px var(--neon-glow));
    transition: all 0.3s ease;
}

.logo:hover .logo-image {
    filter: drop-shadow(0 0 20px var(--neon-glow));
}

.logo-text {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 2px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
}

.nav-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
}

.nav-links a:hover {
    color: var(--neon-green);
}

.lang-switch {
    background: var(--neon-green) !important;
    color: var(--black) !important;
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 700;
}

.lang-switch:hover {
    box-shadow: 0 0 20px var(--neon-glow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--neon-green);
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION WITH IMAGE
   ═══════════════════════════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: 120px 20px 80px;
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.7) 0%,
            rgba(0, 0, 0, 0.85) 50%,
            rgba(0, 0, 0, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 900px;
}

.hero-tag {
    font-size: 1rem;
    color: var(--neon-green);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3rem, 10vw, 5.5rem);
    color: var(--neon-green);
    text-shadow: 0 0 40px var(--neon-glow), 0 0 80px var(--neon-glow);
    margin-bottom: 1.5rem;
    letter-spacing: 6px;
    line-height: 1.1;
}

.text-glow {
    display: block;
    animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        text-shadow: 0 0 40px var(--neon-glow);
    }

    50% {
        text-shadow: 0 0 60px var(--neon-glow), 0 0 100px var(--neon-glow);
    }
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 650px;
    margin: 0 auto 2.5rem;
    color: var(--gray-light);
    line-height: 1.8;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.hero-cta-sub {
    font-size: 0.9rem;
    color: var(--gray);
}

/* ═══════════════════════════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════════════════════════ */
.stats-bar {
    background: var(--black-card);
    border-top: 1px solid var(--neon-green);
    border-bottom: 1px solid var(--neon-green);
    padding: 2.5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.stat-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-glow);
    letter-spacing: 2px;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ═══════════════════════════════════════════════════════════════
   SECTIONS
   ═══════════════════════════════════════════════════════════════ */
.section {
    padding: 5rem 0;
}

.section-dark {
    background: var(--black-light);
}

.section-tag {
    font-size: 0.85rem;
    color: var(--neon-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.section-tag-center {
    font-size: 0.85rem;
    color: var(--neon-green);
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    font-weight: 600;
    text-align: center;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    text-align: center;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 4px;
}

.section-title-left {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2rem, 5vw, 2.8rem);
    color: var(--white);
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    line-height: 1.2;
}

.neon-line {
    width: 80px;
    height: 3px;
    background: var(--neon-green);
    margin: 0 auto 3rem;
    box-shadow: 0 0 15px var(--neon-glow);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════════════════════
   SPLIT SECTIONS (IMAGE + TEXT)
   ═══════════════════════════════════════════════════════════════ */
.section-split {
    padding: 5rem 0;
}

.split-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.section-split.reverse .split-content {
    direction: rtl;
}

.section-split.reverse .split-content>* {
    direction: ltr;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--gray-dark);
}

.feature-list {
    list-style: none;
    margin-bottom: 2rem;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--gray-light);
    font-size: 1rem;
    border-left: 2px solid var(--neon-green);
    margin-bottom: 0.5rem;
    background: var(--neon-subtle);
}

.feature-list li strong {
    color: var(--white);
    display: block;
    margin-bottom: 0.2rem;
}

/* ═══════════════════════════════════════════════════════════════
   SERVICES GRID
   ═══════════════════════════════════════════════════════════════ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-card {
    background: var(--black-card);
    padding: 2.5rem;
    border: 1px solid var(--gray-dark);
    position: relative;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: var(--neon-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 40px var(--neon-subtle);
}

.service-card.featured-card {
    border-color: var(--neon-green);
    background: linear-gradient(180deg, rgba(57, 255, 20, 0.1) 0%, var(--black-card) 30%);
}

.card-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 4rem;
    color: var(--neon-green);
    opacity: 0.15;
    position: absolute;
    top: 10px;
    right: 20px;
    line-height: 1;
}

.service-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.service-card p {
    color: var(--gray-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-tag {
    display: inline-block;
    font-size: 0.7rem;
    color: var(--neon-green);
    border: 1px solid var(--neon-green);
    padding: 4px 12px;
    letter-spacing: 1px;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   PROCESS SECTION
   ═══════════════════════════════════════════════════════════════ */
.section-process {
    background: var(--black);
    padding: 5rem 0;
}

.process-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.process-step {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
    padding: 2rem;
    text-align: center;
    flex: 1;
    min-width: 180px;
    max-width: 220px;
    transition: all 0.3s ease;
}

.process-step:hover {
    border-color: var(--neon-green);
    box-shadow: 0 0 30px var(--neon-subtle);
}

.process-number {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 20px var(--neon-glow);
    margin-bottom: 1rem;
}

.process-step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.process-step p {
    font-size: 0.85rem;
    color: var(--gray);
    line-height: 1.5;
}

.process-arrow {
    font-size: 1.5rem;
    color: var(--neon-green);
    text-shadow: 0 0 10px var(--neon-glow);
}

/* ═══════════════════════════════════════════════════════════════
   WHY LIST NEW
   ═══════════════════════════════════════════════════════════════ */
.why-list-new {
    list-style: none;
}

.why-list-new li {
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--gray-dark);
}

.why-list-new li:last-child {
    border-bottom: none;
}

.why-list-new li strong {
    color: var(--neon-green);
    font-size: 1rem;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 0.3rem;
}

.why-list-new li p {
    color: var(--gray-light);
    font-size: 0.95rem;
    margin: 0;
}

/* ═══════════════════════════════════════════════════════════════
   TESTIMONIALS
   ═══════════════════════════════════════════════════════════════ */
.testimonial-section {
    padding: 5rem 0;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.testimonial-card {
    background: var(--black-card);
    border: 1px solid var(--gray-dark);
    padding: 2.5rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    font-family: 'Bebas Neue', sans-serif;
    font-size: 5rem;
    color: var(--neon-green);
    opacity: 0.2;
    position: absolute;
    top: 10px;
    left: 20px;
    line-height: 1;
}

.testimonial-text {
    font-size: 1.05rem;
    color: var(--gray-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author strong {
    color: var(--white);
    display: block;
    font-size: 0.95rem;
}

.testimonial-author span {
    color: var(--gray);
    font-size: 0.85rem;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */
.cta-section {
    background: linear-gradient(135deg, var(--black) 0%, #0d1a00 100%);
    padding: 5rem 0;
    text-align: center;
    border-top: 1px solid var(--neon-green);
    border-bottom: 1px solid var(--neon-green);
}

.cta-content h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    color: var(--white);
    margin-bottom: 1rem;
    letter-spacing: 3px;
}

.cta-content p {
    color: var(--gray-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ═══════════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════════ */
.btn-neon {
    display: inline-block;
    background: transparent;
    color: var(--neon-green);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border: 2px solid var(--neon-green);
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    cursor: pointer;
    box-shadow: 0 0 15px var(--neon-subtle);
}

.btn-neon:hover {
    background: var(--neon-green);
    color: var(--black);
    box-shadow: 0 0 30px var(--neon-glow);
    transform: scale(1.02);
}

.btn-neon-small {
    display: inline-block;
    background: var(--neon-green);
    color: var(--black);
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.btn-neon-small:hover {
    box-shadow: 0 0 25px var(--neon-glow);
    transform: translateY(-2px);
}

.btn-neon-large {
    display: inline-block;
    background: var(--neon-green);
    color: var(--black);
    padding: 1.2rem 3rem;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px var(--neon-glow);
}

.btn-neon-large:hover {
    box-shadow: 0 0 40px var(--neon-glow);
    transform: scale(1.05);
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT SECTION
   ═══════════════════════════════════════════════════════════════ */
.contact-section {
    background: var(--black);
    padding: 5rem 0;
}

.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-desc {
    color: var(--gray-light);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item strong {
    display: block;
    color: var(--neon-green);
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.contact-item a {
    color: var(--white);
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--neon-green);
}

.contact-locations {
    display: flex;
    gap: 1.5rem;
}

.contact-locations span {
    font-size: 0.85rem;
    color: var(--gray);
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-dark);
}

/* Contact Form */
.contact-form-side {
    background: var(--black-card);
    padding: 2.5rem;
    border: 1px solid var(--gray-dark);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    background: var(--black);
    border: 1px solid var(--gray-dark);
    color: var(--white);
    font-size: 0.95rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--gray);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    box-shadow: 0 0 15px var(--neon-subtle);
}

.contact-form button {
    width: 100%;
    margin-top: 0.5rem;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.footer {
    background: var(--black-light);
    border-top: 1px solid var(--gray-dark);
    padding: 3rem 0 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 50px;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px var(--neon-glow));
}

.footer-brand p {
    color: var(--gray);
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-links a {
    color: var(--gray-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--neon-green);
}

.footer-services-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-services-list span {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-dark);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.85rem;
}

.footer-lang {
    display: flex;
    gap: 1rem;
}

.footer-lang a {
    color: var(--gray);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-lang a.active,
.footer-lang a:hover {
    color: var(--neon-green);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════════════ */
@media (max-width: 992px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .split-content,
    .contact-split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-split.reverse .split-content {
        direction: ltr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .process-arrow {
        display: none;
    }

    .process-grid {
        flex-direction: column;
    }

    .process-step {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--black);
        flex-direction: column;
        justify-content: center;
        padding: 2rem;
        border-left: 2px solid var(--neon-green);
        transition: right 0.3s ease;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }

    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .logo-text {
        display: none;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}