/* Police Lato chargée via <link> dans le head */

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: #1a1a1a;
    color: #e0e0e0;
    font-family: 'Lato', Arial, sans-serif;
    line-height: 1.6;
    padding-top: 0; /* Retirer le padding car la navigation n'est plus fixe */
}

/* Liens généraux */
a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #ef4444;
}

a:visited {
    color: #dc2626;
}

a:active {
    color: #dc2626;
}

/* Navigation industrielle du design 3 */
.industrial-nav {
    background: linear-gradient(90deg, #1f2937, #374151, #1f2937);
    border-bottom: 3px solid #dc2626;
    padding: 1rem 0;
    position: relative;
    box-shadow: 0 4px 20px rgba(220, 38, 38, 0.15);
}

.industrial-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.nav-industrial-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
}

.industrial-logo {
    color: #dc2626;
    font-size: 1.8rem;
    font-weight: 900;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    display: flex;
    align-items: center;
}

.logo-nav {
    height: 70px;
    width: auto;
    transition: all 0.3s ease;
}

.logo-nav:hover {
    transform: scale(1.05);
}

.industrial-logo::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #dc2626;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.industrial-logo:hover::after {
    transform: scaleX(1);
}

.industrial-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0;
}

.industrial-menu li {
    position: relative;
}

.industrial-menu a {
    color: #e0e0e0;
    text-decoration: none;
    padding: 1rem 1.5rem;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.industrial-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #dc2626, #ef4444);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.industrial-menu a:hover {
    color: white;
}

.industrial-menu a:hover::before {
    opacity: 1;
}

/* Sous-menu déroulant */
.industrial-menu .dropdown {
    position: relative;
}

.industrial-menu .dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #2c3e50;
    border: 1px solid #3d5668;
    border-top: 3px solid #dc2626;
    min-width: 200px;
    z-index: 9999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    border-radius: 5px;
}

