* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: #ddd;
    background-color: #000;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    position: relative;
}

.nav-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.logo img {
    height: 50px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    list-style: none;
    align-items: center;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
    font-weight: 500;
}

.nav-links a:hover {
    color: #FFD700;
}

/* Menu déroulant Produits */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    min-width: 800px;
    max-width: 900px;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,215,0,0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-10px);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    margin-top: 15px;
    border: 2px solid rgba(255,215,0,0.2);
}

.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    padding: 20px;
}

.dropdown-item {
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.05);
    margin: 8px;
}

.dropdown-item:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(255,215,0,0.05);
    border-color: rgba(255,215,0,0.3);
    box-shadow: 0 15px 35px rgba(255,215,0,0.2);
}

.dropdown-item-link {
    display: block;
    text-decoration: none;
    color: #fff;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.dropdown-item-image {
    width: 100%;
    height: 120px;
    background-size: cover;
    background-position: center;
    position: relative;
    transition: transform 0.4s ease;
}

.dropdown-item:hover .dropdown-item-image {
    transform: scale(1.1);
}

.dropdown-item-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.6));
    transition: opacity 0.3s ease;
}

.dropdown-item:hover .dropdown-item-image::before {
    opacity: 0.8;
}

.dropdown-item-content {
    padding: 15px;
    position: relative;
}

.dropdown-item-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #fff;
    transition: color 0.3s ease;
}

.dropdown-item:hover .dropdown-item-title {
    color: #FFD700;
}

.dropdown-item-desc {
    font-size: 13px;
    color: #ccc;
    line-height: 1.4;
    opacity: 0.9;
}

/* Icône d'animation sur hover */
.dropdown-item::after {
    content: '→';
    position: absolute;
    top: 15px;
    right: 15px;
    color: #FFD700;
    font-size: 18px;
    font-weight: bold;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.dropdown-item:hover::after {
    opacity: 1;
    transform: translateX(0);
}

/* Images spécifiques pour chaque produit dans le dropdown */
.dropdown-item:nth-child(1) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-fenetre.jpeg');
}

.dropdown-item:nth-child(2) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-porte.jpeg');
}

.dropdown-item:nth-child(3) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-volet.jpeg');
}

.dropdown-item:nth-child(4) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-portail.jpeg');
}

.dropdown-item:nth-child(5) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-garage.jpeg');
}

.dropdown-item:nth-child(6) .dropdown-item-image {
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.5)), url('../img/card-pergola.png');
}

/* Flèche indicative du dropdown */
.dropdown > a::after {
    content: '▼';
    font-size: 12px;
    margin-left: 8px;
    transition: transform 0.3s ease;
    color: #FFD700;
}

.dropdown:hover > a::after {
    transform: rotate(180deg);
}

.cta-button {
    background-color: #FFD700;
    color: #000;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 30px rgba(255, 215, 0, 0.8);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.cta-button:hover {
    transform: scale(1.08);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
    animation: none;
}

.cta-button:hover::before {
    width: 300px;
    height: 300px;
}

.desktop-cta {
    animation: pulse 2s ease-in-out infinite, shake 3s ease-in-out infinite;
}

@keyframes shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    10%, 30% {
        transform: rotate(-2deg);
    }
    20%, 40% {
        transform: rotate(2deg);
    }
}

.nav-links .cta-button {
    display: none;
}

.desktop-cta {
    display: inline-block;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1001;
    padding: 10px;
    background: transparent;
    border: none;
    margin-left: auto;
}

