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

:root {
    --primary-color: #ff6b35;
    --secondary-color: #ff8c42;
    --accent-color: #ffb88c;
    --beige-light: #fef9f3;
    --beige-medium: #faf8f3;
    --beige-dark: #f5f0e8;
    --orange-light: #ffb88c;
    --orange-medium: #ff8c42;
    --orange-dark: #ff6b35;
    --text-dark: #2c2c2c;
    --text-light: #6c6c6c;
    --white: #ffffff;
    --gradient-1: linear-gradient(135deg, #ff8c42 0%, #ff6b35 100%);
    --gradient-2: linear-gradient(135deg, #ffb88c 0%, #ff8c42 100%);
    --gradient-3: linear-gradient(135deg, #fef9f3 0%, #faf8f3 100%);
    --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
    --ease-in-out-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --ease-spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
    background: var(--beige-light);
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Touch-friendly improvements */
button, a, .btn, .category-card, .brand-card, .product-card, .service-card, 
.part-card, .inquire-btn, .admin-btn, .admin-edit-btn, .admin-delete-btn {
    -webkit-tap-highlight-color: rgba(255, 107, 53, 0.2);
    touch-action: manipulation;
    cursor: pointer;
}

/* Prevent text selection on buttons for better mobile UX */
button, .btn, .admin-btn {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    button, .btn, a, .category-card, .brand-card, .part-card {
        min-height: 44px; /* iOS recommended touch target size */
        min-width: 44px;
    }
    
    .hamburger {
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
}

/* Splash Screen Styles */
body.splash-active {
    overflow: hidden;
}

.splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 50%, #ffb88c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 1;
    transition: opacity 0.8s ease-out, visibility 0.8s ease-out;
}

.splash-screen.hide {
    opacity: 0;
    visibility: hidden;
}

.splash-content {
    text-align: center;
    animation: fadeInScale 1s ease-out;
}

.splash-logo-container {
    margin-bottom: 30px;
    animation: logoFloat 2s ease-in-out infinite;
    position: relative;
    display: inline-block;
    padding: 0;
    overflow: visible;
}

.splash-logo {
    width: 220px;
    height: 220px;
    object-fit: contain;
    border-radius: 0;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
    animation: logoPulse 2s ease-in-out infinite;
    background: transparent;
    padding: 0;
    display: block;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4));
}

.splash-text {
    margin-top: 30px;
}

.splash-company-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 3px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    animation: textGlow 2s ease-in-out infinite;
    display: inline-block;
}

.splash-loader {
    margin-top: 40px;
    width: 200px;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    overflow: hidden;
    margin-left: auto;
    margin-right: auto;
}

.loader-bar {
    height: 100%;
    background: var(--white);
    border-radius: 10px;
    width: 0%;
    animation: loaderProgress 2s ease-in-out;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

/* Main Content */
.main-content {
    transition: opacity 0.8s ease-in, transform 0.8s ease-in;
    transform: translateY(0);
}

.main-content.show {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Splash Screen Animations */
@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-15px) rotate(2deg);
    }
}

@keyframes logoPulse {
    0%, 100% {
        box-shadow: 0 25px 70px rgba(0, 0, 0, 0.5);
        transform: scale(1);
        filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.4)) brightness(1);
    }
    50% {
        box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6);
        transform: scale(1.03);
        filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.5)) brightness(1.05);
    }
}

@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    }
    50% {
        text-shadow: 0 4px 30px rgba(255, 255, 255, 0.5), 0 0 40px rgba(255, 255, 255, 0.3);
    }
}

@keyframes loaderProgress {
    0% {
        width: 0%;
    }
    50% {
        width: 70%;
    }
    100% {
        width: 100%;
    }
}

/* Responsive Splash Screen */
@media (max-width: 768px) {
    .splash-logo {
        width: 180px;
        height: 180px;
    }
    
    .splash-company-name {
        font-size: 1.8rem;
        letter-spacing: 2px;
    }
    
    .splash-loader {
        width: 150px;
    }
}

@media (max-width: 480px) {
    .splash-logo {
        width: 150px;
        height: 150px;
    }
    
    .splash-company-name {
        font-size: 1.5rem;
        letter-spacing: 1px;
    }
}

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

