:root {
    --primary-cyan: #b38744;
    --primary-cyan-light: #c9a962;
    --primary-cyan-dark: #9a7339;
    --dark-bg: #0A0A0F;
    --dark-surface: #111118;
    --dark-card: #18181F;
    --text-primary: #FFFFFF;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-muted: rgba(255, 255, 255, 0.5);
    --accent-blue: #3B82F6;
    --accent-green: #10B981;
    --accent-orange: #F59E0B;
    --accent-red: #EF4444;
    --gradient-cyan: linear-gradient(135deg, #9a7339 0%, #b38744 50%, #c9a962 100%);
    --gradient-dark: linear-gradient(180deg, #0A0A0F 0%, #111118 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--dark-bg);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--dark-bg);
}
::-webkit-scrollbar-thumb {
    background: var(--primary-cyan);
    border-radius: 4px;
}

/* ============ NAVIGATION ============ */
nav {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(179, 135, 68, 0.15);
    border-radius: 50px;
    padding: 14px 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(10, 10, 15, 0.98);
    border-color: rgba(179, 135, 68, 0.25);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 28px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.logo:hover {
    color: var(--primary-cyan);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-cyan);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary-cyan);
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-links a.active {
    color: var(--primary-cyan);
}

.nav-links a.active::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-cyan) !important;
    color: var(--dark-bg) !important;
    padding: 10px 24px !important;
    border-radius: 12px !important;
    font-weight: 600 !important;
    white-space: nowrap;
    transition: all 0.3s ease !important;
}

.nav-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 20px rgba(179, 135, 68, 0.4);
    background: var(--primary-cyan-light) !important;
}

.nav-cta::after {
    display: none !important;
}

/* Language Selector */
.language-selector {
    position: relative;
}

.lang-button {
    background: rgba(179, 135, 68, 0.15);
    border: 1px solid rgba(179, 135, 68, 0.3);
    color: var(--primary-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
}

.lang-button:hover {
    background: rgba(179, 135, 68, 0.25);
}

.lang-dropdown {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: rgba(18, 18, 26, 0.98);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 12px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    min-width: 140px;
}

.lang-dropdown.active {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.lang-option {
    padding: 12px 18px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.lang-option:last-child {
    border-bottom: none;
}

.lang-option:hover {
    background: rgba(179, 135, 68, 0.1);
    color: var(--primary-cyan);
}

.lang-option.active {
    background: rgba(179, 135, 68, 0.15);
    color: var(--primary-cyan);
}

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

/* ============ HERO SECTION ============ */
.hero {
    min-height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background: linear-gradient(135deg, #0A0A0F 0%, #1a1a22 50%, #0A0A0F 100%);
}

.video-background video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    transition: opacity 0.5s ease;
    -webkit-transform: translate(-50%, -50%);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(10, 10, 15, 0.4) 0%, 
        rgba(10, 10, 15, 0.2) 50%, 
        rgba(10, 10, 15, 0.8) 100%);
    z-index: 1;
}

/* Start Overlay */
.start-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.8s ease, visibility 0.8s ease;
    cursor: pointer;
}

.start-overlay.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

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

.start-logo {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 80px;
    letter-spacing: 12px;
    margin-bottom: 10px;
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.3); }
}

.start-subtitle {
    font-size: 16px;
    letter-spacing: 6px;
    color: var(--text-muted);
    margin-bottom: 50px;
    text-transform: uppercase;
}

.start-button {
    background: transparent;
    border: 2px solid var(--primary-cyan);
    color: var(--primary-cyan);
    padding: 18px 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    border-radius: 50px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.4s ease;
    font-family: 'Outfit', sans-serif;
    text-transform: uppercase;
}

.start-button:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
    transform: scale(1.05);
    box-shadow: 0 0 40px rgba(179, 135, 68, 0.4);
}

/* Sound Toggle */
.sound-toggle {
    position: absolute;
    bottom: 30px;
    left: 30px;
    z-index: 100;
    background: rgba(179, 135, 68, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 135, 68, 0.3);
    border-radius: 50%;
    width: 56px;
    height: 56px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    transition: all 0.3s ease;
}

.sound-toggle:hover {
    background: rgba(179, 135, 68, 0.25);
    transform: scale(1.1);
}

