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

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    background-color: #050308;
    color: #feffff;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #050308;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

/* NAV LAYOUT: text left, logo center, nav right */
.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 1rem 0;
}

/* LEFT TEXT LOGO */
.logo-left .logo-text {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ea0188;
}

/* CENTER LOGO IMAGE */
.logo-center {
    display: flex;
    justify-content: center;
}

.logo-center .logo-img {
    height: 70px;
    width: auto;
}

/* RIGHT NAV */
.nav {
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* NAV LINKS (Home / Services / About) */
.nav-link {
    color: #feffff;
    margin-right: 1rem;
    font-size: 0.95rem;
    font-weight: 500;
}

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

/* MOBILE FIX */
@media (max-width: 768px) {
    .nav-container {
        grid-template-columns: 1fr auto 1fr;
    }

    .logo-center .logo-img {
        height: 40px;
    }
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #ea0188;
}

/* legacy .nav-links (used on other pages / mobile) */
.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: #feffff;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ea0188;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.nav-toggle .hamburger,
.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    display: block;
    width: 25px;
    height: 3px;
    background: #feffff;
    transition: transform 0.3s ease;
}

.nav-toggle .hamburger::before,
.nav-toggle .hamburger::after {
    content: '';
    position: relative;
}

.nav-toggle .hamburger::before {
    top: -8px;
}

.nav-toggle .hamburger::after {
    top: 8px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;

    background-image:
        linear-gradient(rgba(0,0,0,0.65), rgba(0,0,0,0.65)),
        var(--hero-image);

    background-size: cover;
    background-position: center 58%;
    background-repeat: no-repeat;

    text-align: center;
    padding: 0 1rem;
}

.hero-title {
    color: #ea0188;
    text-shadow: 0 0 8px rgba(0,0,0,0.7);
}

.hero-subtitle {
    color: #feffff;
    text-shadow: 0 0 6px rgba(0,0,0,0.6);
}
.hero-buttons {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
}
.hero-buttons .btn {
    box-shadow: 0 0 12px rgba(0,0,0,0.5);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.primary-btn {
    background-color: #ea0188;
    color: #feffff;
}

.primary-btn:hover {
    background-color: #b8006a;
    transform: translateY(-2px);
}

/* Unified action button class - for Book Now, Contact, Get Your Quote */
.action-btn {
    display: inline-block;
    background: #ea0188;
    color: #feffff;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    text-decoration: none;
}

.action-btn:hover {
    background-color: #b8006a;
    transform: translateY(-2px);
}

/* CTA button - same as action button */
.cta-btn {
    display: block;
    background: #ea0188;
    color: #feffff;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    margin: 2.5rem auto 3rem;
    max-width: 300px;
    text-align: center;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.cta-btn:hover {
    background-color: #b8006a;
    transform: translateY(-2px);
}

.secondary-btn {
    border: 2px solid #ea0188;
    color: #ea0188;
}

.secondary-btn:hover {
    background-color: #ea0188;
    color: #050308;
}

/* Sections */
section {
    padding: 4rem 0;
}

.section-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 2rem;
    color: #ea0188;
}

/* Builds Section (3 cards optimized) */
.builds-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

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

@media (max-width: 600px) {
    .builds-grid {
        grid-template-columns: 1fr;
    }
}

.build-card {
    background-color: #151018;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}

.build-card:hover {
    transform: translateY(-10px);
}

/* BASE IMAGE STYLE – NO FIXED HEIGHT HERE */
.build-card img {
    width: 100%;
    border-radius: 10px;
    display: block;
}

/* Title + description in cards */
.build-card h3 {
    margin: 1rem;
    color: #feffff;
}

.build-card p {
    margin: 0 1rem 1rem;
    color: #afa0a4;
    font-size: 0.9rem;
}

.build-btn {
    display: inline-block;
    margin: 0 1rem 1.2rem;
    padding: 0.5rem 1.2rem;
    border-radius: 30px;
    font-size: 0.85rem;
    text-align: center;
}

/* =====================================================
   BUILD CARD — INDIVIDUAL IMAGE CONTROL SYSTEM
   ===================================================== */

/* All featured build images use this class */
.build-img {
    width: 100%;
    height: 240px; /* Fixed consistent height for all cards */
    object-fit: cover;
    object-position: var(--build-img-x, 50%) var(--build-img-y, 50%);
    border-radius: 10px;
    display: block;
}

/* ----------- INDIVIDUAL OVERRIDES (Only crop position) ----------- */

/* Build 1 */
.build-1-img {
    --build-img-x: 50%;
    --build-img-y: 62%;
}

/* Build 2 */
.build-2-img {
    --build-img-x: 50%;
    --build-img-y: 50%;
}

/* Build 3 */
.build-3-img {
    --build-img-x: 50%;
    --build-img-y: 61%;
}



/* Services Section */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background-color: #151018;
    padding: 2rem 1rem;
    border-radius: 10px;
    text-align: center;
    color: #feffff;
    font-weight: bold;
    border: 2px solid #231b24;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.service-card:hover {
    background-color: #ea0188;
    color: #050308;
    border-color: #ea0188;
    transform: translateY(-5px);
}

/* Updated Service Card Layout with Images */
.service-card {
    background-color: #151018;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    border: 2px solid #231b24;
    transition: transform 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.service-card span {
    font-weight: bold;
    font-size: 1rem;
}

.service-card:hover {
    background-color: #ea0188;
    border-color: #ea0188;
    transform: translateY(-5px);
}

.service-card:hover span {
    color: #050308;
}

/* GRID — 3 per row */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

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

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* Showcase Section */
.showcase {
    padding: 4rem 1rem;
    display: flex;
    justify-content: center;
}

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

.showcase-content img {
    width: 100%;
    height: 550px;
    border-radius: 15px;
    object-fit: cover;
    margin-bottom: 2rem;
}

.showcase-text h2 {
    color: #feffff;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.showcase-text p {
    color: #afa0a4;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.showcase .btn {
    margin: 0 auto;
}

/* Footer */
.footer {
    background-color: #030203;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.footer-info,
.footer-about {
    flex: 1;
    min-width: 250px;
}

.footer h3 {
    margin-bottom: 1rem;
    color: #ea0188;
}

.footer p,
.footer a {
    font-size: 0.9rem;
    color: #afa0a4;
    line-height: 1.5;
}

.footer a:hover {
    color: #ea0188;
}

.footer-bottom {
    border-top: 1px solid #231b24;
    text-align: center;
    margin-top: 2rem;
    padding-top: 1rem;
    font-size: 0.8rem;
    color: #afa0a4;
}

/* SERVICES GRID FIXED 3 PER ROW */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    padding: 1rem 0;
}

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

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr;
    }
}