/* Top Bar */
.top-bar {
    background: var(--orange-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 30px;
}

.top-bar-link {
    color: var(--white);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-link:hover {
    color: var(--accent-color);
    transform: translateX(3px);
}

.top-bar-right {
    display: flex;
    gap: 15px;
}

.social-link {
    color: var(--white);
    font-size: 1.1rem;
    transition: all 0.3s var(--ease-out-expo);
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px) scale(1.1);
}

/* Top Bar Dropdown (Parts Brand) */
.top-bar-dropdown {
    position: relative;
}

.top-bar-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-out-expo);
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
    z-index: 1001;
}

.top-bar-dropdown:hover .top-bar-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar-dropdown-menu li {
    padding: 0;
}

.top-bar-dropdown-menu a {
    display: block;
    padding: 10px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    font-size: 0.9rem;
}

.top-bar-dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-dark);
    padding-left: 25px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 2px 20px rgba(255, 107, 53, 0.1);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
    border-bottom: 1px solid rgba(255, 140, 66, 0.1);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(0);
    top: 0;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    gap: 20px;
}

.nav-content > * {
    flex-shrink: 0;
}

.nav-menu {
    flex: 1;
    min-width: 0;
    justify-content: flex-start;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo {
    height: 50px;
    width: auto;
    transition: all 0.4s var(--ease-spring);
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
    animation: logoFloat 4s var(--ease-out-expo) infinite;
}

.logo:hover {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 8px 16px rgba(102, 126, 234, 0.3));
}

@keyframes logoFloat {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(-2deg);
    }
    75% { 
        transform: translateY(-12px) rotate(2deg);
    }
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--orange-dark);
    position: relative;
    transition: all 0.3s var(--ease-out-expo);
}

.logo-text::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--orange-dark);
    transition: width 0.4s var(--ease-out-expo);
    border-radius: 2px;
}

.logo-container:hover .logo-text::before {
    width: 100%;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 25px;
    align-items: center;
    flex-wrap: nowrap;
}

/* Hide mobile-specific menu items on desktop */
.mobile-menu-header,
.mobile-search-wrapper,
.mobile-contact-section {
    display: none;
}

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    list-style: none;
    padding: 10px 0;
    margin-top: 10px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s var(--ease-out-expo);
    min-width: 250px;
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
}

/* Mega menu for Products dropdown */
.mega-menu {
    position: relative;
}

.mega-dropdown {
    min-width: 400px;
    max-width: 700px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 20px;
}

.mega-dropdown > li {
    position: relative;
}

.mega-dropdown > li > a {
    padding: 12px 15px;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Nested dropdowns (subcategories) */
.nested-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 10px;
    min-width: 280px;
    max-width: 350px;
    max-height: 500px;
    overflow-y: auto;
    padding: 15px 0;
}

.mega-dropdown > li {
    padding: 5px 0;
}

.mega-dropdown > li > a {
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 15px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.mega-dropdown > li:hover .nested-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    font-size: 0.95rem;
    line-height: 1.5;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-dark);
    padding-left: 25px;
    font-weight: 600;
}

.nested-dropdown a {
    font-size: 0.9rem;
    padding: 10px 20px;
    line-height: 1.6;
    font-weight: 400;
}

.nested-dropdown a:hover {
    background: rgba(255, 107, 53, 0.15);
    color: var(--orange-dark);
    padding-left: 25px;
    font-weight: 500;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
    margin-left: auto;
}

/* Search Icon Button - Hidden on desktop, shown on mobile */
.search-icon-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    flex-shrink: 0;
}

.search-icon-btn:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange-dark);
}

.search-icon-btn:active {
    transform: scale(0.95);
}

.search-container {
    position: relative;
    display: block;
}

.search-input {
    padding: 10px 45px 10px 15px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    width: 200px;
    min-width: 150px;
    transition: all 0.3s var(--ease-out-expo);
    background: rgba(255, 255, 255, 0.9);
    box-sizing: border-box;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.search-input::placeholder {
    overflow: visible;
    white-space: normal;
    text-overflow: clip;
}

.search-input:focus {
    outline: none;
    border-color: var(--orange-dark);
    width: 300px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.2);
}

.search-btn {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--orange-dark);
    border: none;
    color: var(--white);
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--orange-medium);
    transform: translateY(-50%) scale(1.1);
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 10px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
}

.search-result-item:hover {
    background: rgba(102, 126, 234, 0.1);
}


