/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    overflow-x: hidden;
    background: #0a0a0a;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #1a0033, #330066, #4d0099, #6600cc, #7a00ff);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    z-index: -2;
}

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(120, 0, 255, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(102, 0, 204, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(77, 0, 153, 0.2) 0%, transparent 50%);
    animation: floatingOrbs 20s ease-in-out infinite;
    z-index: -1;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes floatingOrbs {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -30px) rotate(120deg); }
    66% { transform: translate(-20px, 20px) rotate(240deg); }
}

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(120, 0, 255, 0.3);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

/* Logo Slideshow */
.logo-slideshow {
    position: relative;
    width: 120px;
    height: 60px;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.logo-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.logo-slide.active {
    opacity: 1;
}

@keyframes slide {
    0% { transform: translateX(0); }
    33% { transform: translateX(0); }
    38% { transform: translateX(-100%); }
    71% { transform: translateX(-100%); }
    76% { transform: translateX(-200%); }
    95% { transform: translateX(-200%); }
    100% { transform: translateX(0); }
}

.logo-slideshow:hover .logo-slide {
    animation: slide 12s infinite;
}

.logo-slideshow:hover .logo-slide.active {
    animation: none;
    opacity: 0;
}

.logo-slideshow:hover .logo-slide:nth-child(1) { animation-delay: 0s; }
.logo-slideshow:hover .logo-slide:nth-child(2) { animation-delay: 4s; }
.logo-slideshow:hover .logo-slide:nth-child(3) { animation-delay: 8s; }

/* Logo Design */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-logo-image {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.logo-w {
    display: flex;
    align-items: flex-end;
    height: 40px;
    gap: 2px;
}

.w-left, .w-middle, .w-right {
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    border-radius: 2px;
    position: relative;
}

.w-left {
    width: 8px;
    height: 35px;
    transform: skew(-15deg);
}

.w-middle {
    width: 6px;
    height: 25px;
    transform: skew(15deg);
}

.w-right {
    width: 8px;
    height: 35px;
    transform: skew(-15deg);
}

.logo-text-container {
    display: flex;
    flex-direction: column;
}

.nav-logo .logo-text {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
}

.nav-logo .logo-subtitle {
    font-size: 0.6rem;
    color: #888;
    letter-spacing: 1.5px;
    display: block;
    margin-top: 2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: #cc00ff;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section - Restructured */
.hero {
    min-height: 100vh;
    background: #000;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    text-align: center;
    overflow: hidden;
}

.hero-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 0;
    position: relative;
    z-index: 2;
}

.logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.main-logo {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin: 0 auto;
}

.animated-logo {
    animation: logoGlow 3s ease-in-out infinite alternate, logoFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 20px rgba(122, 0, 255, 0.6));
    transition: transform 0.3s ease;
}

.animated-logo:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(204, 0, 255, 0.8));
}

@keyframes logoGlow {
    0% {
        filter: drop-shadow(0 0 20px rgba(122, 0, 255, 0.6));
    }
    50% {
        filter: drop-shadow(0 0 35px rgba(204, 0, 255, 0.9));
    }
    100% {
        filter: drop-shadow(0 0 40px rgba(255, 0, 204, 1));
    }
}

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

.tagline {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    color: #fff;
    margin: 20px 0;
}

.tagline .ampersand {
    color: #7a00ff;
    font-weight: bold;
}

/* Social links removed */

.logo-w-large {
    display: flex;
    align-items: flex-end;
    height: 120px;
    gap: 8px;
    margin-bottom: 1rem;
}

.w-left-large, .w-middle-large, .w-right-large {
    background: linear-gradient(45deg, #7a00ff, #cc00ff, #ff00cc);
    border-radius: 6px;
    position: relative;
    animation: logoGlow 3s ease-in-out infinite alternate;
}

.w-left-large {
    width: 25px;
    height: 100px;
    transform: skew(-15deg);
}

.w-middle-large {
    width: 20px;
    height: 70px;
    transform: skew(15deg);
}

.w-right-large {
    width: 25px;
    height: 100px;
    transform: skew(-15deg);
}

@keyframes logoGlow {
    0% { 
        filter: drop-shadow(0 0 10px rgba(120, 0, 255, 0.5));
        transform: skew(-15deg) scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(120, 0, 255, 0.8));
        transform: skew(-15deg) scale(1.05);
    }
}

.w-middle-large {
    animation-name: logoGlowMiddle;
}

@keyframes logoGlowMiddle {
    0% { 
        filter: drop-shadow(0 0 10px rgba(120, 0, 255, 0.5));
        transform: skew(15deg) scale(1);
    }
    100% { 
        filter: drop-shadow(0 0 30px rgba(120, 0, 255, 0.8));
        transform: skew(15deg) scale(1.05);
    }
}

.main-title {
    font-family: 'Orbitron', monospace;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #7a00ff, #cc00ff, #ff00cc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    line-height: 1;
    animation: textGlow 3s ease-in-out infinite alternate;
}

.main-subtitle {
    font-size: 1.5rem;
    color: #888;
    letter-spacing: 4px;
    margin: 0;
    font-weight: 300;
}