.menu-toggle span {
    width: 30px;
    height: 3px;
    background-color: #FFD700;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}
.mobile-overlay.active {
    display: block;
    opacity: 1;
    pointer-events: auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* --- DROPDOWN MOBILE SIMPLE --- */
    /* Masquer images et descriptions */
    .dropdown-item-image,
    .dropdown-item-desc {
        display: none !important;
    }

    /* Dropdown caché par défaut */
    .dropdown-content {
        position: static !important;
        transform: none !important;
        min-width: auto;
        max-width: none;
        width: 100%;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding: 0 !important;

        /* Animation accordéon */
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        overflow: hidden;
        transition: max-height 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
    }

    /* Dropdown ouvert */
    .dropdown.open .dropdown-content {
        max-height: 600px !important;
        opacity: 1 !important;
        visibility: visible !important;
        margin-top: 10px !important;
    }

    /* Désactiver hover */
    .dropdown:hover .dropdown-content {
        opacity: 0 !important;
        visibility: hidden !important;
        max-height: 0 !important;
    }

    /* Mais réactiver si .open */
    .dropdown.open:hover .dropdown-content {
        max-height: 600px !important;
        opacity: 1 !important;
        visibility: visible !important;
    }

    /* Grid en colonne */
    .dropdown-grid {
        display: flex !important;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    /* Items style simple */
    .dropdown-item {
        margin: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
    }

    .dropdown-item-link {
        display: block;
        padding: 20px 0 !important;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        transition: all 0.3s;
    }

    .dropdown-item:hover .dropdown-item-link {
        padding-left: 10px !important;
    }

    .dropdown-item:hover {
        transform: none !important;
        background: transparent !important;
        box-shadow: none !important;
    }

    .dropdown-item-content {
        padding: 0 !important;
    }

    .dropdown-item-title {
        font-size: 20px !important;
        font-weight: 500;
        color: #fff !important;
        margin: 0 !important;
    }

    .dropdown-item:hover .dropdown-item-title {
        color: #FFD700 !important;
    }

    .dropdown-item::after {
        display: none !important;
    }
    /* --- FIN DROPDOWN MOBILE --- */

    nav {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .desktop-cta {
        display: none !important;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        text-align: left;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        padding: 100px 40px 40px 40px;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideIn 0.4s forwards;
    }

    .nav-links.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-links.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-links.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-links.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-links.active li:nth-child(5) { animation-delay: 0.3s; }
    .nav-links.active li:nth-child(6) { animation-delay: 0.35s; }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        width: 100%;
        transition: all 0.3s;
    }

    .nav-links a:hover {
        padding-left: 10px;
        color: #FFD700;
    }

    /* Flèche dropdown mobile */
    .dropdown > a::after {
        content: '▼';
        font-size: 14px;
        color: #FFD700;
        display: inline-block !important;
        margin-left: 10px;
        transition: transform 0.3s ease;
    }

    .dropdown.open > a::after {
        transform: rotate(180deg);
    }

    .nav-links .cta-button {
        display: block;
    }

    .desktop-cta {
        display: none;
    }

    .cta-button {
        display: block;
        margin: 30px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 18px;
    }
}


/* Hero Section */
.hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/bg-hero2.jpeg');
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 110vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    padding: 120px 20px 0 20px;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h1 .highlight {
    color: #FFD700;
}

.hero p {
    font-size: 18px;
    max-width: 900px;
    margin-bottom: 35px;
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 16px 40px;
    border: 2px solid #fff;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #fff;
    color: #000;
}

.btn-primary {
    background-color: #FFD700;
    color: #000;
    padding: 16px 40px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s;
    position: relative;
    animation: gentle-bounce 3s ease-in-out infinite;
}

@keyframes gentle-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.btn-primary:hover {
    animation: none;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.6);
}

/* Flèche de scroll simplifiée */
.scroll-arrow {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    animation: bounce-arrow 2s ease-in-out infinite;
    z-index: 10;
}

.scroll-arrow .arrow-icon {
    font-size: 50px;
    color: #FFD700;
    font-weight: 300;
    line-height: 1;
}

@keyframes bounce-arrow {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(15px);
    }
}

.scroll-arrow:hover .arrow-icon {
    color: #fff;
}

/* Services Section */
.services {
    padding: 100px 40px;
    background-color: #000; /* Changé de #f5f5f5 à #000 */
}

.services h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff; /* Ajouté pour lisibilité */
}

.services-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ccc; /* Changé de #666 à #ccc */
    max-width: 900px;
    margin: 0 auto 80px;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.services-grid a {
    text-decoration:  none;
}


.service-card {
    background: #111; /* Changé de #fff à #111 */
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08); /* Ombre peut rester */
    transition: transform 0.3s;
    overflow: hidden;
    position: relative;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid #333; /* Ajout d'une bordure pour la définition */
}

.service-card:hover {
    transform: translateY(-10px);
    border-color: #FFD700; /* Bordure accentuée au survol */
}

.service-card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.service-card-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.3));
}

.service-card-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-icon {
    display: none;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #FFD700; /* Changé de #000 à couleur accentuée */
}

.service-card p {
    color: #ccc; /* Changé de #666 à #ccc */
    font-size: 16px;
    line-height: 1.7;
}

/* Images spécifiques pour chaque produit */
.service-card:nth-child(1) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-fenetre.jpeg');
}