/* Scroll Indicator */
.scroll-indicator {
    position: fixed;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.scroll-indicator.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-text {
    color: var(--primary-cyan);
    font-size: 12px;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.scroll-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
}

.scroll-arrow span {
    display: block;
    width: 16px;
    height: 16px;
    border-right: 2px solid var(--primary-cyan);
    border-bottom: 2px solid var(--primary-cyan);
    transform: rotate(45deg);
    animation: scrollArrow 1.5s infinite;
}

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

@keyframes scrollArrow {
    0% { opacity: 0; transform: rotate(45deg) translate(-5px, -5px); }
    50% { opacity: 1; }
    100% { opacity: 0; transform: rotate(45deg) translate(5px, 5px); }
}

/* Effect Switcher */
.effect-switcher {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 30px;
    padding: 12px 20px;
}

.effect-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.toggle-label {
    color: var(--text-secondary);
    font-size: 13px;
    font-weight: 500;
}

.toggle-switch {
    width: 48px;
    height: 26px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 13px;
    position: relative;
    transition: all 0.3s ease;
}

.toggle-switch.active {
    background: var(--primary-cyan);
}

.toggle-slider {
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--text-primary);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.toggle-switch.active .toggle-slider {
    left: 25px;
}

/* ============ SECTION STYLES ============ */
section {
    position: relative;
    overflow: hidden;
}

.section-padding {
    padding: 120px 5%;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--primary-cyan);
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 64px;
    letter-spacing: 3px;
    line-height: 1.1;
    margin-bottom: 20px;
}

.section-title span {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============ ABOUT SECTION ============ */
.about-section {
    background: var(--gradient-dark);
    position: relative;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    margin-bottom: 100px;
}

.about-content h3 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 30px;
    line-height: 1.2;
}

.about-content h3 span {
    color: var(--primary-cyan);
}

.about-content p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-highlight {
    background: var(--dark-card);
    border: 1px solid rgba(179, 135, 68, 0.15);
    border-radius: 20px;
    padding: 30px;
    margin-top: 30px;
}

.about-highlight h4 {
    font-size: 18px;
    color: var(--primary-cyan);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.about-highlight li {
    color: var(--text-secondary);
    font-size: 15px;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.about-highlight li::before {
    content: 'âœ“';
    position: absolute;
    left: 0;
    color: var(--primary-cyan);
    font-weight: bold;
}

.about-image {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--dark-card);
    border: 1px solid rgba(179, 135, 68, 0.1);
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(179, 135, 68, 0.1) 0%, 
        transparent 50%);
    z-index: 1;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-stats {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 20px;
    z-index: 2;
}

.stat-card {
    background: var(--dark-surface);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 20px;
    padding: 25px 35px;
    text-align: center;
    backdrop-filter: blur(10px);
}

.stat-number {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 42px;
    color: var(--primary-cyan);
    line-height: 1;
}

.stat-label {
    font-size: 13px;
    color: var(--text-muted);
    margin-top: 5px;
}

/* Team & Values */
.team-values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 80px;
}

.info-card {
    background: var(--dark-card);
    border: 1px solid rgba(179, 135, 68, 0.1);
    border-radius: 24px;
    padding: 40px;
    transition: all 0.4s ease;
}

.info-card:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-5px);
}

.info-card h4 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: var(--primary-cyan);
    margin-bottom: 20px;
}

.info-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}

/* ============ KEY ADVANTAGES ============ */
.advantages-section {
    background: var(--dark-surface);
    position: relative;
}

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

.advantage-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.advantage-card:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.advantage-icon {
    width: 70px;
    height: 70px;
    background: rgba(179, 135, 68, 0.1);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 32px;
    transition: all 0.3s ease;
}

.advantage-card:hover .advantage-icon {
    background: var(--primary-cyan);
    transform: scale(1.1);
}

.advantage-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

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

/* ============ INDUSTRIES SECTION ============ */
.industries-section {
    background: var(--dark-bg);
    position: relative;
}

.industries-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.industry-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 30px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.industry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(179, 135, 68, 0.05) 0%, 
        transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.industry-card:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

.industry-card:hover::before {
    opacity: 1;
}