/* UNIVERSAL SERVICE IMAGE CONTROL */
.service-card img.srv-img {
    width: 100%;
    height: var(--height, 180px);
    object-fit: cover;
    object-position: var(--crop-x, 50%) var(--crop-y, 50%);
    border-bottom: 2px solid #ea0188;
    display: block;
}

/* INDIVIDUAL CROPPING CONTROLS */
.tint-img { --height: 200px; --crop-y: 58%; --crop-x: 50%; }
.wrap-img { --height: 185px; --crop-y: 65%; --crop-x: 50%; }
.starlights-img { --height: 180px; --crop-y: 45%; --crop-x: 50%; }
.mech-img { --height: 180px; --crop-y: 50%; --crop-x: 50%; }
.caliper-img { --height: 200px; --crop-y: 75%; --crop-x: 50%; }
.perf-img { --height: 200px; --crop-y: 60%; --crop-x: 50%; }
.cosmetic-img { --height: 175px; --crop-y: 80%; --crop-x: 50%; }
.tires-img { --height: 180px; --crop-y: 70%; --crop-x: 50%; }
.exhaust-img { --height: 175px; --crop-y: 75%; --crop-x: 50%; }

/* Responsive Styles */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        top: 100%;
        right: 0;
        width: 200px;
        background-color: #050308;
        flex-direction: column;
        gap: 0;
        display: none;
    }
    .nav-links a {
        padding: 1rem;
        border-bottom: 1px solid #231b24;
    }
    .nav-links a:last-child {
        border-bottom: none;
    }
    .nav-toggle {
        display: block;
    }
    .nav-links.open {
        display: flex;
    }
    .showcase-content {
        flex-direction: column;
    }
}

/* ABOUT SECTION */
.about-section {
    padding: 4rem 0;
    background-color: #08050a;
}