.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: all 0.3s var(--ease-out-expo);
    padding: 8px 0;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--orange-dark);
    transform: translateX(-50%);
    transition: all 0.4s var(--ease-out-expo);
    border-radius: 2px;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 107, 53, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.5s var(--ease-out-expo);
    z-index: -1;
}

.nav-link:hover {
    color: var(--orange-dark);
    transform: translateY(-2px);
}

.nav-link:hover::before {
    width: 100%;
}

.nav-link:hover::after {
    width: 120px;
    height: 120px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    z-index: 1001;
    padding: 5px;
    -webkit-tap-highlight-color: transparent;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

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

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #fef9f3 0%, #faf8f3 50%, #ffb88c 100%);
    padding-top: 120px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 140, 66, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: gradientShift 15s ease infinite;
    z-index: 0;
}

@keyframes gradientShift {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.8;
        transform: scale(1.1);
    }
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.animated-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    animation: float 25s infinite var(--ease-out-expo);
    filter: blur(1px);
    will-change: transform;
    background: var(--orange-light);
}

.shape-1 {
    width: 300px;
    height: 300px;
    background: var(--beige-medium);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 200px;
    height: 200px;
    background: var(--orange-light);
    top: 60%;
    right: 10%;
    animation-delay: 2s;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: var(--beige-dark);
    bottom: 20%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 250px;
    height: 250px;
    background: var(--orange-light);
    top: 30%;
    right: 30%;
    animation-delay: 6s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg) scale(1);
    }
    25% {
        transform: translate(50px, -40px) rotate(90deg) scale(1.1);
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg) scale(0.9);
    }
    75% {
        transform: translate(40px, 20px) rotate(270deg) scale(1.05);
    }
    100% {
        transform: translate(0, 0) rotate(360deg) scale(1);
    }
}

.hero-content {
    text-align: center;
    color: var(--text-dark);
    z-index: 1;
    position: relative;
    animation: heroFadeIn 1.2s var(--ease-out-expo);
}

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

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.15;
    color: var(--text-dark);
    letter-spacing: -1px;
}

.title-line {
    display: block;
    animation: titleSlideIn 1s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.title-line::before {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    animation: shimmer 2s infinite;
}

.title-line:nth-child(1) {
    animation-delay: 0.1s;
    animation-fill-mode: both;
}

.title-line:nth-child(2) {
    animation-delay: 0.3s;
    animation-fill-mode: both;
}

@keyframes titleSlideIn {
    from {
        opacity: 0;
        transform: translateX(-80px) rotateX(90deg);
    }
    to {
        opacity: 1;
        transform: translateX(0) rotateX(0deg);
    }
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(200%);
    }
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 50px;
    opacity: 0.85;
    animation: subtitleFadeIn 1s var(--ease-out-expo) 0.5s both;
    color: var(--text-dark);
    font-weight: 400;
    letter-spacing: 0.5px;
}

@keyframes subtitleFadeIn {
    from { 
        opacity: 0;
        transform: translateY(20px);
        filter: blur(5px);
    }
    to { 
        opacity: 0.95;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.6s both;
}

/* Vehicle Finder */
.vehicle-finder {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    border: 2px solid rgba(255, 140, 66, 0.2);
    animation: fadeInUp 1s ease-out 0.8s both;
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.15);
}

.vehicle-finder h3 {
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 1.5rem;
    text-align: center;
}

.vehicle-finder .finder-subtitle {
    color: var(--text-light);
    font-size: 0.95rem;
    text-align: center;
    margin-bottom: 30px;
    opacity: 0.8;
}

.finder-form {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 600px;
    margin: 0 auto;
}

.finder-form .finder-select {
    flex: 1;
    min-width: 250px;
    max-width: 400px;
}

.finder-form .finder-btn {
    flex-shrink: 0;
}

.finder-select {
    padding: 15px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.9);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: var(--text-dark);
    transition: all 0.3s var(--ease-out-expo);
    cursor: pointer;
}

.finder-select:focus {
    outline: none;
    border-color: var(--orange-dark);
    background: var(--white);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.2);
}

.finder-select:disabled {
    opacity: 0.6;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.6);
    position: relative;
}

.finder-select:disabled::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.3);
    pointer-events: none;
}

.finder-select:disabled:hover {
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(255, 255, 255, 0.7);
}

.finder-btn {
    padding: 15px 30px;
    white-space: nowrap;
}

