.service-hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    background-color: #0a0a0a;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-grid-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image:
        linear-gradient(rgba(245, 185, 0, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(245, 185, 0, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    transform: rotateX(60deg) translateY(-10%);
    animation: gridFlow 20s linear infinite;
    z-index: 1;
}

@keyframes gridFlow {
    from {
        transform: rotateX(60deg) translateY(0);
    }

    to {
        transform: rotateX(60deg) translateY(50px);
    }
}

.service-hero-content {
    position: relative;
    z-index: 5;
    max-width: 650px;
    background: rgba(30, 30, 30, 0.6);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: var(--radius);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    opacity: 0;
    transform: perspective(1000px) rotateY(-10deg) translateX(-50px);
    animation: serviceReveal 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

@keyframes serviceReveal {
    to {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) translateX(0);
    }
}

.hero-stats-row {
    display: flex;
    gap: 40px;
    margin: 30px 0 40px;
    padding-top: 25px;
    border-top: 1px solid var(--road-gray);
}

.hero-mini-stat {
    display: flex;
    flex-direction: column;
}

.stat-val {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--primary-color);
}

.stat-lab {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .service-hero {
        height: auto;
        padding: 120px 0 80px;
    }

    .service-hero-content {
        padding: 40px 25px;
        text-align: center;
        margin: 0 15px;
        animation: serviceRevealMobile 1s cubic-bezier(0.2, 1, 0.3, 1) forwards;
    }

    @keyframes serviceRevealMobile {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .hero-stats-row {
        justify-content: center;
        gap: 20px;
    }

    .hero-title {
        font-size: 2.5rem;
    }
}










.service-list-section {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.service-interactive-rows {
    border-top: 1px solid var(--road-gray);
}

.service-row {
    border-bottom: 1px solid var(--road-gray);
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}

.row-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 40px 0;
    transition: var(--transition);
}

.row-title-box {
    display: flex;
    align-items: center;
    gap: 30px;
}

.row-num {
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    opacity: 0.5;
}

.row-header h3 {
    font-size: 1.8rem;
    margin: 0;
    text-transform: uppercase;
}

.row-meta {
    display: flex;
    align-items: center;
    gap: 30px;
    color: var(--text-muted);
    font-weight: 600;
}

.row-icon {
    font-style: normal;
    color: var(--primary-color);
    font-size: 1.5rem;
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.row-content {
    max-height: 0;
    opacity: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 0 40px;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.row-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
}

.service-row:hover .row-header,
.service-row.active .row-header {
    padding-left: 30px;
}

.service-row.active .row-content {
    max-height: 600px;
    opacity: 1;
    margin-top: -20px;
}

.service-row.active .row-icon {
    transform: rotate(90deg) translateX(5px);
}

.service-row:hover {
    background: linear-gradient(90deg, rgba(245, 185, 0, 0.02) 0%, transparent 100%);
}

@media (max-width: 768px) {
    .row-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .row-header h3 {
        font-size: 1.3rem;
    }

    .row-meta {
        width: 100%;
        justify-content: space-between;
    }

    .row-content {
        grid-template-columns: 1fr;
    }

    .row-img {
        height: 200px;
    }
}









.process-section {
    padding: 100px 0;
    background-color: var(--bg-surface);
    overflow: hidden;
}

.process-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding-top: 50px;
    gap: 30px;
}

.process-line {
    position: absolute;
    top: 75px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--road-gray);
    z-index: 1;
}

.line-fill {
    height: 100%;
    width: 0;
    background: var(--primary-color);
    box-shadow: 0 0 15px var(--primary-color);
    animation: lineGrow 3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes lineGrow {
    to {
        width: 100%;
    }
}

.process-step {
    flex: 1;
    position: relative;
    z-index: 2;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: revealUp 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.process-step:nth-child(2) {
    animation-delay: 0.3s;
}

.process-step:nth-child(3) {
    animation-delay: 0.6s;
}

.process-step:nth-child(4) {
    animation-delay: 0.9s;
}

.process-step:nth-child(5) {
    animation-delay: 1.2s;
}

.step-dot {
    width: 50px;
    height: 50px;
    background: var(--bg-dark);
    border: 2px solid var(--road-gray);
    color: var(--text-header);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-weight: 800;
    transition: var(--transition);
}

.step-card {
    background: var(--bg-dark);
    padding: 30px 20px;
    border-radius: var(--radius);
    border: 1px solid transparent;
    transition: var(--transition);
}

.process-step:hover .step-dot {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: var(--text-on-primary);
    box-shadow: 0 0 20px var(--primary-color);
}

.process-step:hover .step-card {
    border-color: var(--primary-color);
    transform: translateY(-10px);
    box-shadow: var(--shadow-industrial);
}

@media (max-width: 768px) {
    .process-track {
        flex-direction: column;
        padding-top: 0;
        padding-left: 30px;
        gap: 50px;
    }

    .process-line {
        width: 2px;
        height: 100%;
        top: 0;
        left: 25px;
    }

    @keyframes lineGrow {
        to {
            height: 100%;
        }
    }

    .process-step {
        text-align: left;
        display: flex;
        gap: 30px;
        align-items: flex-start;
    }

    .step-dot {
        margin: 0;
        flex-shrink: 0;
    }

    .step-card {
        padding: 0;
        background: transparent;
    }
}







.service-gallery {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.masonry-gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 300px);
    gap: 20px;
}

.gallery-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--road-gray);
    opacity: 0;
    transform: scale(0.9);
    animation: revealIn 0.8s cubic-bezier(0.2, 1, 0.3, 1) forwards;
}

