/* Professional Tinting Service Section */
.tinting-service-section {
    padding: 100px 0;
    background: #fdfdfd;
    position: relative;
}

.featured-header .section-tag {
    color: var(--accent-primary);
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 10px;
    display: block;
}

.section-title-v2 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    color: #1a1a1a;
    line-height: 1.1;
}

.tinting-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.tinting-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.tinting-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.12);
}

.tinting-img-box {
    height: 380px;
    overflow: hidden;
    position: relative;
}

.tinting-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.tinting-card:hover .tinting-img-box img {
    transform: scale(1.08);
}

.tinting-content {
    padding: 30px;
    text-align: center;
}

.tinting-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 12px;
    font-family: 'Outfit', sans-serif;
}

.tinting-content p {
    color: #666;
    line-height: 1.6;
    font-size: 1.05rem;
}

@media (max-width: 768px) {
    .section-title-v2 {
        font-size: 2.2rem;
    }

    .tinting-service-section {
        padding: 60px 0;
    }
}