.btn {
    padding: 16px 42px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s var(--ease-out-expo), height 0.6s var(--ease-out-expo);
    z-index: -1;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--orange-dark);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    background: var(--orange-medium);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.4);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.02);
}

.btn-secondary {
    background: transparent;
    color: var(--orange-dark);
    border: 2px solid var(--orange-dark);
    backdrop-filter: blur(10px);
}

.btn-secondary::before {
    background: rgba(255, 107, 53, 0.1);
}

.btn-secondary:hover {
    background: var(--orange-dark);
    color: var(--white);
    transform: translateY(-5px) scale(1.05);
    border-color: var(--orange-dark);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.02);
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--orange-dark);
    border-radius: 15px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 10px;
    background: var(--orange-dark);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

/* Car Make Section (Inspired by motrparts.com) */
.car-make-section {
    padding: 80px 0;
    background: var(--beige-light);
}

.car-make-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.car-make-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s var(--ease-out-expo);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.car-make-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-dark);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.2);
}

.car-make-card h3 {
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 600;
    margin: 0;
}

.car-make-actions {
    text-align: center;
    margin-top: 30px;
}

.car-make-actions .btn {
    padding: 16px 50px;
    font-size: 1.1rem;
}

.feature-card {
    text-align: center;
    padding: 50px 30px;
    border-radius: 20px;
    background: var(--white);
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    border: 2px solid var(--beige-dark);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.06);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.03) 0%, rgba(255, 107, 53, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s var(--ease-out-expo);
    z-index: 0;
}

.feature-card.animate {
    animation: featureCardIn 0.8s var(--ease-out-expo) forwards;
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }

@keyframes featureCardIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--orange-medium);
    transition: all 0.4s var(--ease-out-expo);
}

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

.feature-card h3,
.feature-card p {
    position: relative;
    z-index: 1;
}

.feature-icon-wrapper {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-medium) 100%);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.25);
    transition: all 0.4s var(--ease-spring);
    position: relative;
    overflow: hidden;
}

.feature-icon-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s var(--ease-out-expo);
}

.feature-icon-wrapper i {
    font-size: 2.5rem;
    color: var(--white);
    z-index: 1;
    position: relative;
    transition: all 0.4s var(--ease-spring);
}

.feature-card:hover .feature-icon-wrapper {
    transform: translateY(-8px) scale(1.1) rotate(5deg);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.35);
}

.feature-card:hover .feature-icon-wrapper::before {
    opacity: 1;
}

.feature-card:hover .feature-icon-wrapper i {
    transform: scale(1.15);
}

@keyframes iconPulse {
    0%, 100% { 
        transform: scale(1) rotate(0deg);
    }
    25% { 
        transform: scale(1.08) rotate(-5deg);
    }
    75% { 
        transform: scale(1.08) rotate(5deg);
    }
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-light);
}

/* Products Section */
.products {
    padding: 100px 0;
    background: var(--white);
    color: var(--text-dark);
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    display: inline-block;
    width: 100%;
    animation: titleFadeIn 1s var(--ease-out-expo);
}

.section-title::before {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--orange-dark), transparent);
    border-radius: 2px;
    animation: titleUnderline 1.5s var(--ease-out-expo) 0.5s forwards;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--orange-light);
    border-radius: 2px;
    opacity: 0.5;
}

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

@keyframes titleUnderline {
    to {
        width: 200px;
    }
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: var(--beige-light);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 30px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    border: 2px solid rgba(255, 140, 66, 0.1);
    opacity: 0;
    transform: scale(0.85) translateY(30px);
    position: relative;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.05);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.product-card.animate {
    animation: productCardIn 0.8s var(--ease-out-expo) forwards;
}

.product-card:nth-child(1) { animation-delay: 0.1s; }
.product-card:nth-child(2) { animation-delay: 0.15s; }
.product-card:nth-child(3) { animation-delay: 0.2s; }
.product-card:nth-child(4) { animation-delay: 0.25s; }
.product-card:nth-child(5) { animation-delay: 0.3s; }
.product-card:nth-child(6) { animation-delay: 0.35s; }