.service-card:nth-child(2) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-porte.jpeg');
}

.service-card:nth-child(3) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-volet.jpeg');
}

.service-card:nth-child(4) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-portail.jpeg');
}

.service-card:nth-child(5) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-garage.jpeg');
}

.service-card:nth-child(6) .service-card-image {
    background-image: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.3)), url('../img/card-pergola.png');
}

/* À Propos Section Professionnelle avec Inter font (Déjà sombre, OK) */
.apropos-section {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 120px 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.apropos-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 215, 0, 0.02) 100%);
    opacity: 0.5;
}

.apropos-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Header */
.apropos-header {
    text-align: center;
    margin-bottom: 80px;
}

.apropos-badge {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
}

.apropos-header h2 {
    font-size: 48px;
    margin-bottom: 24px;
    background: linear-gradient(135deg, #FFD700, #FFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
}

.apropos-lead {
    font-size: 20px;
    color: #ccc;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Présentation entreprise */
.company-presentation {
    margin-bottom: 80px;
}

.presentation-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.company-stats {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: rgba(255, 215, 0, 0.1);
    border-radius: 16px;
    border: 1px solid rgba(255, 215, 0, 0.2);
}

.stat-number {
    font-size: 36px;
    font-weight: 800;
    color: #FFD700;
    margin-bottom: 8px;
    font-family: 'Inter', sans-serif;
}

.stat-label {
    font-size: 14px;
    color: #ccc;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.company-story p {
    font-size: 18px;
    line-height: 1.8;
    color: #ddd;
    margin-bottom: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.company-story strong {
    color: #FFD700;
    font-weight: 600;
}

/* Grille d'expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-bottom: 80px;
}

.expertise-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid rgba(255, 215, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.expertise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
}

.expertise-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.1);
}

.highlight-card {
    background: rgba(255, 215, 0, 0.08);
    border-color: rgba(255, 215, 0, 0.2);
}

.card-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.expertise-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFD700;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

/* Certifications */
.certification-badges {
    margin-bottom: 20px;
}

.cert-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-bottom: 10px;
}

.cert-badge span {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.cert-logo {
    width: 40px;
}

/* Process steps */
.process-steps {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.step {
    display: flex;
    align-items: center;
    gap: 16px;
}

.step-number {
    width: 32px;
    height: 32px;
    background: #FFD700;
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.step-text {
    color: #ddd;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Garanties */
.guarantee-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.guarantee-icon {
    font-size: 20px;
}

.guarantee-text strong {
    color: #FFD700;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.guarantee-text span {
    color: #ccc;
    font-size: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Listes */
.expertise-list {
    list-style: none;
    padding: 0;
}

.expertise-list li {
    padding: 8px 0;
    color: #ddd;
    position: relative;
    padding-left: 24px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.expertise-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #FFD700;
    font-weight: bold;
}

/* Zone de service et contact */
.service-area-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.service-area h3,
.contact-pro h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #FFD700;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.area-description {
    color: #ccc;
    margin-bottom: 24px;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.cities-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.city {
    padding: 6px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 14px;
    color: #ddd;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.primary-city {
    background: rgba(255, 215, 0, 0.2);
    color: #FFD700;
    border-color: rgba(255, 215, 0, 0.3);
    font-weight: 600;
}

/* Contact professionnel */
.contact-info {
    margin-bottom: 32px;
}

.contact-item-pro {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.contact-icon-pro {
    font-size: 24px;
    width: 40px;
    text-align: center;
}

.contact-details {
    flex: 1;
}

.contact-details strong {
    color: #FFD700;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.phone-link, .email-link {
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
}

.phone-link:hover, .email-link:hover {
    color: #FFD700;
}

.hours, .response-time {
    color: #ccc;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

/* Boutons CTA */
.cta-container {
    display: flex;
    gap: 16px;
}

.btn-primary-pro {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: #000;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
    font-family: 'Inter', sans-serif;
}

.btn-primary-pro:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(255, 215, 0, 0.4);
}

.btn-secondary-pro {
    background: transparent;
    color: #FFD700;
    padding: 16px 32px;
    border: 2px solid #FFD700;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.btn-secondary-pro:hover {
    background: #FFD700;
    color: #000;
}

/* Réalisations Section */
.realisations {
    padding: 100px 40px;
    background-color: #000; /* Changé de #fff à #000 */
}

.realisations h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    color: #fff; /* Ajouté pour lisibilité */
}

.realisations-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ccc; /* Changé de #666 à #ccc */
    max-width: 900px;
    margin: 0 auto 80px;
}

.carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.carousel-image {
    width: 100%;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), #888;
    display: flex;
    align-items: flex-end;
    padding: 40px;
    border-radius: 20px;
    transition: opacity 0.3s ease-in-out;
    cursor: pointer; /* Indique que c'est cliquable */
}

.carousel-caption {
    color: #fff;
    font-size: 36px;
    font-weight: 600;
}

.carousel-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    pointer-events: none;
}
.carousel-arrow {
    width: 60px;
    height: 60px;
    background-color: #FFD700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 24px;
    font-weight: bold;
    transition: transform 0.3s;
    pointer-events: auto;
}
.carousel-arrow:hover {
    transform: scale(1.1);
}


.realisations-cta,
.avis-cta{
    text-align: center;
    margin-top: 50px;
}

.realisations-cta .btn-primary
{
    display: inline-block;
    font-size: 18px;
    padding: 16px 40px;
}

.avis-cta .btn-primary {
    display: inline-block;
    font-size: 18px;
    padding: 16px 40px;
    border: none;
}

/* Témoignages Section */
.temoignages {
    padding: 100px 40px;
    background-color: #000; /* Changé de #f5f5f5 à #000 */
}

.temoignages h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    color: #fff; /* Ajouté pour lisibilité */
}

.temoignages-subtitle {
    text-align: center;
    font-size: 20px;
    color: #ccc; /* Changé de #666 à #ccc */
    max-width: 900px;
    margin: 0 auto 80px;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

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

.testimonials-slider {
    overflow: hidden;
    border-radius: 20px;
}

.testimonials-slide {
    display: none;
    animation: fadeIn 0.5s ease-in-out;
}

.testimonials-slide.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    padding: 20px;
}

.testimonial-card {
    max-width: 100%;
    overflow: hidden;
    background: #111; /* Changé de white à #111 */
    border: 1px solid #333; /* Changé de #e5e7eb à #333 */
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transform: translateY(0);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    min-height: 280px;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(255, 215, 0, 0.15);
    transform: translateY(-8px) scale(1.02);
    border-color: #FFD700;
}

/* Overlay supprimé - plus de hover blanc */
.testimonial-overlay {
    display: none;
}

.testimonial-card:hover .testimonial-overlay {
    display: none;
}

.testimonial-content {
    padding: 32px;
    position: relative;
    z-index: 10;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.testimonial-title {
    font-size: 20px;
    font-weight: 600;
    color: #FFD700; /* Changé de #1f2937 à couleur accentuée */
    margin-bottom: 16px;
    font-family: 'Inter', sans-serif;
}

.testimonial-text {
    color: #ccc; /* Changé de #6b7280 à #ccc */
    line-height: 1.7;
    font-size: 16px;
    margin-bottom: 24px;
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.testimonial-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #ccc; /* Changé de #6b7280 à #ccc */
    margin-top: auto;
}

.star {
    width: 20px;
    height: 20px;
    fill: #fbbf24;
}

.rating-text {
    margin-left: 8px;
    font-size: 14px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: #ccc; /* Ajouté pour lisibilité */
}

/* Navigation */
.testimonials-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 50px;
}

.testimonials-arrow {
    width: 50px;
    height: 50px;
    background: #FFD700;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
    color: #000;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
}

.testimonials-arrow:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.4);
}

.testimonials-arrow:active {
    transform: scale(0.95);
}

.testimonials-dots {
    display: flex;
    gap: 12px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #444; /* Changé de #ccc à #444 (plus visible sur noir) */
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #FFD700;
    transform: scale(1.2);
}

.dot:hover {
    background: #FFD700;
    opacity: 0.7;
}

/* Contact Section (Déjà sombre, OK) */
.contact-section {
    background-color: #000;
    padding: 40px 0px;
    color: #fff;
}

.contact-section h2 {
    text-align: center;
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-subtitle {
    text-align: center;
    font-size: 20px;
    max-width: 900px;
    margin: 0 auto 50px;
}

.contact-button-center {
    text-align: center;
    margin-bottom: 80px;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    text-align: center;
}

.contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-icon {
    width: 70px;
    height: 70px;
    background-color: #FFD700;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    margin-bottom: 20px;
}

.contact-item h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.contact-item p {
    font-size: 18px;
    color: #ccc;
}

/* Responsiveness pour le dropdown */
@media (max-width: 1024px) {
    .dropdown-content {
        min-width: 600px;
        max-width: 700px;
    }

    .dropdown-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Supprimer les animations tablette */
    .dropdown-item:hover {
        transform: none;
        background: rgba(255,215,0,0.05);
        border-color: rgba(255,215,0,0.3);
        box-shadow: none;
    }

    .dropdown-item:hover .dropdown-item-image {
        transform: none;
    }

    .dropdown-item::after {
        display: none;
    }

    .carousel-nav,
    .carousel-arrow {
        display: none !important;
    }
    .carousel-image {
        height: 400px !important; /* Moins haut = image plus visible */
        padding: 20px;
    }
    .carousel-caption {
        font-size: 24px !important;
    }

    /* Responsive À propos */
    .presentation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .company-stats {
        flex-direction: row;
        justify-content: space-around;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
    }

    .service-area-contact {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-grid {
        gap: 30px;
    }

    .contact-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
    }

    .contact-item h3 {
        font-size: 18px;
    }

    .contact-item p {
        font-size: 14px;
    }
    .hero {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center !important;
        padding: 80px 15px 40px 15px;
        min-height: 500px;
        height: auto;
    }
    .hero h1 { font-size: 32px; margin-bottom: 15px; }
    .hero p { font-size: 15px; margin-bottom: 25px; line-height: 1.5; }
    .hero-buttons { flex-direction: column; width: 100%; gap: 15px; max-width: 350px; }
    .hero-buttons a { width: 100%; text-align: center; padding: 14px 20px; font-size: 16px; }
    .scroll-arrow { bottom: 20px; }
    .scroll-arrow .arrow-icon { font-size: 40px; }

    nav {
        padding: 0 20px;
    }

    .menu-toggle {
        display: flex;
    }

    .desktop-cta {
        display: none !important;
    }

    /* Menu mobile pour le dropdown */
    .dropdown-content {
        position: static;
        transform: none;
        min-width: auto;
        max-width: none;
        width: 100%;
        margin: 20px 0;
        border-radius: 8px;
        opacity: 1;
        visibility: visible;
        background: #000;
    }

    .dropdown-grid {
        grid-template-columns: 1fr;
        padding: 15px;
        gap: 10px;
    }

    .dropdown-item {
        margin: 5px 0;
        background: #000;
    }

    /* Supprimer toutes les animations mobile */
    .dropdown-item:hover {
        transform: none;
        background: #000;
        border-color: rgba(255,215,0,0.3);
        box-shadow: none;
    }

    .dropdown-item:hover .dropdown-item-image {
        transform: none;
    }

    .dropdown-item::after {
        display: none;
    }

    .dropdown-item-image {
        height: 80px;
    }

    .dropdown-item-content {
        padding: 10px 15px;
    }

    .dropdown-item-title {
        font-size: 14px;
    }

    .dropdown-item-desc {
        font-size: 12px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 80%;
        max-width: 400px;
        flex-direction: column;
        background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
        text-align: left;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0,0,0,0.5);
        padding: 100px 40px 40px 40px;
        gap: 0;
        align-items: flex-start;
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        padding: 0;
        margin: 0;
        opacity: 0;
        transform: translateX(50px);
        animation: slideIn 0.4s forwards;
    }

    .nav-links.active li:nth-child(1) {
        animation-delay: 0.1s;
    }

    .nav-links.active li:nth-child(2) {
        animation-delay: 0.15s;
    }

    .nav-links.active li:nth-child(3) {
        animation-delay: 0.2s;
    }

    .nav-links.active li:nth-child(4) {
        animation-delay: 0.25s;
    }

    .nav-links.active li:nth-child(5) {
        animation-delay: 0.3s;
    }

    @keyframes slideIn {
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }

    .nav-links a {
        display: block;
        padding: 20px 0;
        font-size: 20px;
        border-bottom: 1px solid rgba(255, 215, 0, 0.1);
        width: 100%;
        transition: all 0.3s;
    }

    .nav-links a:hover {
        padding-left: 10px;
        color: #FFD700;
    }

    /* Dropdown mobile */
    .dropdown > a::after {
        display: none;
    }

    .dropdown:hover .dropdown-content {
        opacity: 1;
        visibility: visible;
    }

    .nav-links .cta-button {
        display: block;
    }

    .desktop-cta {
        display: none;
    }

    .cta-button {
        display: block;
        margin: 30px 0 0 0;
        width: 100%;
        text-align: center;
        padding: 15px 30px;
        font-size: 18px;
    }

    .hero {
        padding: 0 15px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .hero-buttons a {
        width: 100%;
        text-align: center;
    }

    .scroll-arrow {
        bottom: 20px;
    }

    .scroll-arrow .arrow-icon {
        font-size: 40px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 15px;
    }

    /* Responsive témoignages */
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
    }

    .testimonial-card {
        min-height: auto;
    }

    .testimonial-content {
        padding: 24px;
    }

    .testimonial-title {
        font-size: 18px;
    }

    .testimonial-text {
        font-size: 15px;
    }

    .testimonials-nav {
        gap: 20px;
        margin-top: 30px;
    }

    .testimonials-arrow {
        width: 45px;
        height: 45px;
        font-size: 18px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-content {
        padding: 0 15px;
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo-section {
        grid-column: 1;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
    }

    /* Responsive À propos mobile */
    .apropos-section {
        padding: 80px 20px;
    }

    .apropos-header h2 {
        font-size: 36px;
    }

    .apropos-lead {
        font-size: 18px;
    }

    .company-stats {
        flex-direction: column;
    }

    .expertise-card {
        padding: 30px 20px;
    }

    .guarantee-grid {
        grid-template-columns: 1fr;
    }

    .cta-container {
        flex-direction: column;
    }

    .cities-grid {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .contact-grid {
        gap: 20px;
        padding: 0 10px;
    }

    .contact-icon {
        width: 50px;
        height: 50px;
        font-size: 24px;
        margin-bottom: 15px;
    }

    .contact-item h3 {
        font-size: 16px;
        margin-bottom: 8px;
    }

    .contact-item p {
        font-size: 12px;
        line-height: 1.4;
    }
    .hero h1 { font-size: 28px; }
    .hero {
        background-attachment: scroll !important;
        height: auto;
        min-height: 450px;
        padding: 70px 15px 40px 15px;
    }
    .hero p { font-size: 14px; margin-bottom: 20px; }
    .hero-buttons a { padding: 12px 18px; font-size: 15px; }

    .logo {
        font-size: 22px;
    }

    .hero h1 {
        font-size: 28px;
    }

    nav {
        padding: 0 15px;
    }

    .nav-links {
        width: 85%;
        padding: 80px 30px 30px 30px;
    }

    .nav-links a {
        font-size: 18px;
    }

    /* Responsive À propos très petit écran */
    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .expertise-card {
        min-width: auto;
    }

    .apropos-header h2 {
        font-size: 28px;
    }

    .company-story p {
        font-size: 16px;
    }
}

/* Footer (Déjà sombre, OK) */
footer {
    background-color: #000;
    color: #fff;
    padding: 80px 40px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 60px;
    margin-bottom: 60px;
}

.footer-section h3 {
    color: #FFD700;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-section p, .footer-section a {
    color: #ccc;
    text-decoration: none;
    display: block;
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #FFD700;
    padding-left: 5px;
}

.footer-logo-section {
    grid-column: 1;
}
/* Nouveaux styles pour le logo du footer */
.footer-logo-link {
    display: inline-block;
    margin-bottom: 15px; /* Conserve la marge qu'avait le texte */
}

.footer-logo-img {
    height: 50px; /* Taille cohérente avec le logo du header */
    width: auto;
    display: block;
}
.footer-description {
    font-size: 14px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

.social-icon {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ccc;
    transition: all 0.3s;
    text-decoration: none;
}

.social-icon:hover {
    transform: scale(1.2);
}

.social-icon svg {
    width: 35px;
    height: 35px;
    fill: currentColor;
    display: block;
}

.social-icon.facebook:hover {
    color: #1877f2;
}

.social-icon.instagram:hover {
    color: #e6683c;
}

.social-icon.linkedin:hover {
    color: #0077b5;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: #888;
    font-size: 14px;
    margin: 0;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #888;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #FFD700;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }
}

@media (max-width: 768px) {
    footer {
        padding: 60px 20px 30px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .footer-logo-section {
        grid-column: 1;
    }

    .social-links {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .footer-links {
        justify-content: center;
        gap: 20px;
    }
    .logo img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        gap: 30px;
    }

    .footer-section h3 {
        font-size: 18px;
    }

    .footer-logo-text {
        font-size: 28px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }
    .logo img {
        height: 40px;
    }
}