@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

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

body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: linear-gradient(135deg, #2c3e50 0%, #3b4d63 50%, #4a5d76 100%);
    color: white;
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    text-align: center;
    margin-bottom: 40px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

header img {
    max-width: 400px;
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.3));
}

.subtitle {
    font-size: 18px;
    color: #edb331;
    font-weight: 500;
    margin-top: 10px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

/* Titres */
h1 {
    color: #edb331;
    font-weight: 700;
    font-size: 2.2em;
    margin: 20px 0;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

h2 {
    color: #edb331;
    font-weight: 600;
    font-size: 1.8em;
    margin: 30px 0 20px 0;
    border-bottom: 2px solid rgba(237, 179, 49, 0.3);
    padding-bottom: 10px;
    position: relative;
}

h2::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #edb331, #edb331);
}

h3 {
    color: #edb331;
    font-weight: 500;
    font-size: 1.4em;
    margin: 20px 0 15px 0;
}

h4 {
    color: #edb331;
    font-weight: 500;
    font-size: 1.2em;
    margin: 15px 0 10px 0;
}

/* Sections */
section {
    margin-bottom: 40px;
}

.intro {
    background: linear-gradient(135deg, rgba(52, 152, 219, 0.1), rgba(41, 128, 185, 0.1));
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #3498db;
    box-shadow: 0 8px 32px rgba(0,0,0,0.2);
    backdrop-filter: blur(10px);
}

.intro p {
    font-size: 18px;
    margin: 0;
    color: #ecf0f1;
}

/* Services */
.services {
    margin: 40px 0;
}

.service-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    margin: 20px 0;
    border-radius: 12px;
    border-left: 4px solid #edb331;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.service-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(8px) translateY(-2px);
    box-shadow: 0 8px 32px rgba(237, 179, 49, 0.2);
}

.service-item ul {
    margin: 15px 0;
    padding-left: 20px;
}

.service-item li {
    margin: 10px 0;
    color: #ecf0f1;
    position: relative;
}

.service-item li::marker {
    color: #edb331;
}

.service-link {
    display: inline-block;
    margin-top: 15px;
    color: #edb331;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.service-link:hover {
    color: #edb331;
    border-bottom-color: #edb331;
    transform: translateX(5px);
}

/* Zones d'intervention */
.zone-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 20px 0;
    justify-content: center;
}

.zone {
    background: linear-gradient(135deg, #edb331, #edb331);
    color: white;
    padding: 10px 18px;
    border-radius: 25px;
    font-weight: 500;
    font-size: 14px;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(237, 179, 49, 0.3);
}

.zone:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(237, 179, 49, 0.4);
}

/* Expertise */
.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin: 25px 0;
}

.expertise-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.expertise-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #edb331, transparent);
    transition: left 0.5s ease;
}

.expertise-item:hover::before {
    left: 100%;
}

.expertise-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
}

.expertise-item h4 {
    margin-top: 0;
    font-size: 1.1em;
}

.expertise-item p {
    margin-bottom: 0;
    color: #bdc3c7;
    font-size: 14px;
}

/* Call to Action */
.cta {
    background: linear-gradient(135deg, #edb331, #edb331, #d4a729);
    color: white;
    padding: 35px;
    border-radius: 15px;
    text-align: center;
    margin: 40px 0;
    box-shadow: 0 10px 40px rgba(237, 179, 49, 0.3);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.cta h2 {
    color: white;
    border: none;
    margin-bottom: 15px;
    text-shadow: 0 3px 6px rgba(0,0,0,0.6);
    font-weight: 700;
}

.cta h2::after {
    display: none;
}

.cta p {
    font-size: 18px;
    margin: 0;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
    color: white;
}

/* Contact */
.contact {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact h2 {
    margin-top: 0;
    text-align: center;
}

address {
    font-style: normal;
    font-size: 16px;
    line-height: 1.8;
    color: #ecf0f1;
}

address span {
    display: inline-block;
    margin: 3px 0;
}

/* Liens */
a {
    color: #3498db;
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

a:hover {
    color: #edb331;
    text-decoration: underline;
    text-shadow: 0 0 8px rgba(237, 179, 49, 0.5);
}

/* Footer */
.footer-note {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-note em {
    color: #95a5a6;
    font-size: 14px;
}

/* Strong elements */
strong {
    color: #edb331;
    font-weight: 600;
}

/* Font Awesome icons */
.fas {
    color: #edb331;
    margin-right: 8px;
    font-size: 1.1em;
}

.expertise-item h4 .fas {
    color: #edb331;
    font-size: 1.2em;
    margin-right: 10px;
}

.contact .fas {
    color: #edb331;
    margin-right: 6px;
}

.service-item h3 .fas {
    color: #edb331;
    font-size: 1.3em;
    margin-right: 12px;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 15px;
    }
    
    header {
        padding: 20px 15px;
    }
    
    header img {
        max-width: 300px;
    }
    
    h1 {
        font-size: 1.8em;
    }
    
    h2 {
        font-size: 1.5em;
    }
    
    .intro p, .cta p {
        font-size: 16px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        padding: 20px;
    }
    
    .cta {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 10px;
    }
    
    h1 {
        font-size: 1.6em;
    }
    
    .subtitle {
        font-size: 16px;
    }
    
    .intro, .cta, .contact {
        padding: 20px;
    }
    
    .expertise-item, .service-item {
        padding: 18px;
    }
}