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

:root {
    --primary-color: #f39c12;
    --secondary-color: #e67e22;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --light-bg: #2a2a2a;
    --text-light: #ffffff;
    --text-gray: #b0b0b0;
    --border-color: #333;
}

html {
    scroll-behavior: auto; /* Prevent automatic smooth scrolling on hash change */
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: #f5f5f5;
    color: white;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: var(--darker-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    padding: 12px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    overflow: visible;
    height: 104px;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    flex-wrap: nowrap;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light);
    text-decoration: none;
    flex-shrink: 0;
    position: relative;
    height: 80px;
    overflow: visible;
}

.logo img {
    height: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
    transition: filter 0.3s ease;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: absolute;
    top: -30px;
    left: 15px;
}

.logo img:hover {
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6));
}

.logo i,
.logo span:not(:empty) {
    display: none !important;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    margin: 0;
    margin-left: 180px;
    padding: 0;
    flex: 1;
    justify-content: center;
    position: relative;
    z-index: 1;
}

@media (max-width: 768px) {
    .nav-menu {
        margin-left: 0;
    }
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
}

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

.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--dark-bg);
    list-style: none;
    padding: 10px 0;
    min-width: 200px;
    border-radius: 5px;
    display: none;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
}

.dropdown:hover .dropdown-menu {
    display: block;
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 10px 20px;
}

.social-icons {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-shrink: 0;
}

.social-icons a {
    color: white;
    font-size: 18px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    text-decoration: none;
    border-bottom: none;
}

.social-icons a:hover {
    color: var(--primary-color);
    text-decoration: none;
}

.social-icons a .fab.fa-instagram {
    font-size: 24px;
}

.nav-login-mobile {
    display: none;
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)),
                url('images/slider-1.png') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-top: 104px;
    overflow: hidden;
    transition: background-image 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-overlay {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    text-align: center;
    animation: fadeInUp 1s ease;
    position: relative;
    z-index: 2;
    transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-title {
    font-size: 72px;
    font-weight: 900;
    letter-spacing: 3px;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
    transition: all 0.3s ease;
}

.hero-subtitle {
    background: var(--primary-color);
    display: inline-block;
    padding: 20px 60px;
    font-size: 28px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.btn-primary {
    background: transparent;
    border: 3px solid var(--text-light);
    color: var(--text-light);
    padding: 15px 50px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s;
}

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

.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 2;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.dot:hover {
    background: rgba(255,255,255,0.6);
    transform: scale(1.3);
    border-color: rgba(255,255,255,0.4);
}

.dot.active {
    background: var(--text-light);
    width: 30px;
    border-radius: 6px;
    box-shadow: 0 0 15px rgba(255,255,255,0.5);
}

/* Slider Navigation Arrows */
.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    border: 2px solid rgba(255,255,255,0.4);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 3;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.7;
}

.slider-arrow:hover {
    background: rgba(243, 156, 18, 0.9);
    border-color: var(--primary-color);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    box-shadow: 0 5px 20px rgba(243, 156, 18, 0.4);
}

.slider-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

.slider-arrow-left {
    left: 30px;
}

.slider-arrow-right {
    right: 30px;
}

@media (max-width: 768px) {
    .slider-arrow {
        width: 40px;
        height: 40px;
        font-size: 16px;
        opacity: 0.5;
    }
    
    .slider-arrow-left {
        left: 15px;
    }
    
    .slider-arrow-right {
        right: 15px;
    }
}

/* Slider Progress Bar */
.slider-progress {
    position: absolute;
    bottom: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    height: 3px;
    background: rgba(255,255,255,0.2);
    border-radius: 2px;
    overflow: hidden;
    z-index: 2;
}

.slider-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), #f1c40f);
    width: 0%;
    border-radius: 2px;
    box-shadow: 0 0 10px var(--primary-color);
    animation: slideProgress 6s linear infinite;
}

@keyframes slideProgress {
    0% {
        width: 0%;
    }
    100% {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .slider-progress {
        width: 150px;
        bottom: 60px;
    }
}

/* Brand Introduction */
.brand-intro {
    background: linear-gradient(135deg, #3a3a3a 0%, #2a2a2a 100%);
    padding: 100px 0;
}

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

.intro-image {
    display: flex;
    align-items: center;
    justify-content: center;
}

.intro-image img {
    width: 100%;
    max-width: 600px;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4));
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: var(--text-light);
}

