:root {
    --gold: #d1a24a;
    --gold-light: #e8c580;
    --gold-dark: #b8903d;
    --olive: #151e1a;
    --olive-light: #1f2b26;
    --black: #0a0a0c;
    --white: #ffffff;
    --gray: #8a8a8a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Space Grotesk", sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

html {
    overflow-x: hidden;
    width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Orbitron", sans-serif;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -1px;
}

/* Cursor Effect */
.cursor {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: 0.15s;
    mix-blend-mode: difference;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.8rem 6%;
    border-bottom: 1px solid rgba(209, 162, 74, 0.15);
    transition: all 0.3s;
}

nav.scrolled {
    padding: 1.2rem 6%;
    background: rgba(10, 10, 12, 0.95);
    box-shadow: 0 10px 40px rgba(209, 162, 74, 0.1);
}

.nav-container {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: "Orbitron", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.logo:hover {
    transform: scale(1.05);
}

.logo .nn {
    color: var(--gold);
    text-shadow: 0 0 20px rgba(209, 162, 74, 0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(209, 162, 74, 0.5);
    }
    to {
        text-shadow: 0 0 30px rgba(209, 162, 74, 0.8),
            0 0 40px rgba(209, 162, 74, 0.4);
    }
}

.logo-subtitle {
    font-family: "Space Grotesk", sans-serif;
    font-size: 0.5rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 400;
    margin-top: -8px;
    text-align: center;
}

.nav-links {
    display: flex;
    gap: 3rem;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    position: relative;
    transition: color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-links a::before {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: translateX(-50%);
    transition: width 0.3s;
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::before {
    width: 100%;
}

.menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem 1rem;
    transition: all 0.3s;
}

.menu-toggle:hover {
    background: var(--gold);
    color: var(--black);
}

/* Hero Section - ULTRA PREMIUM */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--black);
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(
            circle at 30% 30%,
            rgba(209, 162, 74, 0.15) 0%,
            transparent 40%
        ),
        radial-gradient(
            circle at 70% 70%,
            rgba(21, 30, 26, 0.5) 0%,
            transparent 40%
        );
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%,
    100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: linear-gradient(
            rgba(209, 162, 74, 0.03) 1px,
            transparent 1px
        ),
        linear-gradient(90deg, rgba(209, 162, 74, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    animation: gridMove 20s linear infinite;
}

@keyframes gridMove {
    0% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(50px, 50px);
    }
}

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 1400px;
    padding: 0 6%;
}

.hero-badge {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: rgba(209, 162, 74, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 2rem;
    text-transform: uppercase;
    font-weight: 600;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: clamp(4rem, 12vw, 10rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--white) 0%,
        var(--gold-light) 50%,
        var(--gold) 100%
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: fadeInUp 1s ease-out 0.2s backwards;
    line-height: 0.9;
}

.hero .tagline {
    font-size: clamp(1.5rem, 4vw, 3rem);
    color: var(--gold);
    font-weight: 700;
    margin-bottom: 2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    animation: fadeInUp 1s ease-out 0.4s backwards;
}

.hero-description {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--gray);
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s backwards;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s backwards;
}

.btn {
    padding: 1.3rem 3rem;
    font-size: 1rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.4s;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.2),
        transparent
    );
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--black);
    box-shadow: 0 15px 50px rgba(209, 162, 74, 0.4);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 60px rgba(209, 162, 74, 0.6);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--gold);
}

@keyframes bounce {
    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-20px);
    }
    60% {
        transform: translateX(-50%) translateY(-10px);
    }
}

/* Section Styles */
section {
    padding: 8rem 6%;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 5rem;
}

.section-label {
    display: inline-block;
    padding: 0.6rem 1.5rem;
    background: rgba(209, 162, 74, 0.1);
    border: 1px solid var(--gold);
    color: var(--gold);
    font-size: 0.75rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 600;
}

.section-header h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    margin-bottom: 1.5rem;
    color: var(--white);
}

.section-header .accent {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

/* About Section - EPIC */
.about {
    background: linear-gradient(180deg, var(--black) 0%, var(--olive) 100%);
    position: relative;
}

.about::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.about-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.about-image {
    position: relative;
    height: 600px;
    overflow: hidden;
    border: 2px solid var(--gold);
    box-shadow: 0 30px 80px rgba(209, 162, 74, 0.3);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.1);
}

.about-image::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(209, 162, 74, 0.3), transparent);
    z-index: 1;
}

.about-content h3 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.about-content p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.9;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}

.stat-box {
    padding: 2.5rem;
    background: rgba(10, 10, 12, 0.6);
    border: 2px solid rgba(209, 162, 74, 0.3);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.stat-box::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.3s;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(209, 162, 74, 0.3);
}

