:root {
    --black: #0b0b0b;
    --graphite: #1a1a1a;
    --dark-gray: #2a2a2a;
    --medium-gray: #3a3a3a;
    --light-gray: #e0e0e0;
    --white: #ffffff;
    --yellow: #f5c400;
    --yellow-hover: #ffd700;
    --yellow-dark: #d4a800;
    --text-gray: #aaaaaa;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

/* Scroll animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* HEADER */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(11, 11, 11, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.3s ease;
}

header.scrolled {
    padding: 12px 0;
    background: rgba(11, 11, 11, 0.95);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.logo span {
    color: var(--white);
}

.logo {
    display: flex;
    align-items: center;
}

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

nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

nav a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

nav a:hover {
    color: var(--yellow);
}

.header-cta {
    background: var(--yellow);
    color: var(--black) !important;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 700 !important;
    font-size: 13px !important;
    transition: all 0.3s ease !important;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none;
    white-space: nowrap;
}

.header-cta:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.3);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
}

/* HERO */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--black);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/bg.jpg') center/cover no-repeat;
    z-index: 0;
}

.hero-bg::after {
    display: none;
}

.hero-overlay {
    background: rgba(0, 0, 0, 0.65);
    padding: 36px 40px;
    border-radius: 12px;
    width: fit-content;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: clamp(28px, 3.5vw, 48px);
    line-height: 1.1;
    margin-bottom: 12px;
    color: var(--white);
    max-width: 800px;
}

.hero h1 .accent {
    color: var(--white);
}

.hero-subtitle {
    font-size: 16px;
    color: var(--yellow);
    margin-bottom: 32px;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-features {
    display: flex;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hero-feature-icon {
    width: 24px;
    height: 24px;
    color: var(--yellow);
    flex-shrink: 0;
}

.hero-feature-text {
    font-size: 13px;
    color: var(--white);
    line-height: 1.3;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 18px 40px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--yellow);
    color: var(--black);
}

.btn-primary:hover {
    background: var(--yellow-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(245, 196, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--glass-border);
}

.btn-outline:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    transform: translateY(-3px);
}

/* SECTION STYLES */
section {
    padding: 120px 0;
}

.section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    color: var(--yellow);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section-label::before {
    content: '';
    width: 40px;
    height: 2px;
    background: var(--yellow);
}

.section-title {
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
}

.section-subtitle {
    font-size: 16px;
    color: var(--text-gray);
    max-width: 600px;
    margin-bottom: 60px;
}

/* SERVICES */
.services {
    background: var(--black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--dark-gray);
}

.service-card {
    background: var(--graphite);
    padding: 40px 32px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background: var(--dark-gray);
    transform: translateY(-5px);
}

.service-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 24px;
    color: var(--yellow);
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--white);
}

.service-card ul {
    list-style: none;
}

.service-card li {
    font-size: 14px;
    color: var(--text-gray);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    padding-left: 16px;
}

.service-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--yellow);
    transform: translateY(-50%);
    opacity: 0.5;
}

/* WHY US */
.why-us {
    background: var(--black);
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 0;
}

.why-us .container {
    position: relative;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.advantage-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.advantage-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border: 2px solid var(--yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    transition: all 0.3s ease;
}

.advantage-item:hover .advantage-icon {
    background: var(--yellow);
    color: var(--black);
    transform: scale(1.05);
}

.advantage-icon svg {
    width: 28px;
    height: 28px;
}

.advantage-text h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: none;
    letter-spacing: 0;
}

.advantage-text p {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* PRODUCTION */
.production {
    background: var(--graphite);
}

.production-gallery {
    display: none !important;
}

.production-animation {
    padding: 80px 0;
    text-align: center;
}

.animation-content {
    max-width: 800px;
    margin: 0 auto;
}

.animation-icon {
    font-size: 80px;
    margin-bottom: 30px;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.animation-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(36px, 5vw, 64px);
    color: var(--yellow);
    line-height: 1.1;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

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

.animation-text {
    font-size: 18px;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.3s backwards;
}

.loading-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.loading-dots span {
    width: 12px;
    height: 12px;
    background: var(--yellow);
    border-radius: 50%;
    animation: bounce 1.4s ease-in-out infinite;
}

.loading-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes bounce {
    0%, 100% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.5);
        opacity: 1;
    }
}

.animation-features {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.9s backwards;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: rgba(245, 196, 0, 0.1);
    border: 1px solid rgba(245, 196, 0, 0.3);
    border-radius: 50px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: rgba(245, 196, 0, 0.2);
    transform: translateY(-3px);
}

.feature-icon {
    font-size: 24px;
}

.feature-item span:last-child {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--yellow);
}

/* RESPONSIVE ANIMATION */
@media (max-width: 768px) {
    .animation-icon {
        font-size: 60px;
    }
    
    .animation-features {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }
    
    .feature-item {
        width: 100%;
        justify-content: center;
    }
}

.production-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    cursor: pointer;
}

.production-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.production-card:hover img {
    transform: scale(1.08);
}