.intro-content p {
    margin-bottom: 20px;
    color: var(--text-gray);
    text-align: justify;
    line-height: 1.8;
}

.btn-outline {
    display: inline-block;
    margin-top: 20px;
    padding: 12px 40px;
    border: 2px solid var(--text-light);
    color: var(--text-light);
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s;
    font-weight: 600;
}

.btn-outline:hover {
    background: var(--text-light);
    color: var(--dark-bg);
}

/* PPF Technology Section */
.ppf-tech {
    background: var(--darker-bg);
    padding: 100px 0;
}

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

.tech-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 30px;
}

.tech-logo img {
    height: 280px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.tech-logo i {
    color: var(--primary-color);
    font-size: 32px;
}

.tech-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.tech-content p {
    color: var(--text-gray);
    margin-bottom: 20px;
    text-align: justify;
    line-height: 1.8;
}

.tech-image {
    position: relative;
}

.tech-image img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 30px;
}

.tech-layers {
    background: rgba(0,0,0,0.8);
    padding: 30px;
    border-radius: 15px;
    border: 2px solid var(--border-color);
}

.tech-layers h3 {
    font-size: 20px;
    margin-bottom: 25px;
    text-align: center;
    color: var(--primary-color);
}

.tech-spec-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-color);
}

.tech-spec-item h4 {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.tech-spec-item h4 i {
    font-size: 18px;
}

.tech-spec-item p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
    margin: 0;
}

.layer {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.layer-line {
    width: 4px;
    height: 100%;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    min-height: 60px;
    border-radius: 2px;
}

.layer-info h4 {
    font-size: 14px;
    color: var(--primary-color);
    font-style: italic;
    margin-bottom: 5px;
}

.layer-info p {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.6;
}

/* Products Section */
.products-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 100px 0;
}

.products-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
    align-items: center;
}

.products-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.products-content h2 {
    font-size: 36px;
    margin-bottom: 15px;
}

.products-content h3 {
    font-size: 22px;
    color: var(--primary-color);
    margin-bottom: 25px;
    font-style: italic;
}

.products-content p {
    color: var(--text-gray);
    margin-bottom: 30px;
    text-align: justify;
    line-height: 1.8;
}

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

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.4);
    transition: transform 0.3s;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Color Selector Section */
.color-selector-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.color-selector-wrapper {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.color-selector-bg-logo {
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    opacity: 0.08;
    z-index: 0;
    pointer-events: none;
}

.color-selector-bg-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.car-display-container {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
    min-height: 500px;
    margin-top: 60px;
}

.car-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    height: auto;
    margin: 0 auto;
    transform: translateX(-50px);
}

.car-image {
    width: 100%;
    height: auto;
    object-fit: contain;
    transition: filter 0.8s ease, opacity 0.8s ease;
    filter: brightness(1) saturate(1);
}

.car-image.color-changing {
    transition: filter 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.color-options {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
    position: relative;
    z-index: 2;
    margin-top: -100px;
}

.color-bubble {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.color-bubble:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.color-bubble.active {
    transform: translateY(-8px);
    border-color: #ffffff;
    border-width: 3px;
    box-shadow: 0 10px 35px rgba(255, 255, 255, 0.4),
                0 0 0 4px rgba(255, 255, 255, 0.1);
}

.color-bubble[data-finish="glossy"]::before {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    box-shadow: inset 0 2px 10px rgba(255, 255, 255, 0.4);
}

.color-bubble[data-finish="matte"]::before {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.3);
}

.color-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #000000;
    border-radius: 50%;
    z-index: -1;
}

/* Different black tones for each product */
.color-bubble[data-product="Black75"]::before {
    background-color: #000000;
}

.color-bubble[data-product="UD70"]::before {
    background-color: #0a0a0a;
}

.color-bubble[data-product="UE80"]::before {
    background-color: #0f0f0f;
}