.industry-icon {
    width: 80px;
    height: 80px;
    background: rgba(179, 135, 68, 0.1);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.industry-card:hover .industry-icon {
    background: var(--primary-cyan);
    transform: rotate(-5deg) scale(1.1);
}

.industry-card h3 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.industry-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

.industry-tag {
    display: inline-block;
    background: rgba(179, 135, 68, 0.15);
    color: var(--primary-cyan);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
    margin-top: 20px;
    letter-spacing: 1px;
}

/* ============ BRANDS SECTION ============ */
.brands-section {
    background: var(--dark-surface);
    position: relative;
    overflow: hidden;
}

.brands-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.brands-carousel {
    display: flex;
    gap: 60px;
    animation: scroll 30s linear infinite;
    width: max-content;
}

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

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

.brand-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px 40px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    min-width: 200px;
    transition: all 0.3s ease;
}

.brand-item:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: scale(1.05);
}

.brand-name {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: var(--text-secondary);
    transition: color 0.3s ease;
}

.brand-item:hover .brand-name {
    color: var(--primary-cyan);
}

/* ============ LOGISTICS SECTION ============ */
.logistics-section {
    background: var(--dark-bg);
    position: relative;
}

.logistics-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.logistics-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.logistics-info h3 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.logistics-info h3 span {
    color: var(--primary-cyan);
}

.logistics-info p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.logistics-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.logistics-feature {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 25px;
    transition: all 0.3s ease;
}

.logistics-feature:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-5px);
}

.logistics-feature-icon {
    font-size: 28px;
    margin-bottom: 12px;
}

.logistics-feature h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.logistics-feature p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Map Container */
.map-container {
    position: relative;
    background: var(--dark-card);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 30px;
    padding: 30px;
    min-height: 500px;
}

