/**
 * Styles de la page products - Design "Neuro-Tech"
 * Simple et cohérent
 */

 /* ======================================
    PRODUCTS SECTION BACKGROUND
    ====================================== */
 
 .products-section {
    background: #1e293b; /* Dark slate like home contact */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    background-attachment: fixed;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3) inset, 0 10px 30px rgba(0, 0, 0, 0.25);
    position: relative;
    overflow: hidden;
    min-height: 80vh;
    padding: 6rem 0;
 }
 
 .products-section::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -10%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
    pointer-events: none;
 }
 
 .products-section::after {
    content: '';
    position: absolute;
    bottom: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.05) 0%, transparent 70%);
    pointer-events: none;
 }
 
 .products-section h1 {
    color: white !important;
    background: none !important;
    -webkit-text-fill-color: white !important;
    font-weight: 800;
    margin-bottom: 1rem;
    text-shadow: 0 2px 15px rgba(0,0,0,0.3);
 }
 
 .products-section .section-description {
    color: rgba(255, 255, 255, 0.7) !important;
    font-size: 1.25rem;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
 }
 
 /* ======================================
    SERVICE CARDS (Based on Home Expertise)
    ====================================== */

 .service-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(6, 182, 212, 0.3);
    border-radius: var(--border-radius-lg);
    padding: 2.5rem 2rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
 }
 
 .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 40px rgba(6, 182, 212, 0.2), 0 0 30px rgba(6, 182, 212, 0.1);
    border-color: var(--primary-color);
    background: rgba(6, 182, 212, 0.05);
 }
 
 /* Border glow effect */
 .service-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
 }
 
 .service-card:hover::before {
    opacity: 1;
 }
 
 .service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(6, 182, 212, 0.1);
    border: 1px solid rgba(6, 182, 212, 0.3);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
    align-self: flex-start;
 }
 
 .service-card:hover .service-icon {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 0 20px rgba(6, 182, 212, 0.4);
    transform: scale(1.1) rotate(5deg);
 }
 
 .service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.05em;
 }
 
 .service-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
 }

 .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
 }

 .service-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
 }

 .service-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 0.9rem;
 }
 
 .service-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    display: block;
 }

 .service-card .btn {
    width: 100%;
    margin-top: auto;
 }

 /* Utilities */
 .min-w-200 {
    min-width: 200px;
 }