@keyframes productCardIn {
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.product-card:hover {
    transform: scale(1.08) translateY(-10px) perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    background: var(--white);
    box-shadow: 0 30px 60px rgba(255, 140, 66, 0.25), 0 0 0 1px rgba(255, 140, 66, 0.2);
    border-color: var(--orange-dark);
    transition: all 0.3s var(--ease-out-expo);
}

.product-card:hover::before {
    left: 100%;
}

.product-image {
    width: 100%;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.product-placeholder {
    font-size: 3.5rem;
    color: var(--orange-dark);
    animation: iconFloat 3s var(--ease-out-expo) infinite;
    transition: all 0.4s var(--ease-spring);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-placeholder i {
    display: block;
}

.product-card:hover .product-placeholder {
    transform: scale(1.1);
    color: var(--orange-medium);
}

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

.product-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.product-card p {
    color: var(--text-light);
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--beige-light);
}

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

.service-card {
    background: var(--white);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(40px) scale(0.95);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(255, 140, 66, 0.1);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.05);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-medium) 100%);
    transition: left 0.6s var(--ease-out-expo);
    z-index: 0;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.6s var(--ease-out-expo);
    z-index: 1;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover::after {
    width: 400px;
    height: 400px;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03) perspective(1000px) rotateX(var(--rotate-x, 0deg)) rotateY(var(--rotate-y, 0deg));
    box-shadow: 0 30px 60px rgba(255, 140, 66, 0.25);
    color: var(--white);
    border-color: var(--orange-dark);
    transition: all 0.3s var(--ease-out-expo);
}

.service-card.animate {
    animation: fadeInUp 0.6s ease-out forwards;
}

.service-card:nth-child(1) { animation-delay: 0.1s; }
.service-card:nth-child(2) { animation-delay: 0.2s; }
.service-card:nth-child(3) { animation-delay: 0.3s; }
.service-card:nth-child(4) { animation-delay: 0.4s; }
.service-card:nth-child(5) { animation-delay: 0.5s; }
.service-card:nth-child(6) { animation-delay: 0.6s; }

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
    animation: iconBounce 3s var(--ease-out-expo) infinite;
    transition: all 0.4s var(--ease-spring);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.2));
    color: var(--orange-dark);
}

.service-icon i {
    display: inline-block;
}

.service-card:hover .service-icon {
    transform: scale(1.3) rotate(15deg);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.4));
}

@keyframes iconBounce {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
    }
    25% { 
        transform: translateY(-8px) rotate(-5deg);
    }
    75% { 
        transform: translateY(-12px) rotate(5deg);
    }
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-dark);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.service-card:hover h3 {
    color: var(--white);
}

.service-card p {
    color: var(--text-light);
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
    line-height: 1.6;
}

.service-card:hover p {
    color: var(--white);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-medium) 100%);
    color: var(--white);
}

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

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

.contact-item {
    display: flex;
    align-items: start;
    gap: 20px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: all 0.5s var(--ease-out-expo);
    opacity: 0;
    transform: translateX(-40px) scale(0.95);
    position: relative;
    overflow: hidden;
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s var(--ease-out-expo);
}

.contact-item.animate {
    animation: contactSlideIn 0.8s var(--ease-out-expo) forwards;
}

.contact-item:nth-child(1) { animation-delay: 0.1s; }
.contact-item:nth-child(2) { animation-delay: 0.2s; }
.contact-item:nth-child(3) { animation-delay: 0.3s; }

@keyframes contactSlideIn {
    to {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

.contact-item:hover {
    transform: translateX(15px) scale(1.02);
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.contact-item:hover::before {
    left: 100%;
}

.contact-icon-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--orange-dark) 0%, var(--orange-medium) 100%);
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.25);
    transition: all 0.3s var(--ease-out-expo);
}

.contact-icon-wrapper i {
    font-size: 1.5rem;
    color: var(--white);
    transition: all 0.3s var(--ease-out-expo);
}

.contact-item:hover .contact-icon-wrapper {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
}

.contact-item:hover .contact-icon-wrapper i {
    transform: scale(1.15);
}

.contact-item h3 {
    margin-bottom: 10px;
}

.contact-item p {
    opacity: 0.9;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateX(30px);
}

.contact-form.animate {
    animation: slideInLeft 0.6s ease-out forwards;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.95);
    color: var(--text-dark);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--white);
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
    transition: all 0.3s var(--ease-out-expo);
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
    transform: translateX(5px);
}