.map-wrapper {
    width: 100%;
    height: 440px;
    background: var(--dark-surface);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.map-svg {
    width: 100%;
    height: 100%;
}

.map-legend {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(10, 10, 15, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 15px;
    padding: 20px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: var(--text-secondary);
}

.legend-item:last-child {
    margin-bottom: 0;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.warehouse {
    background: var(--accent-blue);
}

.legend-dot.port {
    background: var(--accent-green);
}

.legend-dot.hq {
    background: var(--primary-cyan);
}

/* Location Cards */
.location-cards {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.location-card {
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 15px 20px;
    flex: 1;
    min-width: 150px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.location-card:hover, .location-card.active {
    border-color: rgba(179, 135, 68, 0.3);
    background: rgba(179, 135, 68, 0.1);
}

.location-card h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.location-card p {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0;
}

/* ============ CONTACT SECTION ============ */
.contact-section {
    background: var(--dark-surface);
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.contact-info h3 span {
    color: var(--primary-cyan);
}

.contact-info > p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon {
    width: 56px;
    height: 56px;
    background: rgba(179, 135, 68, 0.1);
    border: 1px solid rgba(179, 135, 68, 0.2);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.contact-text h4 {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text p, .contact-text a {
    font-size: 18px;
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: var(--primary-cyan);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--dark-card);
    border: 1px solid rgba(179, 135, 68, 0.1);
    border-radius: 30px;
    padding: 50px;
}

.contact-form-wrapper h4 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 32px;
    letter-spacing: 2px;
    margin-bottom: 30px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    background: var(--dark-surface);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 15px;
    color: var(--text-primary);
    font-family: 'Outfit', sans-serif;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-cyan);
    box-shadow: 0 0 0 3px rgba(179, 135, 68, 0.1);
}

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

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23b38744' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
}

.submit-btn {
    width: 100%;
    background: var(--gradient-cyan);
    border: none;
    border-radius: 16px;
    padding: 18px 40px;
    font-size: 16px;
    font-weight: 600;
    color: var(--dark-bg);
    cursor: pointer;
    transition: all 0.4s ease;
    font-family: 'Outfit', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(179, 135, 68, 0.3);
}

/* ============ FOOTER ============ */
footer {
    background: var(--dark-bg);
    padding: 80px 5% 30px;
    position: relative;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto;
}

.footer-brand .logo {
    font-size: 32px;
    margin-bottom: 20px;
    display: inline-block;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 25px;
}

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

.social-link {
    width: 44px;
    height: 44px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--primary-cyan);
    border-color: var(--primary-cyan);
    color: var(--dark-bg);
    transform: translateY(-3px);
}

.footer-column h4 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 20px;
    letter-spacing: 2px;
    margin-bottom: 25px;
    color: var(--primary-cyan);
}

.footer-column ul {
    list-style: none;
}

.footer-column li {
    margin-bottom: 12px;
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-legal a {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 14px;
    margin-left: 30px;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--primary-cyan);
}

/* ============ ANIMATIONS ============ */
.fade-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }
.stagger-6 { transition-delay: 0.6s; }
.stagger-7 { transition-delay: 0.7s; }

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

@media (max-width: 968px) {
    nav {
        top: 10px;
        left: 10px;
        right: 10px;
        transform: none;
        padding: 15px 20px;
        border-radius: 20px;
    }

    nav.menu-open {
        background: transparent !important;
        border-color: transparent !important;
        box-shadow: none !important;
    }

    .nav-container {
        justify-content: space-between;
    }

		.nav-links {
			position: fixed;
			top: 0;
			left: 0;
			right: 0;
			bottom: 0;
			width: 100%;
			height: 100vh;
			flex-direction: column;
			 background: rgba(10, 10, 15, 0.85);
			backdrop-filter: blur(30px);
			-webkit-backdrop-filter: blur(30px);
			padding: 120px 40px 40px;
			gap: 0;
			opacity: 0;
			pointer-events: none;
			transform: translateY(-100%);
			transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
			justify-content: flex-start;
			align-items: center;
			border: none;
			border-radius: 0;
			z-index: 999;
		}
	.nav-links::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		background: rgba(10, 10, 15, 0.95);
		z-index: -1;
	}
    .nav-links.active {
        opacity: 1;
        pointer-events: all;
        transform: translateY(0);
    }

    .nav-links li {
        width: 100%;
        max-width: 300px;
        padding: 0;
        border-bottom: none;
        opacity: 0;
        transform: translateY(20px);
        transition: all 0.3s ease;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    .nav-links.active li:nth-child(1) { transition-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { transition-delay: 0.35s; }
    .nav-links.active li:nth-child(7) { transition-delay: 0.4s; }

    .nav-links a {
        display: block;
        font-size: 22px;
        font-weight: 500;
        letter-spacing: 2px;
        padding: 16px 0;
        text-align: center;
        color: var(--text-secondary);
        transition: all 0.3s ease;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .nav-links a:hover,
    .nav-links a.active {
        color: var(--primary-cyan);
    }

    .nav-links a::after {
        display: none;
    }

    .nav-links .nav-cta {
        margin-top: 20px;
        font-size: 16px !important;
        padding: 14px 36px !important;
        border-radius: 50px !important;
        border-bottom: none;
    }

    .nav-links .language-selector {
        margin-top: 30px;
        width: 100%;
        max-width: 300px;
    }

    .nav-links .lang-button {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 16px;
    }

    .nav-links .lang-dropdown {
        position: relative;
        top: 10px;
        width: 100%;
        background: rgba(30, 30, 40, 0.95);
    }

    .mobile-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 44px;
        height: 44px;
        background: rgba(179, 135, 68, 0.1);
        border: 1px solid rgba(179, 135, 68, 0.3);
        border-radius: 12px;
        color: var(--primary-cyan);
        font-size: 20px;
        cursor: pointer;
        transition: all 0.3s ease;
        z-index: 1001;
    }

    .mobile-toggle:hover {
        background: rgba(179, 135, 68, 0.2);
    }

    .section-title {
        font-size: 42px;
    }

    .about-grid,
    .logistics-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-stats {
        position: static;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }

    .team-values-grid,
    .industries-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .footer-legal a {
        margin: 0 15px;
    }

    .effect-switcher {
        bottom: 10px;
        right: 10px;
        left: 10px;
        border-radius: 20px;
    }
}

@media (max-width: 640px) {
    .section-padding {
        padding: 80px 5%;
    }

    .section-title {
        font-size: 32px;
    }

    .start-logo {
        font-size: 48px;
        letter-spacing: 6px;
    }

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

    .about-stats {
        flex-direction: column;
        align-items: center;
    }

    .stat-card {
        width: 100%;
        max-width: 200px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .logistics-features {
        grid-template-columns: 1fr;
    }

    .location-cards {
        flex-direction: column;
    }

    .location-card {
        min-width: auto;
    }
}

/* Scroll Lock */
body.scroll-locked {
    overflow: hidden;
}


/* ============ CATALOG PAGE ============ */
.page-header {
    padding: 140px 5% 60px;
    text-align: center;
    background: var(--gradient-dark);
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-cyan), transparent);
}

.page-header h1 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 64px;
    letter-spacing: 4px;
    margin-bottom: 15px;
}

