:root {
    --primary-color: #fba437;
    /* Accents */
    --bg-color: #000000;
    --text-color: #ffffff;
    --text-muted: #abb8c3;
    --card-bg: #1a1a1a;
    --header-height: 80px;
    --container-width: 1200px;
    --transition: all 0.3s ease;
    --font-main: 'Outfit', sans-serif;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    height: var(--header-height);
    display: flex;
    align-items: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    height: 50px;
    width: auto;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    font-weight: 500;
    font-size: 16px;
    position: relative;
    opacity: 0.8;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
    opacity: 1;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    transition: var(--transition);
}

/* Sections */
section {
    padding: 80px 0;
}

.text-center {
    text-align: center;
    justify-content: center;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.section-title {
    font-size: clamp(2rem, 5vw, 2.8rem);
    font-weight: 700;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-muted);
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: transparent;
    border: 2px solid var(--text-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--text-color);
    color: var(--bg-color);
}

/* Hero */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000000 100%);
    padding-top: var(--header-height);
}

.hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    margin-bottom: 20px;
    background: linear-gradient(135deg, #fff 0%, #abb8c3 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.5rem);
    color: var(--text-muted);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: var(--border-radius);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-muted);
}

/* Works Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius);
    cursor: pointer;
    aspect-ratio: 1;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* Slider/Scroller Styles */
.slider-section {
    padding: 60px 0;
}

.scroller-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 15px;
}

.scroller-container {
    flex: 1;
    overflow-x: auto;
    padding: 20px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* Hide scrollbar for cleaner look */
    scroll-snap-type: x mandatory;
}

.scroller-container::-webkit-scrollbar {
    display: none;
}

.slider-btn {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    flex-shrink: 0;
    font-size: 20px;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.scroller-track {
    display: flex;
    gap: 30px;
    align-items: center;
    width: max-content;
    padding: 0 20px;
}

.scroller-item {
    scroll-snap-align: center;
    transition: var(--transition);
    flex-shrink: 0;
    border-radius: var(--border-radius);
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.scroller-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
}

/* Client Items */
.scroller-item.client {
    width: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
}

/* Review Items */
.scroller-item.review {
    width: 500px;
    max-width: 85vw;
}

.scroller-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Contact */
.contact {
    text-align: center;
    background-color: #0a0a0a;
}

.email-container {
    margin: 30px 0;
    font-size: clamp(1rem, 4vw, 1.4rem);
}

.email-container a {
    color: var(--primary-color);
    font-weight: 700;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--card-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: #000;
    transform: scale(1.1);
}

.social-link svg {
    width: 28px;
    height: 28px;
}

/* Footer */
.footer {
    padding: 40px 0;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.97);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 95%;
    max-height: 85vh;
    border-radius: 8px;
    animation: zoomIn 0.3s;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 45px;
    cursor: pointer;
    line-height: 1;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0
    }

    to {
        transform: scale(1);
        opacity: 1
    }
}

/* Responsive */
@media (max-width: 1024px) {
    :root {
        --container-width: 950px;
    }
}

@media (max-width: 768px) {
    section {
        padding: 60px 0;
    }

    .nav {
        position: fixed;
        top: var(--header-height);
        left: 0;
        width: 100%;
        background-color: var(--bg-color);
        padding: 50px 20px;
        transform: translateY(-100%);
        transition: var(--transition);
        z-index: 999;
        visibility: hidden;
        opacity: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: flex;
        justify-content: center;
    }

    .nav.open {
        transform: translateY(0);
        visibility: visible;
        opacity: 1;
    }

    .nav-list {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .section-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .scroller-item.client {
        width: 260px;
    }

    .slider-btn {
        display: none;
        /* Swipe only on mobile */
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .scroller-item.client {
        width: 220px;
    }
}