@keyframes textGlow {
    0% { filter: drop-shadow(0 0 5px rgba(120, 0, 255, 0.5)); }
    100% { filter: drop-shadow(0 0 20px rgba(120, 0, 255, 0.8)); }
}

.hero-image-section {
    margin: 3rem 0;
}

.hero-intro {
    margin-top: 2rem;
}

.intro-text {
    font-size: 1.3rem;
    color: #ccc;
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

.btn {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    color: white;
    box-shadow: 0 4px 15px rgba(120, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 0, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    color: #cc00ff;
    border: 2px solid #cc00ff;
}

.btn-secondary:hover {
    background: #cc00ff;
    color: white;
    transform: translateY(-2px);
}

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

.car-showcase {
    width: 500px;
    height: 300px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.3);
    animation: float 6s ease-in-out infinite;
    margin: 0 auto;
}

.car-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

.car-silhouette {
    width: 80%;
    height: 60%;
    background: linear-gradient(45deg, rgba(120, 0, 255, 0.3), rgba(204, 0, 255, 0.3));
    border-radius: 10px;
    position: relative;
    animation: pulse 2s ease-in-out infinite;
}

.car-silhouette::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #7a00ff;
    font-size: 1.2rem;
    font-weight: 600;
    text-align: center;
}

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

@keyframes pulse {
    0%, 100% { opacity: 0.7; }
    50% { opacity: 1; }
}

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

.scroll-arrow {
    width: 30px;
    height: 30px;
    border: 2px solid #7a00ff;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
    animation: bounce 2s infinite;
}

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

/* Section Styles */
section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', monospace;
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.2rem;
    text-align: center;
    color: #ccc;
    margin-bottom: 4rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* What We Specialize In Section */
.services {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0;
}

/* Services Section */
.services {
    padding: 6rem 0;
    position: relative;
    background: rgba(10, 10, 20, 0.7);
    backdrop-filter: blur(10px);
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 15px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(120, 0, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #7a00ff, #cc00ff);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

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

.service-icon {
    font-size: 2.5rem;
    color: #7a00ff;
    margin-bottom: 1.5rem;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    background: rgba(122, 0, 255, 0.1);
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    background: rgba(122, 0, 255, 0.2);
    transform: rotateY(180deg);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #fff;
    font-weight: 600;
}

.service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-button {
    display: inline-block;
    background: linear-gradient(45deg, #7a00ff, #cc00ff);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #cc00ff, #7a00ff);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(122, 0, 255, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .services {
        padding: 4rem 0;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
}

.specialization-header .section-title {
    font-size: 2.5rem;
    margin-bottom: 0;
    background: linear-gradient(45deg, #cc00ff, #7a00ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.specialization-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.specialization-text {
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.8;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.specialization-text:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 0, 255, 0.5);
    box-shadow: 0 10px 30px rgba(120, 0, 255, 0.2);
}

.specialization-text:last-child {
    margin-bottom: 0;
}

/* Gallery Section */
.gallery {
    padding: 120px 0;
}

/* Featured Project */
.featured-project {
    margin: 4rem 0;
    padding: 3rem 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.9) 100%);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    text-align: center;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.3);
}

.featured-project-content {
    display: flex;
    align-items: center;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.featured-text {
    flex: 1;
    text-align: left;
    padding: 2rem 0;
}

.featured-tag {
    display: inline-block;
    background: linear-gradient(90deg, #ff6b6b, #ff8e8e);
    color: #fff;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #fff;
    font-weight: 700;
    line-height: 1.2;
    background: linear-gradient(90deg, #fff, #e0e0e0);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: #fff; /* Fallback for browsers that don't support background-clip:text */
}

.featured-description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    max-width: 600px;
}

/* Featured Image Grid */
.featured-image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin: 2rem auto 0;
}

.featured-image-item {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    aspect-ratio: 3/4;
}

.featured-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(122, 0, 255, 0.3);
}

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

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

/* Responsive adjustments for featured images */
@media (max-width: 992px) {
    .featured-image-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .featured-image-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .featured-image-item {
        aspect-ratio: 3/4;
    }
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .featured-project-content {
        flex-direction: column;
        text-align: center;
    }
    
    .featured-text {
        text-align: center;
        padding: 2rem 1rem;
    }
    
    .featured-description {
        margin-left: auto;
        margin-right: auto;
    }
    
    .featured-image {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .featured-title {
        font-size: 2rem;
    }
    
    .featured-description {
        font-size: 1rem;
    }
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
    margin-bottom: 4rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-item {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.2);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
}

.gallery-item.featured-work {
    aspect-ratio: 16/10;
    border: 2px solid rgba(120, 0, 255, 0.4);
    background: rgba(120, 0, 255, 0.05);
}

.gallery-item.service-example {
    aspect-ratio: 16/10;
}

.gallery-item:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(120, 0, 255, 0.8);
    box-shadow: 0 20px 40px rgba(120, 0, 255, 0.3);
}

/* Image Container and Styling */
.gallery-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.4s ease;
    filter: brightness(0.9) contrast(1.1) saturate(1.2);
}