.about-container {
    display: flex;
    align-items: center;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.about-logo img {
    width: 220px;
    height: auto;
    border-radius: 10px;
}

.about-text {
    flex: 1;
    min-width: 260px;
}

.about-text h2 {
    font-size: 2rem;
    color: #ea0188;
    margin-bottom: 1rem;
}

.about-text p {
    font-size: 1rem;
    color: #afa0a4;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-logo img {
        width: 180px;
    }
}

/* legacy Book Now button in nav (no longer used) */
.nav-book-btn {
    margin-left: 1rem;
    font-size: 0.85rem;
    padding: 0.4rem 0.9rem;
}

/* Build Details Page */
.build-details {
    padding: 4rem 1rem;
}

.build-title {
    color: #feffff;
    text-align: center;
    margin-bottom: 1rem;
}

.build-description {
    color: #afa0a4;
    max-width: 820px;
    margin: 0 auto 2rem;
    text-align: center;
}

.build-main-image {
    width: 100%;
    max-width: 700px;
    display: block;
    margin: 0 auto 3rem;
    border-radius: 12px;
    object-fit: cover;
}

.build-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.build-gallery img {
    width: 100%;
    border-radius: 10px;
    object-fit: cover;
    height: 220px;
}

/* CONTACT POPUP */
.contact-menu.hidden { 
    display: none; 
}

