/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --dark-gray: #1a1a1a;
    --gray: #666666;
    --light-gray: #999999;
    --white: #ffffff;
    --accent: #00ff88;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Space Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

::selection {
    background: var(--accent);
    color: var(--black);
}

/* ===== Custom Cursor ===== */
.cursor {
    display: none;
}

.cursor-follower {
    display: none;
}

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 4rem;
    mix-blend-mode: difference;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    letter-spacing: -0.02em;
}

.nav-container > div:first-child {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.nav-social {
    display: flex;
    gap: 0.75rem;
}

.nav-social-link {
    font-size: 1.25rem;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
    color: var(--white);
}

.nav-social-link:hover {
    transform: translateY(-2px);
    opacity: 0.7;
}

.nav-social-link i {
    width: 18px;
    height: 18px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.nav-link {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 400;
    transition: opacity 0.3s ease;
}

.nav-link:hover {
    opacity: 0.6;
}

.nav-link-cta {
    padding: 0.75rem 1.5rem;
    border: 1px solid var(--white);
    border-radius: 50px;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 30px;
    height: 1px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* ===== Mobile Menu ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--black);
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 4rem 2rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    text-align: center;
}

.mobile-link {
    font-size: 3rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.mobile-link:hover {
    opacity: 0.6;
}

.mobile-menu-footer {
    margin-top: 4rem;
    text-align: center;
}

.mobile-menu-footer p {
    color: var(--gray);
    margin-bottom: 1rem;
}

.mobile-social {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.mobile-social a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.9rem;
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    position: relative;
    padding: 0 4rem;
    padding-top: 20vh;
}

.hero-content {
    text-align: center;
    max-width: 1200px;
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}

.hero-title .line {
    display: block;
    overflow: hidden;
}

.hero-title .line span {
    display: inline-block;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.5vw, 1.15rem);
    color: var(--gray);
    font-weight: 400;
    max-width: 600px;
    margin: 0 auto;
}

.hero-scroll {
    position: absolute;
    bottom: 4rem;
    left: 4rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--gray);
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 40px;
    height: 1px;
    background: var(--gray);
}