.production-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(to top, rgba(11, 11, 11, 0.95), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.production-card:hover .production-overlay {
    transform: translateY(0);
}

.production-overlay h3 {
    font-size: 20px;
    color: var(--yellow);
    margin-bottom: 4px;
}

.production-overlay p {
    font-size: 13px;
    color: var(--text-gray);
}

.section-cta {
    text-align: center;
    margin-top: 60px;
}

/* PORTFOLIO */
.portfolio {
    background: var(--black);
}

.portfolio-filters {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 10px 24px;
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-gray);
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover, .filter-btn.active {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245, 196, 0, 0.05);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--dark-gray);
}

.portfolio-item {
    position: relative;
    height: 360px;
    overflow: hidden;
    cursor: pointer;
    background: var(--graphite);
}

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

.portfolio-item:hover img {
    transform: scale(1.06);
}

/* LIGHTBOX */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    justify-content: center;
    align-items: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 2001;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: lightboxFadeIn 0.3s ease;
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: none;
    border: none;
    color: var(--white);
    font-size: 48px;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 2002;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close:hover {
    color: var(--yellow);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2002;
    backdrop-filter: blur(10px);
}

.lightbox-prev {
    left: -70px;
}

.lightbox-next {
    right: -70px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--yellow);
    color: var(--black);
    border-color: var(--yellow);
}

.lightbox-caption {
    margin-top: 16px;
    color: var(--text-gray);
    font-size: 14px;
    text-align: center;
}

.portfolio-load-more {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 768px) {
    .lightbox-prev {
        left: 10px;
    }
    
    .lightbox-next {
        right: 10px;
    }
    
    .lightbox-close {
        top: -50px;
        right: 0;
    }
}

/* CONTRACTOR */
.contractor {
    background: var(--white);
    color: var(--black);
}

.contractor .section-title {
    color: var(--black);
}

.contractor .section-subtitle {
    color: #666;
}

.contractor-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 60px;
}

.contractor-item {
    padding: 32px;
    background: #f8f8f8;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contractor-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.contractor-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
    color: var(--yellow-dark);
}

.contractor-item h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    text-transform: none;
    letter-spacing: 0;
    color: var(--black);
}

.contractor-item p {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CONTACTS / FOOTER */
.contacts {
    background: var(--black);
    padding: 100px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid var(--dark-gray);
}

.footer-col h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--yellow);
}

.contact-info p {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-info a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: var(--yellow);
}

.social-links {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}

.social-link {
    width: 44px;
    height: 44px;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    border-color: var(--yellow);
    color: var(--yellow);
    background: rgba(245, 196, 0, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-input {
    padding: 16px 20px;
    background: var(--graphite);
    border: 1px solid var(--dark-gray);
    border-radius: 4px;
    color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--yellow);
}

.form-input::placeholder {
    color: var(--text-gray);
}

textarea.form-input {
    min-height: 120px;
    resize: vertical;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-gray);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--yellow);
}

.form-checkbox label {
    cursor: pointer;
}

.form-checkbox a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.form-checkbox a:hover {
    color: var(--yellow-hover);
    text-decoration: underline;
}

.map-container {
    height: 400px;
    background: var(--graphite);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.map-container iframe {
    width: 100% !important;
    height: 100% !important;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 12px;
    color: var(--text-gray);
    font-size: 14px;
    background: linear-gradient(135deg, var(--graphite), var(--dark-gray));
}

.footer-bottom {
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-gray);
}

.footer-bottom a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom a:hover {
    color: var(--yellow);
}

/* ANIMATIONS */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

    nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(11, 11, 11, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 24px;
        z-index: 999;
    }

    nav.active {
        display: flex;
    }

    nav a {
        font-size: 18px;
    }

    .mobile-toggle {
        display: block;
        z-index: 1001;
    }

    .header-cta {
        display: none;
    }

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

    .production-gallery {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

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

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

    .hero {
        min-height: 70vh;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero-subtitle {
        font-size: 14px;
        margin-bottom: 24px;
    }

    .hero-features {
        gap: 12px;
        margin-top: 16px;
    }

    .hero-buttons {
        margin-top: 16px;
    }

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

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

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

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

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .portfolio-filters {
        justify-content: center;
    }

    .logo img {
        height: 44px;
    }
}

/* SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: var(--dark-gray);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--medium-gray);
}

/* COOKIE CONSENT */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(11, 11, 11, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
    padding: 20px 0;
    z-index: 3000;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.cookie-consent.active {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cookie-text {
    flex: 1;
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.6;
}

.cookie-text a {
    color: var(--yellow);
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: var(--yellow-hover);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 12px 28px;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--yellow);
    color: var(--black);
}

.cookie-accept:hover {
    background: var(--yellow-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 196, 0, 0.3);
}

.cookie-decline {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--glass-border);
}

.cookie-decline:hover {
    border-color: var(--text-gray);
    color: var(--white);
}

/* RESPONSIVE COOKIE */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        gap: 20px;
        padding: 0 24px;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
    }
    
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}

/* LINE DECORATION */
.line-decoration {
    position: absolute;
    top: 0;
    left: 50%;
    width: 1px;
    height: 100%;
    background: linear-gradient(to bottom, transparent, var(--yellow), transparent);
    opacity: 0.1;
}