.industrial-menu .dropdown:hover .dropdown-content,
.industrial-menu .dropdown:focus-within .dropdown-content,
.industrial-menu .dropdown.active .dropdown-content {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-trigger {
    cursor: pointer;
    user-select: none;
}

.dropdown-trigger:hover {
    color: #dc2626 !important;
}

.dropdown-trigger:focus {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

.industrial-menu .dropdown-content a {
    padding: 0.8rem 1.5rem;
    border-bottom: 1px solid #3d5668;
    font-size: 0.85rem;
    display: block;
    color: #e0e0e0;
    text-decoration: none;
    transition: all 0.3s ease;
}

.industrial-menu .dropdown-content a:last-child {
    border-bottom: none;
}

.industrial-menu .dropdown-content a:hover {
    background: #dc2626;
    color: white;
    transform: translateX(5px);
}

/* Groupes de services dans le dropdown */
.service-group {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #3d5668;
}

.service-group:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.service-title {
    display: block;
    color: #dc2626;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1.5rem;
    margin-bottom: 0.5rem;
    background: rgba(220, 38, 38, 0.1);
}

.service-group a {
    padding: 0.5rem 1.5rem 0.5rem 2rem !important;
    font-size: 0.8rem !important;
    color: #bdc3c7 !important;
    border-bottom: none !important;
}

.service-group a:hover {
    background: #dc2626 !important;
    color: white !important;
    transform: translateX(10px) !important;
}

/* Sélecteur de langue industriel */
.language-selector {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.language-btn {
    background: transparent;
    border: 1px solid #3d5668;
    color: #e0e0e0;
    padding: 0.5rem 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    height: 48px;
    min-height: 48px;
    box-sizing: border-box;
}

.language-btn:hover {
    background: #dc2626;
    border-color: #dc2626;
    color: white;
}

.language-btn .flag {
    width: 20px;
    height: auto;
    display: block;
}

.language-options {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background: #2c3e50;
    border: 1px solid #3d5668;
    border-top: 3px solid #dc2626;
    min-width: 150px;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transform: translateY(1px);
}

.language-dropdown:hover .language-options,
.language-options:hover {
    display: block;
}

.language-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1rem;
    color: #e0e0e0;
    text-decoration: none;
    border-bottom: 1px solid #3d5668;
    transition: background 0.3s ease;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.language-option:hover {
    background: #dc2626;
    color: white;
}

.language-option .flag {
    width: 20px;
    height: auto;
}

/* Adaptation pour le menu de navigation */
.industrial-menu li:last-child {
    margin-left: 1rem;
}

/* Ancienne navigation (masquée) */
.nav-container, .nav-content, .nav-menu, .hamburger {
    display: none !important;
}

/* Navigation industrielle */
.nav-container {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    border-bottom: 2px solid #dc2626;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 70px;
}

.nav-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.nav-container::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    font-family: 'Lato', 'Arial', sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: #dc2626;
    text-decoration: none;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
    transition: all 0.3s ease;
}

.logo:hover {
    color: #ef4444;
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
    gap: 20px;
}

.nav-link {
    color: #e5e5e5;
    text-decoration: none;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 12px 18px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 1px solid transparent;
}

.nav-link:hover {
    color: #dc2626;
    background-color: rgba(220, 38, 38, 0.1);
    border-color: #dc2626;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.2);
}

.nav-link:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(220, 38, 38, 0.3);
}

/* Bouton hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #dc2626;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* Navigation responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #1a1a1a;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
        padding: 20px 0;
        gap: 10px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        display: block;
        width: 100%;
        text-align: center;
        border-radius: 0;
        border: none;
        border-bottom: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .language-selector {
        margin-top: 20px;
    }
}

/* Hero industriel */
.hero {
    background: radial-gradient(circle at center, rgba(31,41,55,0.55) 70%, #23272f 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-blend-mode: normal;
    opacity: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(220, 38, 38, 0.1) 0%, 
        rgba(26, 26, 26, 0.8) 40%, 
        rgba(31, 41, 55, 0.7) 60%, 
        rgba(220, 38, 38, 0.05) 100%
    );
    z-index: 1;
}

.hero-grid {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(220, 38, 38, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(220, 38, 38, 0.1) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 900;
    color: #dc2626;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    text-shadow: 2px 2px 0px #2c3e50;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #bdc3c7;
    margin-bottom: 2rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-description {
    font-size: 1.1rem;
    color: #ecf0f1;
    max-width: 600px;
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-industrial {
    padding: 1rem 2rem;
    background: transparent;
    border: 2px solid #dc2626;
    color: #dc2626;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-industrial::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #dc2626;
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-industrial:hover {
    color: white;
}

.btn-industrial:hover::before {
    left: 0;
}

.btn-industrial.secondary {
    border-color: #95a5a6;
    color: #95a5a6;
}

.btn-industrial.secondary::before {
    background: #95a5a6;
}

/* Sections principales */
.section {
    padding: 5rem 2rem;
    background: #212121;
    border-top: 3px solid #dc2626;
}

/* Première section sur les pages intérieures */
.section:first-child {
    margin-top: 2rem;
    padding-top: 6rem;
}

.section:nth-child(even) {
    background: #1a1a1a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    color: #dc2626;
    text-align: center;
    margin-bottom: 1rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-subtitle {
    text-align: center;
    color: #95a5a6;
    margin-bottom: 4rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Grille de services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(135deg, #2c3e50, #3d5668);
    border: 1px solid #4a5f73;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
}

.service-card:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.2);
}

.service-header {
    padding: 2rem;
    text-align: center;
    background: rgba(220, 38, 38, 0.1);
}

.service-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
}

.service-card h3 {
    color: #ecf0f1;
    font-size: 1.5rem;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-content {
    padding: 2rem;
}

.service-content p {
    color: #bdc3c7;
    margin-bottom: 1.5rem;
}

.service-btn {
    background: #dc2626;
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.service-btn:hover {
    background: #b91c1c;
    color: white;
    text-decoration: none;
}

/* Stats industrielles */
.stats {
    background: linear-gradient(135deg, #1f2937, #374151);
    padding: 4rem 2rem;
    border-top: 2px solid #dc2626;
    border-bottom: 2px solid #dc2626;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: linear-gradient(135deg, rgba(31, 41, 55, 0.8), rgba(55, 65, 81, 0.6));
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    border: 1px solid rgba(220, 38, 38, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    border-color: #dc2626;
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    display: block;
    margin-bottom: 0.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.stat-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.9;
}

/* Section Contact CTA */
.contact-cta-section {
    background: linear-gradient(135deg, #dc2626, #ef4444);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.contact-cta-content h2 {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-contact-cta {
    display: inline-block;
    background: white;
    color: #dc2626;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0;
    transition: all 0.3s ease;
    border: 2px solid white;
    font-size: 1rem;
}

.btn-contact-cta:hover {
    background: transparent;
    color: white;
    border-color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Footer industriel */
.footer {
    background: linear-gradient(135deg, #212121, #2c3e50);
    color: #bdc3c7;
    padding: 3rem 2rem 2rem;
    border-top: 3px solid #dc2626;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer-section h4 {
    color: #dc2626;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #dc2626;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #3d5668;
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Styles pour les pages prestations */
.prestations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.prestation-card {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    border: 1px solid #3d5668;
    border-left: 4px solid #dc2626;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
}

.prestation-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 20px;
    height: 20px;
    background: #dc2626;
    clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.prestation-card:hover {
    transform: translateX(10px);
    box-shadow: -5px 5px 15px rgba(220, 38, 38, 0.2);
}

.prestation-card h3 {
    color: #ecf0f1;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.prestation-card p {
    color: #bdc3c7;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.prestation-features li {
    padding: 0.5rem 0;
    color: #95a5a6;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid #3d5668;
}

.prestation-features li::before {
    content: '▶';
    color: #dc2626;
    position: absolute;
    left: 0;
    font-size: 0.8rem;
}

/* Styles des pages de réalisations */
.realisations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(600px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.realisation-card {
    background: linear-gradient(135deg, #212121 0%, #2a2a2a 100%);
    border: 1px solid #333;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.realisation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(220, 38, 38, 0.2);
    border-color: #dc2626;
}

.realisation-header {
    display: flex;
    height: 280px;
}

.realisation-image-container {
    width: 40%;
    position: relative;
    overflow: hidden;
}

.image-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.carousel-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(220, 38, 38, 0.8);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s ease;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-btn:hover {
    background: rgba(220, 38, 38, 1);
    transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
    left: 10px;
}

.carousel-btn.next {
    right: 10px;
}

.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 2;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #dc2626;
    transform: scale(1.2);
}

.indicator:hover {
    background: rgba(220, 38, 38, 0.8);
}

.realisation-info {
    width: 60%;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.realisation-info h3 {
    color: #dc2626;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.description-preview {
    color: #d0d0d0;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.tech-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: auto;
}

.tech-tag {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive pour les réalisations */
@media (max-width: 768px) {
    .realisations-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .realisation-header {
        flex-direction: column;
        height: auto;
    }
    
    .realisation-image-container {
        width: 100%;
        height: 200px;
    }
    
    .realisation-info {
        width: 100%;
        padding: 1.5rem;
    }
    
    .carousel-btn {
        width: 30px;
        height: 30px;
        font-size: 14px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 10px;
        height: 10px;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .prestations-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Responsive réalisations */
    .realisation-header {
        flex-direction: column;
        min-height: auto;
    }
    
    .realisation-image {
        width: 100%;
        min-height: 200px;
    }
    
    .realisation-info {
        width: 100%;
        padding: 1.5rem;
    }
    
    .realisation-info h3 {
        font-size: 1.2rem;
    }
    
    .tech-specs {
        gap: 0.3rem;
    }
    
    .tech-tag {
        font-size: 0.75rem;
        padding: 0.2rem 0.6rem;
    }
}

/* Section Consultation */
.consultation-section {
    background: #1a1a1a;
    padding: 5rem 2rem;
    border-top: 3px solid #dc2626;
}

.consultation-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.consultation-info h2 {
    color: #dc2626;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-info p {
    color: #bdc3c7;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: #e0e0e0;
    font-size: 1rem;
}

.contact-icon {
    background: #dc2626;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.consultation-form {
    background: linear-gradient(135deg, #2c3e50, #34495e);
    padding: 2.5rem;
    border-radius: 15px;
    border: 1px solid #3d5668;
    position: relative;
}

.consultation-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #dc2626, #ef4444);
    border-radius: 15px 15px 0 0;
}

.consultation-form h3 {
    color: #dc2626;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.consultation-form form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.consultation-form input,
.consultation-form textarea {
    background: #1a1a1a;
    border: 1px solid #3d5668;
    color: #e0e0e0;
    padding: 1rem;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', Arial, sans-serif;
    transition: all 0.3s ease;
}

.consultation-form input:focus,
.consultation-form textarea:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.consultation-form input::placeholder,
.consultation-form textarea::placeholder {
    color: #95a5a6;
}

.btn-consultation {
    background: linear-gradient(45deg, #dc2626, #ef4444);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.btn-consultation:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    background: linear-gradient(45deg, #ef4444, #dc2626);
}

.btn-consultation:active {
    transform: translateY(0);
}

/* Responsive pour la consultation */
@media (max-width: 768px) {
    .consultation-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .consultation-form {
        padding: 2rem;
    }
    
    .consultation-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-item {
        font-size: 0.9rem;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
} 