/* ===== Stats Section ===== */
.stats {
    padding: 4rem 4rem;
    border-top: 1px solid var(--dark-gray);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.stat-label {
    color: var(--gray);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* ===== Section Headers ===== */
.section-header {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section-number {
    font-size: 1rem;
    color: var(--gray);
    font-weight: 300;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.02em;
}

/* ===== Work Section ===== */
.work {
    padding: 5rem 4rem;
    border-top: 1px solid var(--dark-gray);
}

/* ===== Region Carousel ===== */
.region-container {
    max-width: 1200px;
    margin: 0 auto 4rem;
    text-align: center;
}

.region-title {
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2rem;
    font-weight: 400;
}

.region-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.region-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollRegions 25s linear infinite;
}

.region-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollRegions {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.region-item {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    padding: 0;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: var(--black);
    border-radius: 50%;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.region-item:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.05);
}

.region-logo {
    width: 110%;
    height: 110%;
    object-fit: cover;
    display: block;
    margin: -5%;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.work-item {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.work-item:hover {
    transform: translateY(-5px);
}

.work-image {
    position: relative;
    aspect-ratio: 1;
    background: var(--dark-gray);
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 4px;
}

.work-item:nth-child(1) .work-image {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.work-item:nth-child(2) .work-image {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.work-item:nth-child(3) .work-image {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.work-item:nth-child(4) .work-image {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.work-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-item:hover .work-overlay {
    opacity: 1;
}

.work-category {
    padding: 0.5rem 1rem;
    border: 1px solid var(--white);
    color: var(--white);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 20px;
}

.work-info {
    padding: 0;
}

.work-title {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0;
}

.work-desc {
    color: var(--gray);
    font-size: 0.85rem;
    line-height: 1.4;
}

/* ===== Brands Section ===== */
.brands {
    padding: 4rem 4rem;
    border-top: 1px solid var(--dark-gray);
    background: var(--black);
}

.brands-container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.brands-title {
    font-size: 0.875rem;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 3rem;
    font-weight: 400;
}

.brands-grid {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.brands-scroll {
    display: flex;
    gap: 2rem;
    animation: scrollBrands 30s linear infinite;
}

.brands-scroll:hover {
    animation-play-state: paused;
}

@keyframes scrollBrands {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

.brand-item {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    padding: 1.5rem 3rem;
    border: 1px solid rgba(0, 255, 136, 0.2);
    background: var(--black);
    border-radius: 4px;
    transition: all 0.3s ease;
    opacity: 0.8;
    text-align: center;
    flex-shrink: 0;
    white-space: nowrap;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80px;
}

.brand-item:hover {
    opacity: 1;
    border-color: var(--accent);
    transform: scale(1.05);
}

.brand-logo {
    max-width: 140px;
    max-height: 50px;
    object-fit: contain;
    display: block;
}

/* ===== Services Section ===== */
.services {
    padding: 5rem 4rem;
    border-top: 1px solid var(--dark-gray);
}

.services-list {
    max-width: 1200px;
    margin: 0 auto;
}

.service-item {
    display: flex;
    gap: 2rem;
    padding: 2rem 0;
    border-bottom: 1px solid var(--dark-gray);
    transition: all 0.4s ease;
}

.service-item:hover {
    padding-left: 2rem;
}

.service-number {
    font-size: 1.5rem;
    color: var(--gray);
    font-weight: 300;
    min-width: 80px;
}

.service-content {
    flex: 1;
}

.service-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.service-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
}

/* ===== About Section ===== */
.about {
    padding: 5rem 4rem;
    border-top: 1px solid var(--dark-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.about-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin: 1.5rem 0;
    letter-spacing: -0.02em;
}

.about-desc {
    color: var(--gray);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    margin-top: 2rem;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.about-card {
    background: var(--dark-gray);
    padding: 3rem;
    border-radius: 0;
    margin-top: 4rem;
}

.about-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: -0.01em;
}

.about-list {
    list-style: none;
}

.about-list li {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray);
    font-size: 1.1rem;
}

.about-list li:last-child {
    border-bottom: none;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 6rem 4rem;
    border-top: 1px solid var(--dark-gray);
    text-align: center;
}

.cta-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2rem;
    letter-spacing: -0.02em;
}

.btn-large {
    display: inline-block;
    padding: 1.5rem 4rem;
    background: var(--white);
    color: var(--black);
    text-decoration: none;
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-large:hover {
    background: var(--accent);
    transform: translateY(-3px);
}

/* ===== Contact Section ===== */
.contact {
    padding: 5rem 4rem;
    border-top: 1px solid var(--dark-gray);
}

.inquire-box {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.inquire-box h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.inquire-box p {
    font-size: 1.25rem;
    color: var(--light-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.inquire-box .btn-large {
    font-size: 1.1rem;
    padding: 1rem 3rem;
}

.inquire-email {
    margin: 2rem 0;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.inquire-email p {
    font-size: 0.9rem;
    color: var(--light-gray);
    margin-bottom: 0.75rem;
}

.email-link {
    font-size: 1.5rem;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-block;
}

.email-link:hover {
    color: var(--accent);
}

/* ===== Enquiry Form Page ===== */
.enquiry-section {
    padding: 8rem 4rem 6rem;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.enquiry-container {
    max-width: 800px;
    margin: 0 auto;
    width: 100%;
}

.enquiry-header {
    text-align: center;
    margin-bottom: 4rem;
}

.enquiry-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white) 0%, var(--accent) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.enquiry-header p {
    font-size: 1.25rem;
    color: var(--light-gray);
    line-height: 1.6;
}

.enquiry-form {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 3rem;
    backdrop-filter: blur(10px);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 2rem;
}

.form-group label {
    font-size: 0.9rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 1.25rem;
    color: var(--white);
    font-size: 1rem;
    font-family: 'Space Grotesk', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 3px rgba(0, 255, 136, 0.1);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: var(--black);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.checkbox-group label {
    margin: 0;
    font-size: 0.95rem;
    text-transform: none;
    letter-spacing: normal;
    cursor: pointer;
}

.btn-submit {
    width: 100%;
    padding: 1.5rem 3rem;
    background: var(--accent);
    color: var(--black);
    border: none;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-submit:hover:not(:disabled) {
    background: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.btn-loading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.enquiry-success {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    backdrop-filter: blur(10px);
}

.success-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 2rem;
}

.enquiry-success h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--white);
}

.enquiry-success p {
    font-size: 1.1rem;
    color: var(--light-gray);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.enquiry-success .btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--black);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.enquiry-success .btn-primary:hover {
    background: var(--white);
    transform: translateY(-2px);
}

/* Mobile responsiveness for enquiry form */
@media (max-width: 768px) {
    .enquiry-section {
        padding: 6rem 2rem 4rem;
    }
    
    .enquiry-header h1 {
        font-size: 2.5rem;
    }
    
    .enquiry-form {
        padding: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 1.5rem;
    }
    
    .checkbox-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
}

/* ===== Footer ===== */
.footer {
    padding: 6rem 4rem 3rem;
    border-top: 1px solid var(--dark-gray);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
}

.footer-logo {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: var(--gray);
    font-size: 0.95rem;
}

.footer-links {
    display: flex;
    gap: 6rem;
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-column h4 {
    font-size: 0.85rem;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: var(--white);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 3rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 1s ease forwards;
}

/* ===== Responsive Design ===== */
@media (max-width: 1024px) {
    .nav {
        padding: 2rem;
    }

    .hero {
        padding: 0 2rem;
    }

    .stats,
    .work,
    .brands,
    .services,
    .about,
    .cta-section,
    .contact,
    .footer {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }


    .about-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }

    .footer-links {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .hamburger.active span:nth-child(2) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .work-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }


    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 4rem;
    }

    .service-item {
        flex-direction: column;
        gap: 1rem;
    }

    .footer-content {
        flex-direction: column;
        gap: 3rem;
    }

    .footer-links {
        flex-direction: column;
        gap: 2rem;
    }

    .hero-scroll {
        left: 2rem;
        bottom: 2rem;
    }
}

@media (max-width: 480px) {
    .nav {
        padding: 1.5rem;
    }

    .mobile-link {
        font-size: 2rem;
    }

    .work-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .brand-item {
        font-size: 1rem;
        padding: 1rem 2rem;
    }

    body {
        cursor: auto;
    }
}

/* ===== Smooth Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