/* Categories Section */
.categories {
    padding: 100px 0;
    background: var(--beige-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 25px;
}

.category-card {
    background: var(--white);
    border-radius: 16px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.4s var(--ease-out-expo);
    cursor: pointer;
    border: 2px solid var(--beige-dark);
    opacity: 1;
    transform: translateY(0) scale(1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    position: relative;
    overflow: hidden;
    pointer-events: auto !important;
    z-index: 1;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 140, 66, 0.1), transparent);
    transition: left 0.5s ease;
}

.category-card.animate {
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: var(--orange-medium);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.18);
    background: var(--white);
}

.category-card:hover::before {
    left: 100%;
}

.category-card:active {
    transform: translateY(-5px) scale(1.02);
}

.category-icon {
    font-size: 2.8rem;
    margin-bottom: 20px;
    transition: all 0.4s var(--ease-spring);
    color: var(--orange-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.08) 0%, rgba(255, 107, 53, 0.12) 100%);
    border-radius: 16px;
    position: relative;
}

.category-icon i {
    display: inline-block;
    font-size: inherit;
}

.category-card:hover .category-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(255, 140, 66, 0.15) 0%, rgba(255, 107, 53, 0.2) 100%);
    color: var(--orange-medium);
}

.category-card h3 {
    font-size: 1.15rem;
    color: var(--text-dark);
    font-weight: 600;
    line-height: 1.4;
    margin: 0;
}

/* Brands Section */
.brands {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 50%, var(--orange-light) 100%);
}

.brands-category {
    margin-bottom: 50px;
}

.brands-category:last-child {
    margin-bottom: 0;
}

.brands-category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.brands-category-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 20px;
}

.brand-card {
    background: var(--white);
    border-radius: 12px;
    padding: 25px 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-dark);
    transition: all 0.4s var(--ease-out-expo);
    border: 2px solid var(--beige-dark);
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.06);
    letter-spacing: 0.5px;
}

.brand-card.animate {
    animation: scaleIn 0.6s var(--ease-out-expo) forwards;
}

.brand-card:hover {
    background: var(--white);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.2);
    border-color: var(--orange-medium);
    color: var(--orange-dark);
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background: var(--white);
}

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

.testimonial-card {
    background: var(--beige-light);
    border-radius: 20px;
    padding: 30px;
    transition: all 0.4s var(--ease-out-expo);
    opacity: 0;
    transform: translateY(30px);
    border: 2px solid rgba(255, 140, 66, 0.1);
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.05);
}

.testimonial-card.animate {
    animation: fadeInUp 0.6s var(--ease-out-expo) forwards;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 140, 66, 0.2);
    border-color: var(--orange-light);
}

.testimonial-rating {
    color: #ffc107;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.testimonial-card p {
    color: var(--text-light);
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.testimonial-author strong {
    color: var(--orange-dark);
    font-size: 1.1rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Newsletter Section */
.newsletter {
    padding: 90px 0;
    background: linear-gradient(135deg, var(--beige-light) 0%, var(--beige-medium) 50%, rgba(255, 184, 140, 0.4) 100%);
    color: var(--text-dark);
    position: relative;
    overflow: hidden;
}

.newsletter::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 140, 66, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.newsletter-content {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.newsletter-content h2 {
    font-size: 2.8rem;
    margin-bottom: 18px;
    font-weight: 700;
    color: var(--text-dark);
}

.newsletter-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    gap: 15px;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--beige-dark);
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--white);
    transition: all 0.3s var(--ease-out-expo);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.newsletter-form input:focus {
    outline: none;
    border-color: var(--orange-medium);
    box-shadow: 0 5px 20px rgba(255, 107, 53, 0.15);
    transform: translateY(-2px);
}

.newsletter-form button {
    padding: 15px 40px;
    white-space: nowrap;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
    color: var(--white);
    padding: 70px 0 25px;
    position: relative;
}

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

.footer-section h3 {
    margin-bottom: 22px;
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--orange-medium);
    border-radius: 2px;
}

.footer-section p {
    margin-bottom: 20px;
    opacity: 0.9;
    line-height: 1.8;
}

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

