/* Automotive Services Flip Cards - 181b2d38 */

.asfc-181b2d38-section {
    position: relative;
    overflow: hidden;
    padding: 80px 30px;
    background-color: #0a0a0f;
}

/* Grid telemetry background */
.asfc-181b2d38-grid-bg {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
    animation: asfc-181b2d38-gridpulse 8s ease-in-out infinite;
}

@keyframes asfc-181b2d38-gridpulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

/* Light streaks */
.asfc-181b2d38-streak {
    position: absolute;
    height: 1px;
    width: 40%;
    pointer-events: none;
    z-index: 1;
}

.asfc-181b2d38-streak-1 {
    top: 30%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.4), transparent);
    animation: asfc-181b2d38-streakmove 7s ease-in-out infinite;
}

.asfc-181b2d38-streak-2 {
    top: 70%;
    background: linear-gradient(90deg, transparent, rgba(255, 106, 0, 0.3), transparent);
    animation: asfc-181b2d38-streakmove 9s ease-in-out infinite reverse;
}

@keyframes asfc-181b2d38-streakmove {
    0% { left: -40%; }
    100% { left: 140%; }
}

/* Header */
.asfc-181b2d38-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.asfc-181b2d38-subtitle {
    display: inline-block;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: #00d4ff;
    margin-bottom: 12px;
    padding: 4px 16px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    border-radius: 20px;
    background: rgba(0, 212, 255, 0.06);
}

.asfc-181b2d38-title {
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

/* Cards grid */
.asfc-181b2d38-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    perspective: 1200px;
}

/* Card */
.asfc-181b2d38-card {
    height: 420px;
    cursor: pointer;
}

.asfc-181b2d38-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
}

.asfc-181b2d38-card:hover .asfc-181b2d38-card-inner {
    transform: rotateY(180deg);
}

/* Faces */
.asfc-181b2d38-face {
    position: absolute;
    inset: 0;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

/* Front */
.asfc-181b2d38-front {
    z-index: 2;
}

.asfc-181b2d38-front-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: brightness(0.6) contrast(1.1) saturate(1.1);
    transition: filter 0.5s ease, transform 0.5s ease;
}

.asfc-181b2d38-card:hover .asfc-181b2d38-front-img {
    filter: brightness(0.4) contrast(1.2) saturate(1.2);
    transform: scale(1.08);
}

.asfc-181b2d38-front-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(10, 10, 15, 0.2) 0%, rgba(10, 10, 15, 0.85) 100%);
    z-index: 1;
}

.asfc-181b2d38-front-glow {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--asfc-glow, #00d4ff), transparent);
    z-index: 3;
    opacity: 0.7;
    box-shadow: 0 0 15px var(--asfc-glow, #00d4ff);
}

.asfc-181b2d38-front-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 28px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.asfc-181b2d38-front-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid var(--asfc-glow, #00d4ff);
    box-shadow: 0 0 12px rgba(0, 212, 255, 0.15);
    color: var(--asfc-glow, #00d4ff);
    font-size: 18px;
    transition: box-shadow 0.3s ease;
}

.asfc-181b2d38-front-icon svg {
    width: 18px;
    height: 18px;
    fill: var(--asfc-glow, #00d4ff);
}

.asfc-181b2d38-front-title {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.3;
}

.asfc-181b2d38-hud-line {
    width: 50px;
    height: 2px;
    background: var(--asfc-glow, #00d4ff);
    border-radius: 2px;
    opacity: 0.6;
    box-shadow: 0 0 8px var(--asfc-glow, #00d4ff);
}

/* HUD corners */
.asfc-181b2d38-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    z-index: 3;
    pointer-events: none;
}

.asfc-181b2d38-corner-tl {
    top: 12px;
    left: 12px;
    border-top: 2px solid var(--asfc-glow, #00d4ff);
    border-left: 2px solid var(--asfc-glow, #00d4ff);
    opacity: 0.4;
}

.asfc-181b2d38-corner-br {
    bottom: 12px;
    right: 12px;
    border-bottom: 2px solid var(--asfc-glow, #00d4ff);
    border-right: 2px solid var(--asfc-glow, #00d4ff);
    opacity: 0.4;
}

/* Back */
.asfc-181b2d38-back {
    transform: rotateY(180deg);
    background: linear-gradient(145deg, rgba(18, 18, 28, 0.97), rgba(10, 10, 18, 0.99));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 0 30px rgba(0, 0, 0, 0.3);
}

.asfc-181b2d38-back-inner {
    position: relative;
    padding: 32px 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
    z-index: 2;
}

.asfc-181b2d38-back-telemetry {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0, 212, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 212, 255, 0.02) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
    z-index: 0;
    border-radius: 16px;
}

.asfc-181b2d38-back-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--asfc-glow, #00d4ff);
    margin: 0;
    position: relative;
    z-index: 1;
}

.asfc-181b2d38-back-desc {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    position: relative;
    z-index: 1;
}

.asfc-181b2d38-features {
    list-style: none;
    padding: 0;
    margin: 4px 0 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.asfc-181b2d38-feat {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Courier New', monospace;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.65);
    letter-spacing: 0.5px;
}

.asfc-181b2d38-feat-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--asfc-glow, #00d4ff);
    box-shadow: 0 0 6px var(--asfc-glow, #00d4ff);
    flex-shrink: 0;
}

.asfc-181b2d38-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 8px;
    padding: 10px 22px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--asfc-glow, #00d4ff);
    border: 1px solid var(--asfc-glow, #00d4ff);
    border-radius: 8px;
    background: rgba(0, 212, 255, 0.06);
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    z-index: 1;
    align-self: flex-start;
}

.asfc-181b2d38-card-btn:hover {
    background: rgba(0, 212, 255, 0.15);
    box-shadow: 0 0 20px rgba(0, 212, 255, 0.2);
    color: var(--asfc-glow, #00d4ff);
}

.asfc-181b2d38-btn-arrow {
    transition: transform 0.3s ease;
}

.asfc-181b2d38-card-btn:hover .asfc-181b2d38-btn-arrow {
    transform: translateX(4px);
}

/* CTA */
.asfc-181b2d38-cta-wrap {
    text-align: center;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.asfc-181b2d38-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00d4ff;
    border: 1px solid #00d4ff;
    border-radius: 10px;
    background: transparent;
    text-decoration: none;
    transition: background 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
}

.asfc-181b2d38-cta:hover {
    background: rgba(0, 212, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 212, 255, 0.2);
    transform: translateY(-2px);
    color: #00d4ff;
}

.asfc-181b2d38-cta-arrow {
    transition: transform 0.3s ease;
}

.asfc-181b2d38-cta:hover .asfc-181b2d38-cta-arrow {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 1024px) {
    .asfc-181b2d38-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 767px) {
    .asfc-181b2d38-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 400px;
    }

    .asfc-181b2d38-card {
        height: 360px;
    }

    .asfc-181b2d38-title {
        font-size: 28px;
    }

    .asfc-181b2d38-section {
        padding: 50px 16px;
    }

    .asfc-181b2d38-front-content {
        padding: 20px;
    }

    .asfc-181b2d38-back-inner {
        padding: 24px 20px;
    }
}