.page-header h1 span {
    background: var(--gradient-cyan);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-header p {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

.catalog-section {
    padding: 60px 5%;
    min-height: 60vh;
}

/* Brand Grid */
.brand-view {
    max-width: 1400px;
    margin: 0 auto;
}

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

.brand-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

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

.brand-card:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.brand-card .brand-name {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 32px;
    letter-spacing: 3px;
    color: var(--text-primary);
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.brand-card:hover .brand-name {
    color: var(--primary-cyan);
}

.brand-card .brand-country {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.brand-card .tire-count {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.brand-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-pdf, .btn-pdf-download {
    padding: 10px 20px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-pdf {
    background: rgba(179, 135, 68, 0.15);
    color: var(--primary-cyan);
    border: 1px solid rgba(179, 135, 68, 0.3);
}

.btn-pdf:hover {
    background: rgba(179, 135, 68, 0.25);
}

.btn-pdf-download {
    background: var(--primary-cyan);
    color: var(--dark-bg);
}

.btn-pdf-download:hover {
    background: var(--primary-cyan-light);
    transform: scale(1.05);
}

/* Tire View */
.tire-view {
    display: none;
    max-width: 1400px;
    margin: 0 auto;
}

.tire-view.active {
    display: block;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(179, 135, 68, 0.1);
    border: 1px solid rgba(179, 135, 68, 0.3);
    color: var(--primary-cyan);
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    font-family: 'Outfit', sans-serif;
}

.back-button:hover {
    background: rgba(179, 135, 68, 0.2);
    transform: translateX(-5px);
}

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

.tire-view-header h2 {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: 42px;
    letter-spacing: 2px;
}

.tire-view-header h2 span {
    color: var(--primary-cyan);
}

.header-actions {
    display: flex;
    gap: 15px;
}

.btn-catalog, .btn-catalog-download {
    padding: 12px 24px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-catalog {
    background: rgba(179, 135, 68, 0.15);
    color: var(--primary-cyan);
    border: 1px solid rgba(179, 135, 68, 0.3);
}

.btn-catalog:hover {
    background: rgba(179, 135, 68, 0.25);
}

.btn-catalog-download {
    background: var(--primary-cyan);
    color: var(--dark-bg);
}

.btn-catalog-download:hover {
    background: var(--primary-cyan-light);
}

.search-box {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 20px;
    min-width: 280px;
}

.search-box input {
    background: none;
    border: none;
    color: var(--text-primary);
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    width: 100%;
    outline: none;
}

.search-box input::placeholder {
    color: var(--text-muted);
}

/* Tire Grid */
.tire-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.tire-card {
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
}

.tire-card:hover {
    border-color: rgba(179, 135, 68, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.tire-card-image {
    aspect-ratio: 1;
    background: var(--dark-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: hidden;
}

.tire-card-image img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.tire-card:hover .tire-card-image img {
    transform: scale(1.1);
}

.tire-card-body {
    padding: 20px;
}

.tire-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text-primary);
}

.tire-model {
    font-size: 13px;
    color: var(--text-muted);
}

.tire-card-footer {
    padding: 0 20px 20px;
}

.btn-quote {
    display: block;
    text-align: center;
    background: var(--gradient-cyan);
    color: var(--dark-bg);
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    transform: scale(1.02);
    box-shadow: 0 5px 20px rgba(179, 135, 68, 0.3);
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    position: relative;
    max-width: 90%;
    max-height: 90vh;
    text-align: center;
}

.modal-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 16px;
}

.modal-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(179, 135, 68, 0.2);
    border: 1px solid rgba(179, 135, 68, 0.3);
    color: var(--primary-cyan);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: var(--primary-cyan);
    color: var(--dark-bg);
}

.modal-title {
    margin-top: 20px;
    font-size: 18px;
    color: var(--text-secondary);
}

/* Catalog Responsive */
@media (max-width: 1200px) {
    .brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .tire-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 968px) {
    .page-header h1 {
        font-size: 48px;
    }
    .tire-view-header {
        flex-direction: column;
        align-items: flex-start;
    }
    .tire-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .search-box {
        width: 100%;
    }
}

@media (max-width: 640px) {
    .page-header h1 {
        font-size: 36px;
    }
    .brand-grid {
        grid-template-columns: 1fr;
    }
    .tire-grid {
        grid-template-columns: 1fr;
    }
    .header-actions {
        flex-direction: column;
        width: 100%;
    }
    .btn-catalog, .btn-catalog-download {
        width: 100%;
        text-align: center;
    }
}

/* ============ BRANDS SECTION - FULL CSS ============ */

.brands-section {
    padding: 100px 0;
    background: var(--bg-primary);
    overflow: hidden;
}

.brands-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.brands-section .section-label {
    color: var(--primary-gold);
    font-size: 14px;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 15px;
    display: block;
}

.brands-section .section-title {
    font-family: 'Bebas Neue', 'Russo One', sans-serif;
    font-size: clamp(40px, 6vw, 64px);
    color: var(--text-primary);
    margin-bottom: 20px;
}

.brands-section .section-title span {
    color: var(--primary-gold);
}

.brands-section .section-subtitle {
    color: var(--text-secondary);
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
}

/* Carousel Container */
.brands-carousel {
    display: flex;
    animation: scroll 35s linear infinite;
    gap: 40px;
    padding: 20px 0;
}

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

/* Brand Cards */
.brand-item {
    flex: 0 0 280px;
    height: 140px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 25px 40px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.brand-item:hover {
    background: #ffffff;
    transform: scale(1.05) translateY(-5px);
    box-shadow: 0 12px 40px rgba(179, 135, 68, 0.25);
}

/* Brand Logos */
.brand-item img {
    max-width: 200px;
    max-height: 150px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.4s ease;
}

.brand-item:hover img {
    transform: scale(1.05);
}

/* Scroll Animation */
@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* ============ RESPONSIVE ============ */

@media (max-width: 1024px) {
    .brands-section {
        padding: 80px 0;
    }
    
    .brands-carousel {
        gap: 30px;
    }
    
    .brand-item {
        flex: 0 0 250px;
        height: 120px;
        padding: 20px 35px;
    }
    
    .brand-item img {
        max-width: 180px;
        max-height: 140px;
    }
}

@media (max-width: 768px) {
    .brands-section {
        padding: 60px 0;
    }
    
    .brands-section .section-header {
        margin-bottom: 40px;
    }
    
    .brands-carousel {
        gap: 25px;
        animation-duration: 25s;
    }
    
    .brand-item {
        flex: 0 0 220px;
        height: 110px;
        padding: 20px 30px;
        border-radius: 12px;
    }
    
    .brand-item img {
        max-width: 160px;
        max-height: 140px;
    }
}

@media (max-width: 480px) {
    .brands-section {
        padding: 50px 0;
    }
    
    .brands-carousel {
        gap: 20px;
        animation-duration: 20s;
    }
    
    .brand-item {
        flex: 0 0 180px;
        height: 90px;
        padding: 15px 25px;
        border-radius: 10px;
    }
    
    .brand-item img {
        max-width: 130px;
        max-height: 100px;
    }
}

/* Mobile video - full display */
@media (max-width: 768px) {
    .video-background video {
        width: 100%;
        height: 100%;
        min-width: unset;
        min-height: unset;
        object-fit: contain;  /* Ð¿Ð¾ÐºÐ°Ð·Ð°Ñ‚ÑŒ Ð¿Ð¾Ð»Ð½Ð¾ÑÑ‚ÑŒÑŽ */
        background: #000;     /* Ñ‡Ñ‘Ñ€Ð½Ñ‹Ð¹ Ñ„Ð¾Ð½ Ð¿Ð¾ ÐºÑ€Ð°ÑÐ¼ */
    }
}
/* ============ TIRE DETAILS MODAL ============ */
.tire-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 10000;
    overflow-y: auto;
    padding: 20px;
}

.tire-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.tire-modal-content {
    background: linear-gradient(145deg, rgba(30, 30, 30, 0.98), rgba(20, 20, 20, 0.99));
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s ease;
}

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

.tire-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 24px;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tire-modal-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.tire-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.tire-modal-image {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 24px 0 0 24px;
    min-height: 300px;
}

.tire-modal-image img {
    max-width: 100%;
    max-height: 250px;
    object-fit: contain;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.tire-modal-info {
    padding: 30px;
}

.tire-modal-title {
    font-size: 24px;
    font-weight: 700;
    color: white;
    margin-bottom: 8px;
    letter-spacing: -0.5px;
    padding-right: 50px;
}

.tire-modal-subtitle {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.tire-modal-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.spec-row {
    display: grid;
    grid-template-columns: 110px 1fr;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.spec-row.full-width {
    grid-template-columns: 1fr;
    gap: 6px;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 600;
}

.spec-value {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.spec-value.sizes {
    font-family: 'Monaco', 'Consolas', monospace;
    font-size: 12px;
    color: #4CAF50;
    background: rgba(76, 175, 80, 0.1);
    padding: 8px 12px;
    border-radius: 8px;
    display: inline-block;
}

.spec-row.no-data {
    text-align: center;
    padding: 30px 20px;
}

.spec-row.no-data p {
    color: rgba(255, 255, 255, 0.5);
    margin: 8px 0;
}

.tire-modal-actions {
    margin-top: 25px;
    display: flex;
    gap: 12px;
}

.tire-modal-actions .btn-quote {
    flex: 1;
    padding: 14px 24px;
    background: linear-gradient(135deg, #4CAF50, #45a049);
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
    transition: all 0.3s ease;
    font-size: 14px;
}

.tire-modal-actions .btn-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(76, 175, 80, 0.3);
}

/* Tire card clickable indicator */
.tire-card {
    cursor: pointer;
    position: relative;
}

.tire-card::after {
    content: 'View Details';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 12px 24px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.tire-card:hover::after {
    opacity: 1;
}

.tire-card:hover .tire-card-image img {
    filter: brightness(0.6);
}

/* Tire Modal Responsive */
@media (max-width: 900px) {
    .tire-modal-body {
        grid-template-columns: 1fr;
    }
    
    .tire-modal-image {
        border-radius: 24px 24px 0 0;
        min-height: 220px;
        padding: 25px;
    }
    
    .tire-modal-image img {
        max-height: 180px;
    }
}

@media (max-width: 768px) {
    .tire-modal {
        padding: 10px;
        align-items: flex-start;
    }
    
    .tire-modal-content {
        max-height: calc(100vh - 20px);
        border-radius: 20px;
        margin-top: 10px;
    }
    
    .tire-modal-image {
        border-radius: 20px 20px 0 0;
        min-height: 200px;
        padding: 20px;
    }
    
    .tire-modal-image img {
        max-height: 160px;
    }
    
    .tire-modal-info {
        padding: 20px;
    }
    
    .tire-modal-title {
        font-size: 20px;
        padding-right: 40px;
    }
    
    .tire-modal-subtitle {
        font-size: 11px;
        margin-bottom: 20px;
    }
    
    .spec-row {
        grid-template-columns: 100px 1fr;
        gap: 10px;
        padding: 8px 0;
    }
    
    .spec-label {
        font-size: 10px;
    }
    
    .spec-value {
        font-size: 13px;
    }
    
    .spec-value.sizes {
        font-size: 11px;
        padding: 6px 10px;
    }
    
    .tire-modal-close {
        top: 12px;
        right: 12px;
        width: 36px;
        height: 36px;
        font-size: 20px;
    }
    
    .tire-modal-actions {
        margin-top: 20px;
    }
    
    .tire-modal-actions .btn-quote {
        padding: 12px 20px;
        font-size: 13px;
    }
    
    .tire-card::after {
        display: none;
    }
}

@media (max-width: 480px) {
    .tire-modal-content {
        border-radius: 16px;
    }
    
    .tire-modal-image {
        border-radius: 16px 16px 0 0;
        min-height: 180px;
        padding: 15px;
    }
    
    .tire-modal-image img {
        max-height: 140px;
    }
    
    .tire-modal-info {
        padding: 16px;
    }
    
    .tire-modal-title {
        font-size: 18px;
    }
    
    .spec-row {
        grid-template-columns: 90px 1fr;
        gap: 8px;
    }
}