.color-bubble[data-product="GD70"]::before {
    background-color: #050505;
}

.color-bubble[data-product="UD70S"]::before {
    background-color: #0d0d0d;
}

.color-bubble[data-product="MATTE75"]::before {
    background-color: #080808;
}

.color-bubble[data-product="Renkli"]::before {
    background-color: #121212;
}

.color-bubble .product-name {
    font-size: 11px;
    font-weight: 600;
    color: white;
    text-align: center;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.8);
    z-index: 2;
    padding: 0 6px;
    line-height: 1.2;
    letter-spacing: 0.3px;
    position: relative;
}


/* Shop Section */
.shop-section {
    background: #f8f9fa;
    padding: 100px 0;
}

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 60px;
    font-size: 18px;
}

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

.product-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 25px rgba(0,0,0,0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

.product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    z-index: 1;
}

.product-badge.popular {
    background: #e74c3c;
}

.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: var(--dark-bg);
}

.product-info > p {
    color: #666;
    margin-bottom: 20px;
    font-size: 14px;
}

.product-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
}

.product-specs span {
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-specs i {
    color: var(--primary-color);
    font-size: 12px;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
}

.price small {
    font-size: 14px;
    color: #999;
}

.btn-cart {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
}

.btn-cart:hover {
    background: var(--secondary-color);
    transform: scale(1.05);
}

.product-footer {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: var(--dark-bg);
    text-align: center;
}

.price small {
    font-size: 14px;
    color: #999;
}

.btn-cart {
    background: var(--dark-bg);
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    width: 100%;
    font-size: 14px;
}

.btn-cart:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(243, 156, 18, 0.3);
}

.btn-cart.disabled {
    background: #ccc;
    cursor: not-allowed;
}

.btn-cart.disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

/* Services Section */
.services-section {
    background: var(--dark-bg);
    padding: 100px 0;
}

.services-section .section-title {
    color: var(--text-light);
    margin-bottom: 60px;
}

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

.service-card {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(243, 156, 18, 0.2);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: white;
}

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

.service-card > p {
    color: var(--text-gray);
    margin-bottom: 20px;
}

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

.service-card li {
    color: var(--text-gray);
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.service-card li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    padding: 100px 0;
}

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

.contact-info h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.info-items {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

.info-item i {
    font-size: 24px;
    color: var(--primary-color);
    min-width: 30px;
}

.info-item h4 {
    font-size: 18px;
    margin-bottom: 5px;
}

.info-item p {
    color: var(--text-gray);
    font-size: 14px;
}

.contact-form {
    background: var(--light-bg);
    padding: 40px;
    border-radius: 15px;
}

.contact-form h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background: var(--dark-bg);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

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

.contact-form .btn-primary {
    width: 100%;
    background: var(--primary-color);
    border: none;
    cursor: pointer;
}

.contact-form .btn-primary:hover {
    background: var(--secondary-color);
}

/* Footer */
.footer {
    background: var(--darker-bg);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 150px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
}

.footer-logo i {
    color: var(--primary-color);
}

.footer-section p {
    color: var(--text-gray);
    margin-bottom: 20px;
    line-height: 1.6;
    font-size: 14px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--text-light);
}

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

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

.footer-section ul li a {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 14px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.footer-section ul li i {
    color: var(--primary-color);
    margin-right: 10px;
    width: 20px;
}

/* Footer Social Media Section */
.footer-social-icons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    max-width: 180px;
}

.footer-social-icon {
    width: 70px;
    height: 70px;
    background: #2a2a2a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    transition: all 0.3s ease;
    text-decoration: none;
}

.footer-social-icon i {
    font-size: 28px;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Facebook */
.footer-social-icon:nth-child(1):hover {
    background: #1877f2;
    color: white;
}

/* Instagram */
.footer-social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

/* Twitter - Highlighted */
.footer-social-icon:nth-child(3) {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.6);
}

.footer-social-icon:nth-child(3):hover {
    box-shadow: 0 0 30px rgba(243, 156, 18, 0.8), 0 10px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-5px) scale(1.1);
}

