/* Santis V5 Detail & Recommendation CSS */
.nv-service-stage {
    max-width: 1400px;
    margin: 0 auto;
    color: #333;
}

/* Recommendations Section */
.nv-recommendations {
    margin-top: 80px;
    padding: 40px 20px;
    background: #f9f9f9;
    border-top: 1px solid #eee;
}

.nv-rec-header h3 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 30px;
    text-align: center;
    letter-spacing: 1px;
}

.nv-rec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.nv-rec-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.nv-rec-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.nv-rec-img {
    height: 200px;
    background: #eee;
    overflow: hidden;
}

.nv-rec-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.nv-rec-card:hover .nv-rec-img img {
    transform: scale(1.05);
}

.nv-rec-info {
    padding: 20px;
    text-align: center;
}

.nv-rec-info h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    font-weight: 500;
}

.nv-rec-info span {
    font-size: 0.9rem;
    color: #888;
}

/* ── Noscript Fallback Nav ── */
.nv-noscript-nav {
    background: #0a0c10;
    text-align: center;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding: 12px 20px;
}

.nv-noscript-nav a {
    color: #ccc;
    text-decoration: none;
    font-size: 13px;
    margin: 0 12px;
}

.nv-noscript-nav a.nv-ns-home {
    color: #d4af37;
}

/* ── Related Services Auto Block ── */
.related-services-auto {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-top: 40px;
    padding: 30px;
}

.related-services-auto ul {
    list-style: none;
    padding: 0;
    margin: 10px 0 0 0;
}

.related-services-auto li {
    margin: 6px 0;
}

.related-services-auto a {
    color: #d4af37;
    text-decoration: none;
    font-size: 14px;
}