.footer .logo {
    height: 40px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

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

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

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s var(--ease-out-expo);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.footer-section ul li a i {
    width: 18px;
    text-align: center;
    color: var(--orange-light);
    transition: all 0.3s var(--ease-out-expo);
}

.footer-section ul li a:hover {
    color: var(--white);
    transform: translateX(6px);
}

.footer-section ul li a:hover i {
    color: var(--orange-medium);
    transform: scale(1.15);
}

.footer-bottom {
    text-align: center;
    padding-top: 35px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    opacity: 0.75;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Top bar styles moved to mobile-fixes.css for better control */
    
    .navbar {
        top: 0;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-link {
        padding: 15px 0;
        font-size: 1rem;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        width: 100%;
        display: block;
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-actions {
        gap: 10px;
    }

    .search-input {
        width: 150px;
    }

    .search-input:focus {
        width: 180px;
    }

    .hamburger {
        display: flex;
    }

    .hero {
        padding-top: 160px;
    }

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

    .hero-subtitle {
        font-size: 1.2rem;
    }

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

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

    .section-title {
        font-size: 2rem;
    }

    .newsletter-form {
        flex-direction: column;
    }

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

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
        gap: 15px;
    }

    .category-card {
        padding: 20px 15px;
    }

    .category-icon {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .category-card h3 {
        font-size: 0.95rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
        gap: 15px;
    }

    .brand-card {
        padding: 20px 15px;
        font-size: 1rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    .vehicle-finder {
        padding: 20px;
    }

    .vehicle-finder h3 {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .finder-form {
        gap: 10px;
    }

    .finder-select {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .finder-btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }

    .logo-text {
        font-size: 1rem;
    }

    .logo {
        width: 40px;
        height: 40px;
    }

    /* Search and nav-actions visibility handled in mobile-fixes.css */

    .top-bar-dropdown {
        display: none;
    }

    .dropdown-menu {
        min-width: 200px;
        max-height: 300px;
    }
}

/* Tablet Responsive */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 3rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .car-make-section {
        padding: 60px 0;
    }

    .car-make-grid {
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 15px;
    }

    .car-make-card {
        padding: 20px 10px;
    }

    .car-make-card h3 {
        font-size: 0.85rem;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

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

    /* Top bar styles moved to mobile-fixes.css for better control */

    .navbar {
        padding: 10px 0;
    }

    .nav-menu {
        top: 100px;
    }

    .hero {
        padding-top: 120px;
        min-height: 90vh;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .title-line {
        display: block;
    }

    .vehicle-finder {
        padding: 15px;
    }

    .vehicle-finder h3 {
        font-size: 1rem;
    }

    .finder-form {
        gap: 8px;
    }

    .finder-select {
        padding: 8px 12px;
        font-size: 0.85rem;
    }

    .finder-btn {
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .section-title {
        font-size: 1.75rem;
    }

    .categories-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
        gap: 12px;
    }

    .category-card {
        padding: 15px 10px;
    }

    .car-make-section {
        padding: 50px 0;
    }

    .car-make-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 12px;
    }

    .car-make-card {
        padding: 15px 8px;
    }

    .car-make-card h3 {
        font-size: 0.75rem;
    }

    .car-make-actions .btn {
        padding: 14px 40px;
        font-size: 1rem;
    }

    .category-icon {
        font-size: 1.8rem;
        margin-bottom: 8px;
    }

    .category-card h3 {
        font-size: 0.85rem;
    }

    .brands-grid {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
        gap: 12px;
    }

    .brand-card {
        padding: 15px 10px;
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .product-card {
        padding: 20px;
    }

    .product-placeholder {
        font-size: 2.5rem;
    }

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

    .service-card {
        padding: 25px 20px;
    }

    .service-icon {
        font-size: 2.5rem;
        margin-bottom: 15px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .feature-card {
        padding: 25px 20px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .testimonial-card {
        padding: 20px;
    }

    .contact-content {
        gap: 20px;
    }

    .contact-item {
        padding: 20px;
    }

    .contact-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .contact-icon-wrapper i {
        font-size: 1.2rem;
    }

    .newsletter-content h2 {
        font-size: 1.5rem;
    }

    .newsletter-content p {
        font-size: 0.9rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 10px;
    }

    .newsletter-form input {
        width: 100%;
    }

    .footer-content {
        gap: 30px;
    }

    .footer-section {
        margin-bottom: 20px;
    }

    .logo-text {
        font-size: 0.9rem;
    }

    .logo {
        width: 35px;
        height: 35px;
    }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.75rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .category-card h3 {
        font-size: 0.8rem;
    }

    .brand-card {
        font-size: 0.8rem;
        padding: 12px 8px;
    }
}