.stat-box h4 {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-family: "Orbitron", sans-serif;
}

.stat-box p {
    color: var(--gray);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.splide__track {
    align-items: stretch;
}

.splide__slide {
    display: flex;
    height: auto;
}
/* Services Section - POWERFUL */
.services {
    background: var(--black);
    position: relative;
}

.services::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.services-slider {
    max-width: 1600px;
    margin: 0 auto;
}

.service-card {
    background: linear-gradient(
        135deg,
        var(--olive) 0%,
        var(--olive-light) 100%
    );
    padding: 4rem;
    border: 2px solid rgba(209, 162, 74, 0.2);
    position: relative;
    overflow: hidden;
    transition: all 0.4s;
    min-height: 550px;
    height: auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card::before {
    content: "";
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: -1;
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(209, 162, 74, 0.4);
}

.service-icon {
    font-size: 4rem;
    color: var(--gold);
    margin-bottom: 2rem;
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.2) rotate(10deg);
}

.service-card h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.service-card p {
    color: var(--gray);
    line-height: 1.8;
    font-size: 1.1rem;
}

.service-number {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 6rem;
    font-weight: 900;
    color: rgba(209, 162, 74, 0.1);
    font-family: "Orbitron", sans-serif;
}

/* Portfolio Section - STUNNING */
.portfolio {
    background: linear-gradient(180deg, var(--black) 0%, var(--olive) 100%);
    position: relative;
}

.portfolio::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.portfolio-slider {
    max-width: 1600px;
    margin: 0 auto;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    height: 600px;
    border: 2px solid rgba(209, 162, 74, 0.3);
    cursor: pointer;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    filter: grayscale(30%);
}

.portfolio-item:hover img {
    transform: scale(1.15);
    filter: grayscale(0%);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(
        to top,
        rgba(10, 10, 12, 0.98) 0%,
        rgba(10, 10, 12, 0.8) 70%,
        transparent 100%
    );
    padding: 3rem;
    transform: translateY(50px);
    opacity: 0;
    transition: all 0.5s;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
    opacity: 1;
}

.portfolio-category {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: var(--gold);
    color: var(--black);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    text-transform: uppercase;
    font-weight: 700;
}

.portfolio-overlay h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.portfolio-overlay p {
    color: var(--gray);
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.portfolio-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: gap 0.3s;
}

.portfolio-link:hover {
    gap: 1rem;
}

/* Process Section - SOPHISTICATED */
.process {
    background: var(--black);
    position: relative;
}

.process::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.process-timeline {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), transparent);
}

.process-item {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    position: relative;
}

.process-item:nth-child(even) .process-content {
    order: 2;
}

.process-item:nth-child(even) .process-visual {
    order: 1;
}

.process-content {
    padding: 3rem;
    background: var(--olive);
    border: 2px solid rgba(209, 162, 74, 0.3);
    position: relative;
}

.process-content::before {
    content: "";
    position: absolute;
    top: 50%;
    width: 40px;
    height: 2px;
    background: var(--gold);
}

.process-item:nth-child(odd) .process-content::before {
    right: -40px;
}

.process-item:nth-child(even) .process-content::before {
    left: -40px;
}

.process-number {
    font-size: 5rem;
    font-weight: 900;
    color: var(--gold);
    opacity: 0.2;
    font-family: "Orbitron", sans-serif;
    line-height: 1;
}

.process-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.process-content p {
    color: var(--gray);
    font-size: 1.1rem;
    line-height: 1.8;
}

.process-visual {
    height: 300px;
    background: linear-gradient(
        135deg,
        rgba(209, 162, 74, 0.1),
        rgba(21, 30, 26, 0.5)
    );
    border: 2px solid rgba(209, 162, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: var(--gold);
}

/* Testimonials Section - ELEGANT */
.testimonials {
    background: linear-gradient(180deg, var(--black) 0%, var(--olive) 100%);
    position: relative;
}

.testimonials::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: rgba(10, 10, 12, 0.6);
    padding: 5rem;
    border: 2px solid rgba(209, 162, 74, 0.3);
    text-align: center;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 2rem;
    left: 3rem;
    font-size: 10rem;
    color: rgba(209, 162, 74, 0.1);
    font-family: Georgia, serif;
    line-height: 1;
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 2rem;
}

.testimonial-text {
    font-size: 1.5rem;
    font-style: italic;
    color: var(--white);
    margin-bottom: 3rem;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--black);
    font-weight: 900;
    border: 3px solid var(--gold);
}

.author-info h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.author-info p {
    color: var(--gray);
    font-size: 1rem;
}


/* Team Section - POWERFUL */
.team {
    background: var(--black);
    position: relative;
}