.contact-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.contact-menu-box {
    background: linear-gradient(135deg, #1a1520 0%, #0d0a10 100%);
    padding: 2.5rem 2rem;
    width: 90%;
    max-width: 420px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 60px rgba(234, 1, 136, 0.3),
                0 0 0 1px rgba(234, 1, 136, 0.2);
    animation: slideUp 0.4s ease;
}

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

.close-icon {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: #afa0a4;
    font-size: 2rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    line-height: 1;
}

.close-icon:hover {
    background: rgba(234, 1, 136, 0.1);
    color: #ea0188;
    transform: rotate(90deg);
}

.contact-header {
    text-align: center;
    margin-bottom: 2rem;
}

.contact-header h3 {
    color: #ea0188;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.contact-subtitle {
    color: #afa0a4;
    font-size: 0.95rem;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(234, 1, 136, 0.2);
    border-radius: 12px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.contact-item:hover {
    background: rgba(234, 1, 136, 0.1);
    border-color: rgba(234, 1, 136, 0.5);
    transform: translateX(5px);
}

.contact-item .icon {
    font-size: 2rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(234, 1, 136, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-item:hover .icon {
    background: rgba(234, 1, 136, 0.2);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.contact-info .label {
    color: #afa0a4;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-info .value {
    color: #feffff;
    font-size: 1.1rem;
    font-weight: 600;
    word-break: break-word;
    overflow-wrap: break-word;
    line-height: 1.3;
}

/* Email-specific styling for better fit */
.contact-item.email .value {
    font-size: 0.90rem;
}

@media (max-width: 480px) {
    .contact-menu-box {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }
    
    .contact-header h3 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .contact-item .icon {
        font-size: 1.5rem;
        width: 45px;
        height: 45px;
    }
    
    .contact-info .value {
        font-size: 0.9rem;
    }
    
    /* Smaller email text on mobile */
    .contact-item.email .value {
        font-size: 0.7rem;
    }
}
/* ============================================================
   FULL MOBILE FIX — ONLY AFFECTS SCREENS UNDER 768px
   DESKTOP REMAINS EXACTLY THE SAME
   ============================================================ */
@media (max-width: 768px) {

    /* Prevent horizontal cutoff */
    html, body {
        overflow-x: hidden;
        width: 100%;
    }
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    /* CONTAINER PADDING FOR READABILITY */
    .container {
        width: 95%;
        padding: 0 1rem;
    }

    /* HEADER FIX */
    .header {
        padding: 0.5rem 0;
        width: 100%;
    }
    .nav-container {
        padding: 0 1rem;
        width: 100%;
    }
    .logo-img {
        width: 120px;
        height: auto;
    }
    .logo-text {
        font-size: 1.1rem;
    }
    .nav-link,
    .action-btn {
        font-size: 0.9rem;
        padding: 0.3rem 0.6rem;
    }

    /* HERO SECTION FIX */
    .hero {
        width: 100%;
        overflow: hidden;
        background-position: center 45% !important;
        padding: 0 1rem;
        min-height: 70vh;
    }
    .hero-content {
        padding: 0 1.5rem;
        text-align: center;
        max-width: 100%;
    }
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    .hero-subtitle {
        font-size: 0.9rem;
        line-height: 1.4rem;
        padding: 0 0.5rem;
    }
    .hero-buttons {
        margin-top: 2rem;
    }
    .hero-buttons .btn,
    .hero-buttons .action-btn {
        width: 90%;
        max-width: 280px;
        padding: 0.9rem 1.5rem;
    }

    /* SECTION SPACING */
    section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }

    /* SERVICES SECTION */
    .services-section {
        padding: 3rem 0;
    }
    
    .services-grid {
        padding: 0 1rem;
        gap: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    .service-card img {
        height: 160px;
        object-position: center;
    }

    /* BUILDS GRID */
    .builds-section {
        padding: 3rem 0;
    }
    
    .builds-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .build-card {
        margin-bottom: 1rem;
    }
    
    .build-card img {
        height: 200px !important;
        object-fit: cover;
        object-position: center 55%;
    }

    /* SHOWCASE SECTION */
    .showcase {
        padding: 3rem 1rem;
    }
    
    .showcase-content {
        padding: 0 1rem;
    }
    
    .showcase-content img {
        height: 300px;
        margin-bottom: 1.5rem;
    }
    
    .showcase-text {
        padding: 0 1rem;
    }
    
    .showcase-text h2 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .showcase-text p {
        margin-bottom: 1.5rem;
    }

    /* ABOUT SECTION */
    .about-section {
        padding: 3rem 0;
    }
    
    .about-container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1.5rem;
        text-align: center;
    }
    
    .about-logo img {
        width: 180px;
    }
    
    .about-text {
        padding: 0 1rem;
    }
    
    .about-text h2 {
        font-size: 1.75rem;
        margin-bottom: 1rem;
    }
    
    .about-text p {
        line-height: 1.7;
    }

    /* SERVICE/BUILD DETAIL PAGES */
    .service-hero,
    .build-hero {
        min-height: 40vh;
        padding: 0 1rem;
    }
    
    .service-hero h1,
    .build-hero h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }

    /* SERVICE CONTENT PAGES */
    .service-content {
        padding: 2rem 1.5rem;
        max-width: 100%;
    }
    
    .service-description,
    .build-description {
        padding: 0 1rem;
        margin-bottom: 2rem;
        line-height: 1.7;
    }
    
    .desc-title {
        font-size: 1.5rem;
        margin: 2rem 0 1rem;
        padding: 0 1rem;
    }

    /* MAIN IMAGES ON SERVICE PAGES */
    .service-main-image,
    .tint-main-img,
    .wrap-main-img,
    .caliper-main-img,
    .exhaust-main-img,
    .starlights-main-img,
    .performance-main-img,
    .cosmetic-main-img,
    .mechanic-main-img,
    .tires-main-img {
        height: 250px !important;
        object-fit: cover;
        margin-bottom: 2rem;
        border-radius: 12px;
    }

    /* BUILD PAGES MAIN IMAGE */
    .build-main-image {
        height: 280px !important;
        object-fit: cover;
        object-position: center 55% !important;
        margin-bottom: 2rem;
    }

    /* GALLERY IMAGES - 3 IMAGE GRID */
    .build-gallery,
    .service-gallery {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 1rem;
        padding: 0 1rem;
        margin-top: 2rem;
    }
    
    .build-gallery img,
    .service-gallery img {
        height: 200px !important;
        object-fit: cover;
        object-position: center 50% !important;
        width: 100%;
        border-radius: 10px;
    }

    /* CTA BUTTON */
    .cta-btn {
        width: 90%;
        max-width: 320px;
        margin: 2.5rem auto;
        padding: 1rem 2rem;
    }

    /* FOOTER */
    footer {
        padding: 2.5rem 1rem;
    }
    
    .footer-content {
        padding: 0 1rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .footer-info {
        text-align: center;
    }
    
    .footer-info p {
        margin-bottom: 0.75rem;
        line-height: 1.6;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
    }
}

/* ============================================================
   SERVICE PAGE STANDARDIZATION - UI/UX IMPROVEMENTS
   ============================================================ */

/* SERVICE HERO - CONSISTENT ACROSS ALL PAGES */
.service-hero {
    padding-top: 7rem;
    padding-bottom: 3rem;
    min-height: 300px;
    background-size: cover;
    background-position: center 55%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-hero h1 {
    color: #ea0188;
    font-size: 2.8rem;
    font-weight: 700;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
    margin: 0;
    padding: 0 1rem;
}

/* SERVICE CONTENT CONTAINER */
.service-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1.5rem;
}

/* MAIN SERVICE IMAGES - STANDARDIZED */
.service-main-image,
.tint-main-img,
.wrap-main-img,
.caliper-main-img,
.exhaust-main-img,
.starlights-main-img,
.performance-main-img,
.cosmetic-main-img,
.mechanic-main-img,
.tires-main-img {
    width: 100%;
    max-width: 1000px;
    height: 500px;
    object-fit: cover;
    object-position: center 55%;
    border-radius: 12px;
    display: block;
    margin: 0 auto 3rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* SERVICE SECTION TITLES */
.desc-title,
.service-content h2 {
    text-align: center;
    color: #ea0188;
    font-size: 2rem;
    font-weight: 700;
    margin: 3rem 0 1.5rem;
}

/* SERVICE DESCRIPTION */
.service-description {
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-description p {
    color: #afa0a4;
    line-height: 1.8;
    font-size: 1.05rem;
    text-align: center;
    padding: 0 1rem;
}

/* SERVICE GALLERY - 3 COLUMN GRID */
.additional-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2rem auto 3rem;
    max-width: 1000px;
}

.additional-images img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.additional-images img:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(234, 1, 136, 0.3);
}

/* MOBILE SERVICE PAGE ADJUSTMENTS */
@media (max-width: 768px) {
    
    .service-hero {
        min-height: 250px;
        padding-top: 6rem;
    }
    
    .service-hero h1 {
        font-size: 2rem;
    }
    
    .service-content {
        padding: 2rem 1rem;
    }

    /* MAIN SERVICE IMAGES */
    .service-main-image,
    .tint-main-img,
    .wrap-main-img,
    .caliper-main-img,
    .exhaust-main-img,
    .starlights-main-img,
    .performance-main-img,
    .cosmetic-main-img,
    .mechanic-main-img,
    .tires-main-img {
        height: 280px;
        margin-bottom: 2rem;
    }
    
    /* SECTION TITLES */
    .desc-title,
    .service-content h2 {
        font-size: 1.6rem;
        margin: 2rem 0 1rem;
    }
    
    /* DESCRIPTION */
    .service-description p {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* GALLERY - STACK ON MOBILE */
    .additional-images {
        grid-template-columns: 1fr;
        gap: 1.2rem;
        padding: 0 0.5rem;
    }
    
    .additional-images img {
        height: 220px;
    }
}

/* ============================================================
   MOBILE NAVIGATION SYSTEM (Works With Your Current Layout)
   ============================================================ */
@media (max-width: 768px) {

    /* Hide desktop nav links and action buttons */
    .nav .nav-link,
    .nav .action-btn {
        display: none !important;
    }

    /* Show hamburger */
    .nav-toggle {
        display: block !important;
        z-index: 9999;
    }

    /* Mobile dropdown menu container */
    .mobile-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #0d0b10;
        display: none;
        flex-direction: column;
        padding: 1.5rem 1rem 2rem;
        border-top: 1px solid #ea0188;
        text-align: center;
        z-index: 9998;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    }

    .mobile-menu a {
        color: white;
        font-size: 1.1rem;
        padding: 0.9rem 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        transition: color 0.3s ease;
    }
    
    .mobile-menu a:hover {
        color: #ea0188;
    }
    
    .mobile-menu button,
    .mobile-menu .action-btn {
        margin-top: 1rem;
        width: 85%;
        max-width: 300px;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    /* Activate dropdown */
    .mobile-menu.active {
        display: flex;
    }
    
    /* Mobile menu button additional styling */
    .mobile-menu button,
    .mobile-menu .action-btn {
        background: #ea0188;
        color: white;
        padding: 0.9rem 1.5rem;
        border-radius: 50px;
        font-weight: 600;
        border: none;
        cursor: pointer;
        font-size: 1rem;
        transition: all 0.3s ease;
    }

    .mobile-menu button:hover,
    .mobile-menu .action-btn:hover {
        background: #b8006a;
    }
}
@media (max-width: 768px) {

    /* Build 1 – move up */
    .build-card .build-1-img {
        object-position: center 63% !important;
    }

    /* Build 3 – move up */
    .build-card .build-3-img {
        object-position: center 60% !important;
    }

    /* Build 2 stays normal (do nothing) */
}