.tall {
    grid-row: span 2;
}

.wide {
    grid-column: span 2;
}

.gallery-card:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-card:nth-child(2) {
    animation-delay: 0.3s;
}

.gallery-card:nth-child(3) {
    animation-delay: 0.5s;
}

.gallery-card:nth-child(4) {
    animation-delay: 0.7s;
}

@keyframes revealIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    filter: brightness(0.6) grayscale(30%);
}

.gallery-card:hover img {
    transform: scale(1.1);
    filter: brightness(1) grayscale(0%);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(18, 18, 18, 0.9), transparent);
    transform: translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.gallery-card:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .masonry-gallery {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 15px;
    }

    .tall,
    .wide {
        grid-row: span 1;
        grid-column: span 1;
        height: 200px;
    }

    .gallery-overlay {
        opacity: 1;
        transform: translateY(0);
        padding: 15px;
    }
}








.booking-cta {
    padding: 100px 0;
    background-color: var(--bg-surface);
    position: relative;
    overflow: hidden;
}

.booking-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.status-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.pulse-indicator {
    width: 10px;
    height: 10px;
    background-color: #28a745;
    border-radius: 50%;
    box-shadow: 0 0 0 rgba(40, 167, 69, 0.4);
    animation: statusPulse 2s infinite;
}

@keyframes statusPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(40, 167, 69, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(40, 167, 69, 0);
    }
}

.availability-meter {
    margin-top: 30px;
    background: var(--bg-dark);
    padding: 20px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
}