.team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.team-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.team-member {
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(209, 162, 74, 0.3);
    background: var(--olive);
    transition: all 0.4s;
    cursor: pointer;
}

.team-member:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(209, 162, 74, 0.4);
}

.team-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
    filter: grayscale(50%);
}

.team-member:hover .team-image img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.team-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(10, 10, 12, 0.9) 0%, transparent 50%);
    z-index: 1;
}

.team-info {
    padding: 2rem;
    position: relative;
}

.team-info h3 {
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.team-role {
    color: var(--gold);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    font-weight: 600;
}

.team-bio {
    color: var(--gray);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-social {
    display: flex;
    gap: 1rem;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: rgba(209, 162, 74, 0.1);
    border: 1px solid rgba(209, 162, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all 0.3s;
    font-size: 1rem;
}

.team-social a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.team-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: var(--gold);
    color: var(--black);
    padding: 0.5rem 1rem;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 2;
}

/* Clients Section - PRESTIGIOUS */
.clients {
    background: linear-gradient(180deg, var(--olive) 0%, var(--black) 100%);
    position: relative;
}

.clients::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.clients-grid {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.client-card {
    background: rgba(10, 10, 12, 0.5);
    border: 2px solid rgba(209, 162, 74, 0.2);
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
    min-height: 200px;
}

.client-card::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 0;
}

.client-card:hover::before {
    opacity: 1;
}

.client-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(209, 162, 74, 0.3);
}

.client-logo {
    max-height: 90px;
    font-size: 3.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: all 0.4s;
    position: relative;
    z-index: 1;
}

.client-card:hover .client-logo {
    color: var(--black);
    transform: scale(1.2) rotate(10deg);
}

.client-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.client-card:hover .client-name {
    color: var(--black);
}

.client-industry {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.client-card:hover .client-industry {
    color: var(--olive);
    font-weight: 600;
}

.client-project {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.4s;
}

.client-card:hover .client-project {
    color: var(--black);
}

.clients-marquee {
    margin-top: 4rem;
    overflow: hidden;
    position: relative;
}

.clients-track {
    display: flex;
    gap: 4rem;
    animation: scroll 30s linear infinite;
}

@keyframes scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.client-logo-simple {
    font-size: 2.5rem;
    color: rgba(209, 162, 74, 0.3);
    transition: all 0.3s;
    cursor: pointer;
    min-width: 100px;
    text-align: center;
}

.client-logo-simple:hover {
    color: var(--gold);
    transform: scale(1.2);
}


/* Contact Section - PREMIUM */
.contact {
    background: var(--black);
    position: relative;
}

.contact::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.contact-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    padding: 4rem;
}

.contact-info h3 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: var(--gold);
}

.contact-info p {
    font-size: 1.2rem;
    color: var(--gray);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--olive);
    border: 2px solid var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--gold);
}

.contact-item-text h4 {
    color: var(--white);
    margin-bottom: 0.3rem;
}

.contact-item-text p {
    color: var(--gray);
    font-size: 1rem;
    margin: 0;
}

.contact-form-container {
    background: var(--olive);
    padding: 4rem;
    border: 2px solid rgba(209, 162, 74, 0.3);
}

.contact-form {
    display: grid;
    gap: 2rem;
}

.form-group {
    display: grid;
    gap: 0.8rem;
}

