/* --- FUSION ET AJOUTS SOUDURE ÉLECTRONIQUE --- */
:root {
    --ts-primary: #004d99; /* Bleu Techno Foncé */
    --ts-secondary: #ff7f11; /* Orange Vif (Accent) */
    --ts-background: #f7f7f7; /* Gris Très Clair */
    --ts-text: #333333;
    --ts-font-title: 'Poppins', sans-serif;
    --ts-font-body: 'Roboto', sans-serif;
    --ts-circuit-color: #008000; /* Vert Vrai pour la soudure */
}

/* Base et Section styles (réutilisés) */
.ts-page-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    font-family: var(--ts-font-body);
    color: var(--ts-text);
}
.ts-section {
    padding: 40px 0;
    margin-bottom: 30px;
}
.ts-section h2 {
    font-family: var(--ts-font-title);
    color: var(--ts-primary);
    text-align: center;
    font-size: 2.5em;
    margin-bottom: 10px;
    border-bottom: 2px solid var(--ts-secondary);
    display: inline-block;
    padding-bottom: 5px;
}
.ts-hero {
    background: var(--ts-primary);
    color: white;
    padding: 60px 20px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* --- SECTION SOUDURE / FOCUS STANDARD --- */
.ts-solder-focus {
    background: var(--ts-circuit-color);
    color: white;
    padding: 40px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.ts-solder-focus h3 {
    font-family: var(--ts-font-title);
    font-size: 2em;
    margin-top: 0;
}

.ts-solder-focus i {
    font-size: 4em;
    margin-bottom: 15px;
    color: var(--ts-secondary);
}

/* --- GRILLE DES SERVICES DE SOUDURE --- */
.ts-solder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.ts-solder-card {
    background: white;
    padding: 30px;
    border-radius: 8px;
    border-left: 5px solid var(--ts-secondary);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.ts-solder-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.ts-solder-card h3 {
    color: var(--ts-primary);
    font-family: var(--ts-font-title);
    font-size: 1.4em;
    margin-top: 0;
}

.ts-solder-card .ts-icon-small {
    font-size: 1.8em;
    color: var(--ts-circuit-color);
    margin-right: 10px;
    display: inline-block;
}

/* --- SECTION GARANTIE --- */
.ts-guarantee {
    background: var(--ts-background);
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
    border: 1px solid #ddd;
}

.ts-guarantee p {
    font-style: italic;
    font-size: 1.1em;
    text-align: center;
}

/* Boutons (réutilisés) */
.ts-button {
    background-color: var(--ts-secondary);
    color: white !important;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    transition: background-color 0.3s;
}
.ts-button:hover {
    background-color: #e86a00;
}