.meter-label {
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.primary-text {
    color: var(--primary-color);
}

.meter-bar {
    height: 6px;
    background: var(--road-gray);
    border-radius: 10px;
    overflow: hidden;
}

.meter-fill {
    height: 100%;
    width: 75%;
    background: var(--primary-color);
    box-shadow: 0 0 10px var(--primary-color);
    animation: revMeter 1.5s cubic-bezier(0.1, 1, 0.3, 1) forwards;
    transform-origin: left;
}

@keyframes revMeter {
    from {
        transform: scaleX(0);
    }

    to {
        transform: scaleX(1);
    }
}

.booking-action-box {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.action-card {
    background: var(--bg-dark);
    padding: 30px;
    border-radius: var(--radius);
    border: 1px solid var(--road-gray);
    transition: var(--transition);
    text-align: left;
}

.action-card:hover {
    border-color: var(--primary-color);
    transform: translateX(10px);
    background: #1a1a1a;
}

.card-icon-box {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .booking-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
    }

    .status-header {
        justify-content: center;
    }

    .action-card {
        text-align: center;
    }

    .action-card:hover {
        transform: translateY(-10px);
    }

    .booking-action-box {
        padding: 0 10px;
    }
}








.performance-compare {
    padding: 100px 0;
    background-color: var(--bg-dark);
}

.compare-wrapper {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.compare-box {
    flex: 1;
    background: var(--bg-surface);
    padding: 60px 40px;
    border: 1px solid var(--road-gray);
    transition: var(--transition);
    position: relative;
}

.compare-box.stock {
    border-radius: var(--radius) 0 0 var(--radius);
}

.compare-box.tuned {
    border-radius: 0 var(--radius) var(--radius) 0;
    border-left: none;
    background: linear-gradient(145deg, #1a1a1a, #121212);
}

.compare-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    color: var(--text-muted);
}

.badge-primary {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 5px;
}

.stat-circle {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-chart {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.circle-bg {
    fill: none;
    stroke: var(--road-gray);
    stroke-width: 2.8;
}

.circle-fill {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: var(--text-muted);
    animation: progress 2s ease-out forwards;
}

.circular-chart.primary .circle-fill {
    stroke: var(--primary-color);
    filter: drop-shadow(0 0 5px var(--primary-color));
}

@keyframes progress {
    0% {
        stroke-dasharray: 0 100;
    }
}

.percentage {
    position: absolute;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-header);
    z-index: 2;
}

.percentage1 {
    position: absolute;
    margin: 0;
    padding: 0;
    line-height: 1;
    text-align: center;
    top: 10%;
    left: 30%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--text-header);
    z-index: 2;
}

.percentage span {
    font-size: 1rem;
    margin-left: 2px;
    color: var(--text-muted);
}

.vs-divider {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.vs-circle {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 1.2rem;
    border: 5px solid var(--bg-dark);
}

@media (max-width: 768px) {
    .compare-wrapper {
        flex-direction: column;
    }

    .compare-box.stock {
        border-radius: var(--radius) var(--radius) 0 0;
    }

    .compare-box.tuned {
        border-radius: 0 0 var(--radius) var(--radius);
        border-top: none;
    }

    .vs-divider {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .compare-box {
        padding: 50px 20px;
        text-align: center;
    }
}








.performance-cta {
    position: relative;
    padding: 120px 0;
    background-color: #080808;
    overflow: hidden;
    text-align: center;
}

.cta-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(circle, rgba(245, 185, 0, 0.08) 0%, transparent 70%);
    animation: ambientGlow 8s ease-in-out infinite alternate;
    z-index: 1;
}

@keyframes ambientGlow {
    from {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.5;
    }

    to {
        transform: translate(-50%, -50%) scale(1.3);
        opacity: 0.8;
    }
}

.cta-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: repeating-linear-gradient(0deg,
            transparent,
            transparent 40px,
            rgba(255, 255, 255, 0.02) 41px);
    animation: linesMove 20s linear infinite;
    z-index: 2;
}

@keyframes linesMove {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 1000px;
    }
}

.cta-container {
    position: relative;
    z-index: 5;
}

.cta-text {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.btn-radar {
    position: relative;
    display: inline-block;
    padding: 20px 50px;
    background: var(--primary-color);
    color: var(--text-on-primary);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: 2px;
    border-radius: 4px;
    transition: var(--transition);
    text-decoration: none;
}

.btn-radar:hover {
    transform: scale(1.05);
    background: var(--primary-hover);
}

.pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 4px;
    animation: radarPulse 2s infinite;
}

@keyframes radarPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(1.6);
        opacity: 0;
    }
}

@media (max-width: 768px) {
    .performance-cta {
        padding: 80px 0;
    }

    .main-title {
        font-size: 2.2rem;
    }

    .cta-text {
        font-size: 1rem;
        padding: 0 20px;
    }

    .btn-radar {
        padding: 18px 40px;
        width: 90%;
        max-width: 320px;
    }
}