.gallery-image:hover {
    transform: scale(1.1);
    filter: brightness(1) contrast(1.2) saturate(1.3);
}

/* Overlay Effects */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(120, 0, 255, 0.8) 0%,
        rgba(204, 0, 255, 0.6) 50%,
        rgba(255, 0, 204, 0.8) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-info {
    text-align: center;
    color: white;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-info {
    transform: translateY(0);
}

.gallery-info h4 {
    font-family: 'Orbitron', monospace;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.gallery-info p {
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

/* Service Cards in Gallery */
.gallery .service-card {
    background: rgba(20, 20, 30, 0.8);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(120, 0, 255, 0.2);
}

.gallery .service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(120, 0, 255, 0.2);
    border-color: rgba(120, 0, 255, 0.5);
}

.gallery .service-icon {
    font-size: 2.5rem;
    color: #7a00ff;
    margin-bottom: 1.5rem;
}

.gallery .service-card h3 {
    color: #fff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.gallery .service-card p {
    color: #ccc;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.gallery .btn-primary {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

/* Service Examples */
.gallery-placeholder {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #7a00ff;
    font-size: 3rem;
    padding: 2rem;
    text-align: center;
}

.gallery-placeholder span {
    font-size: 1.2rem;
    margin: 1rem 0 0.5rem 0;
    color: #cc00ff;
    font-weight: 600;
}

.service-desc {
    font-size: 0.9rem !important;
    color: #ccc !important;
    margin-top: 0.5rem;
    line-height: 1.4;
}

/* Gallery Call to Action */
.gallery-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: rgba(120, 0, 255, 0.1);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.3);
    margin-top: 2rem;
}

.gallery-cta h3 {
    font-family: 'Orbitron', monospace;
    font-size: 2rem;
    color: #cc00ff;
    margin-bottom: 1rem;
}

.gallery-cta p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 2rem;
}

/* Image Quality Enhancements */
.gallery-image {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    /* Add subtle shadow for depth */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Loading Animation */
.gallery-image[loading="lazy"] {
    opacity: 0;
    animation: fadeInImage 0.6s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

/* Pricing Section */
.pricing {
    background: rgba(0, 0, 0, 0.3);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(120, 0, 255, 0.2);
    transition: all 0.3s ease;
}

.pricing-card.featured {
    border-color: rgba(120, 0, 255, 0.5);
    background: rgba(120, 0, 255, 0.1);
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(120, 0, 255, 0.5);
}

.pricing-card h3 {
    font-family: 'Orbitron', monospace;
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #7a00ff;
    text-align: center;
}

.pricing-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.pricing-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(120, 0, 255, 0.2);
}

.pricing-item:last-child {
    border-bottom: none;
}

.price {
    font-weight: 600;
    color: #cc00ff;
    font-size: 1.1rem;
}

.pricing-content {
    text-align: center;
    margin-top: 1.5rem;
}

.pricing-content p {
    margin-bottom: 2rem;
    color: #ccc;
    line-height: 1.6;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: #7a00ff;
    width: 30px;
}

.contact-item h4 {
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.contact-item p {
    color: #ccc;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 15px;
    border: 1px solid rgba(120, 0, 255, 0.3);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #7a00ff;
    box-shadow: 0 0 10px rgba(120, 0, 255, 0.3);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888;
}

/* Footer */
.footer {
    background: rgba(0, 0, 0, 0.8);
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(120, 0, 255, 0.3);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo h3 {
    font-family: 'Orbitron', monospace;
    color: #7a00ff;
    margin-bottom: 0.5rem;
}

.footer-logo p {
    color: #888;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #7a00ff;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    color: #ccc;
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

.footer-social a:hover {
    color: #7a00ff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(120, 0, 255, 0.2);
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .main-title {
        font-size: 3rem;
    }
    
    .main-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .logo-w-large {
        height: 80px;
        gap: 6px;
    }
    
    .w-left-large, .w-right-large {
        width: 20px;
        height: 70px;
    }
    
    .w-middle-large {
        width: 16px;
        height: 50px;
    }
    
    .car-showcase {
        width: 350px;
        height: 250px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .car-showcase {
        width: 300px;
        height: 200px;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 2.5rem;
    }
    
    .main-subtitle {
        font-size: 0.9rem;
        letter-spacing: 1px;
    }
    
    .logo-w-large {
        height: 60px;
        gap: 4px;
    }
    
    .w-left-large, .w-right-large {
        width: 15px;
        height: 50px;
    }
    
    .w-middle-large {
        width: 12px;
        height: 35px;
    }
    
    .car-showcase {
        width: 280px;
        height: 200px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .specialization-text {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .featured-project {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }
    
    .featured-title {
        font-size: 1.5rem;
    }
    
    .gallery-cta {
        padding: 2rem 1rem;
    }
    
    .gallery-cta h3 {
        font-size: 1.5rem;
    }
    
    .gallery-info h4 {
        font-size: 1.2rem;
    }
    
    .gallery-info p {
        font-size: 0.9rem;
    }
    
    .nav-logo-image {
        height: 40px;
    }
    
    .hero-logo-image {
        max-width: 300px;
    }
}