.form-group label {
    color: var(--gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1.2rem;
    background: rgba(10, 10, 12, 0.6);
    border: 2px solid rgba(209, 162, 74, 0.3);
    color: var(--white);
    font-family: "Space Grotesk", sans-serif;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(209, 162, 74, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 180px;
}

.form-submit {
    margin-top: 1rem;
}

/* Footer - DOMINANT */
footer {
    background: var(--black);
    padding: 6rem 6% 3rem;
    border-top: 2px solid rgba(209, 162, 74, 0.2);
    position: relative;
}

footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand {
    padding-right: 2rem;
}

.footer-brand h3 {
    font-family: "Orbitron", sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: -2px;
}

.footer-brand .nn {
    color: var(--gold);
}

.footer-brand .tagline {
    color: var(--gold);
    font-size: 0.9rem;
    letter-spacing: 3px;
    margin-bottom: 1.5rem;
    display: block;
    font-weight: 600;
}

.footer-brand p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: var(--olive);
    border: 2px solid rgba(209, 162, 74, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    color: var(--gold);
    font-size: 1.2rem;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-5px);
}

.footer-links h4 {
    color: var(--gold);
    margin-bottom: 2rem;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: var(--gray);
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--gold);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid rgba(209, 162, 74, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 0.9rem;
}

.footer-bottom .gold {
    color: var(--gold);
    font-weight: 600;
}

/* Splide Customization */
.splide__arrow {
    background: var(--gold);
    opacity: 1;
    width: 50px;
    height: 50px;
}

.splide__arrow:hover {
    background: var(--gold-light);
}

.splide__arrow svg {
    fill: var(--black);
}

.splide__pagination__page {
    background: rgba(209, 162, 74, 0.3);
}

.splide__pagination__page.is-active {
    background: var(--gold);
    transform: scale(1.3);
}

/* Responsive Design */
@media (max-width: 1200px) {
    .about-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .process-timeline::before {
        display: none;
    }

    .process-item {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .process-item:nth-child(even) .process-content {
        order: 1;
    }

    .process-item:nth-child(even) .process-visual {
        order: 2;
    }

    .process-content::before {
        display: none;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    html,
    body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
    }

    * {
        max-width: 100%;
    }

    nav {
        padding: 1.2rem 4%;
    }

    .nav-container {
        width: 100%;
    }

    .logo {
        font-size: 1.5rem;
    }

    .logo-subtitle {
        font-size: 0.45rem;
        letter-spacing: 2px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(10, 10, 12, 0.98);
        flex-direction: column;
        padding: 2rem 5%;
        gap: 1.5rem;
        border-top: 1px solid rgba(209, 162, 74, 0.2);
        width: 100%;
    }

    .nav-links.active {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    section {
        padding: 4rem 5%;
        width: 100%;
    }

    .hero {
        min-height: 100vh;
        padding: 6rem 5% 4rem;
    }

    .hero-content {
        padding: 0 2%;
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(3rem, 15vw, 5rem);
        word-break: break-word;
    }

    .hero .tagline {
        font-size: clamp(1rem, 5vw, 1.5rem);
        letter-spacing: 2px;
    }

    .hero-description {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        padding: 0 1rem;
    }

    .btn {
        width: 100%;
        padding: 1.2rem 2rem;
        font-size: 0.9rem;
    }

    .section-header h2 {
        font-size: clamp(2rem, 8vw, 3rem);
        word-break: break-word;
    }

    .section-header p {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .about-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        width: 100%;
    }

    .about-image {
        height: 300px;
        width: 100%;
    }

    .about-content {
        padding: 0;
    }

    .about-content h3 {
        font-size: 1.8rem;
    }

    .about-content p {
        font-size: 1rem;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-box {
        padding: 1.5rem;
    }

    .stat-box h4 {
        font-size: 3rem;
    }

    .service-card,
    .portfolio-item {
        height: auto;
        min-height: 350px;
        padding: 2rem;
    }

    .service-number {
        font-size: 4rem;
        top: 1rem;
        right: 1rem;
    }

    .service-icon {
        font-size: 3rem;
    }

    .service-card h3 {
        font-size: 1.5rem;
    }

    .service-card p {
        font-size: 1rem;
    }

    .portfolio-item {
        height: 400px;
    }

    .portfolio-overlay {
        padding: 1.5rem;
    }

    .portfolio-overlay h3 {
        font-size: 1.5rem;
    }

    .portfolio-overlay p {
        font-size: 1rem;
    }

    .process-item {
        margin-bottom: 3rem;
    }

    .process-content {
        padding: 2rem;
    }

    .process-number {
        font-size: 3rem;
    }

    .process-content h3 {
        font-size: 1.5rem;
    }

    .process-content p {
        font-size: 1rem;
    }

    .process-visual {
        height: 200px;
        font-size: 3rem;
    }

    .testimonial-card {
        padding: 2rem 1.5rem;
    }

    .testimonial-card::before {
        font-size: 6rem;
        top: 1rem;
        left: 1rem;
    }

    .testimonial-text {
        font-size: 1.1rem;
    }

    .testimonial-author {
        flex-direction: column;
        gap: 1rem;
    }

    .author-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .contact-info {
        padding: 2rem 0;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-info p {
        font-size: 1rem;
    }

    .contact-form-container {
        padding: 2rem 1.5rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 1rem;
        font-size: 0.95rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-brand {
        padding-right: 0;
    }

    .footer-brand h3 {
        font-size: 2rem;
    }

    .social-links a {
        width: 45px;
        height: 45px;
        font-size: 1rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .scroll-indicator i {
        font-size: 1.5rem;
    }

    .cursor {
        display: none;
    }

    .hero-grid {
        background-size: 30px 30px;
    }

    .splide__arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    nav {
        padding: 1rem 4%;
    }

    .logo {
        font-size: 1.3rem;
    }

    .hero h1 {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .section-header h2 {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .about-content h3 {
        font-size: 1.5rem;
    }

    .stat-box h4 {
        font-size: 2.5rem;
    }

    .service-card,
    .testimonial-card {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 1.5rem 1rem;
    }
}