/* YouTube */
.footer-social-icon:nth-child(4):hover {
    background: #FF0000;
    color: white;
}

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

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed !important;
    bottom: 30px !important;
    right: 30px !important;
    z-index: 999;
}

.whatsapp-float-btn {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.4);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}

.whatsapp-float-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(243, 156, 18, 0.6);
    background: linear-gradient(135deg, #e67e22, #d35400);
}

.whatsapp-float-btn i {
    font-size: 24px;
    color: white;
}

.whatsapp-float-btn span {
    color: white;
    font-size: 14px;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .navbar {
        height: auto;
        min-height: 70px;
        padding: 10px 0;
    }
    
    .nav-wrapper {
        flex-wrap: nowrap;
        gap: 10px;
        align-items: center;
        justify-content: space-between;
    }
    
    .logo {
        order: 1;
        flex-shrink: 0;
        margin-right: auto;
    }
    
    .logo img {
        height: 140px;
        position: absolute;
        top: -30px;
        left: 15px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--darker-bg);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        padding: 30px 0;
        z-index: 1000;
        order: 3;
        margin-left: 0 !important;
    }

    .nav-menu.active {
        left: 0;
        z-index: 1001;
    }
    
    .cart-icon-wrapper {
        order: 2;
        flex-shrink: 0;
        margin: 0 5px;
    }

    .social-icons {
        order: 2;
        display: flex;
        gap: 8px;
        flex-shrink: 0;
        margin: 0 5px;
    }
    
    .social-icons a {
        font-size: 16px;
        text-decoration: none;
        border-bottom: none;
    }
    
    .social-icons a .fab.fa-instagram {
        font-size: 22px;
    }

    /* Hide desktop login icon, show it in menu instead */
    .social-icons .login-icon {
        display: none;
    }

    .nav-login-mobile {
        display: block;
    }
    
    .hamburger {
        display: flex;
        order: 3;
        flex-shrink: 0;
        margin-left: 5px;
    }
    
    .hero {
        margin-top: 70px;
    }

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

    .hero-subtitle {
        font-size: 20px;
        padding: 15px 30px;
    }

    .intro-grid,
    .tech-grid,
    .products-header,
    .contact-grid {
        grid-template-columns: 1fr;
    }

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

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

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive floating WhatsApp */
    .floating-whatsapp {
        bottom: 20px !important;
        right: 20px !important;
    }
    
    .whatsapp-float-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .whatsapp-float-btn i {
        font-size: 20px;
    }
    
    /* Responsive footer social icons */
    .footer-social-icons {
        max-width: 150px;
    }
    
    .footer-social-icon {
        width: 60px;
        height: 60px;
    }
    
    .footer-social-icon i {
        font-size: 24px;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }

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

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

    .footer-content {
        grid-template-columns: 1fr;
    }
    
    /* Mobile responsive WhatsApp */
    .floating-whatsapp {
        bottom: 15px !important;
        right: 15px !important;
    }
    
    .whatsapp-float-btn {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .whatsapp-float-btn i {
        font-size: 18px;
    }
    
    .whatsapp-float-btn span {
        font-size: 12px;
    }
    
    /* Mobile footer social icons */
    .footer-social-icons {
        max-width: 140px;
    }
    
    .footer-social-icon {
        width: 55px;
        height: 55px;
    }
    
    .footer-social-icon i {
        font-size: 22px;
    }
    
    /* Color Selector Responsive */
    .color-selector-section {
        padding: 60px 0;
    }
    
    .color-selector-bg-logo {
        width: 500px;
        height: 500px;
        top: 25%;
    }
    
    .car-display-container {
        min-height: 700px;
        margin-bottom: 50px;
        margin-top: 40px;
    }
    
    .car-image-wrapper {
        max-width: 200%;
        transform: scale(2) translateX(-12px);
        transform-origin: center;
        margin: 0 auto;
    }
    
    .car-image {
        width: 100%;
        max-width: 100%;
    }
    
    .color-options {
        gap: 12px;
        padding: 0 10px;
    }
    
    .color-bubble {
        width: 70px;
        height: 70px;
        border-radius: 50%;
    }
    
    .color-bubble .product-name {
        font-size: 9px;
        padding: 0 4px;
    }
}