/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #e5e7eb;
    background-color: #000000;
    font-weight: 400;
}

/* Liens globaux */
a {
    color: #fbbf24;
    text-decoration: none;
}

a:hover {
    color: #f59e0b;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: #e5e7eb;
}

h1 {
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1rem;
    color: #9ca3af;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #000000 0%, #000000 100%);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: #1a1a1a;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    padding: 1rem 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo {
    height: 50px;
    width: 50px;
    border-radius: 8px;
    object-fit: cover;
}

.brand-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.brand-text:hover {
    color: #f59e0b;
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    font-weight: 500;
    color: #e5e7eb;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #fbbf24;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.emergency-call {
    background: #fbbf24;
    color: white !important;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    position: relative;
    animation: emergencyPulse 2s infinite;
    box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
}

.emergency-call:hover {
    background: #f59e0b;
    animation: none;
}

.emergency-call::after {
    display: none;
}

@keyframes emergencyPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(220, 38, 38, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(220, 38, 38, 0);
    }
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #e5e7eb;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 30%, #333333 70%, #4a4a4a 100%);
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.3);
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 1px, transparent 1px),
        linear-gradient(45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%),
        linear-gradient(-45deg, rgba(255, 255, 255, 0.03) 25%, transparent 25%);
    background-size: 60px 60px, 60px 60px, 40px 40px, 40px 40px;
    background-position: 0 0, 30px 30px, 0 0, 20px 20px;
    opacity: 0.7;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-title .highlight {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5);
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero .btn-primary {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.hero-features .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.hero-features .feature-item i {
    font-size: 1.25rem;
    color: #fbbf24;
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: #9ca3af;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    background: #1a1a1a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: #262626;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #404040;
}

.service-card:hover {
    box-shadow: 0 15px 40px rgba(249, 115, 22, 0.2);
    border-color: #fbbf24;
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: #1a1a1a;
}

.service-card h3 {
    color: #e5e7eb;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.service-card p {
    color: #9ca3af;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-card ul {
    list-style: none;
}

.service-card ul li {
    padding: 0.5rem 0;
    color: #9ca3af;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card ul li::before {
    content: '✓';
    color: #10b981;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #0a0a0a;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-choose-us .feature-item {
    text-align: center;
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-us .feature-item h3 {
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.why-choose-us .feature-item p {
    color: #9ca3af;
    line-height: 1.7;
}

/* Service Areas Section */
.service-areas {
    background: #1a1a1a;
}

.france-coverage {
    background: #262626;
    border-radius: 16px;
    padding: 3rem;
    margin-bottom: 3rem;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.coverage-main h3 {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 1rem;
}

.coverage-main p {
    color: #9ca3af;
    font-size: 1.1rem;
}

.areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.area-card {
    background: #262626;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border-left: 4px solid #fbbf24;
}

.area-card:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.area-card h3 {
    color: #e5e7eb;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.area-card h3 i {
    color: #fbbf24;
}

.area-card p {
    color: #9ca3af;
    line-height: 1.6;
}

/* Liens dans les area-cards */
.area-card h3 a {
    color: #e5e7eb !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.area-card h3 a:hover {
    color: #fbbf24 !important;
}

/* Area cards featured */
.area-card.featured {
    border-left-color: #fbbf24;
}

.area-card.featured h3 a {
    color: #ffffff !important;
}

/* Section Expertise Technique */
.expertise-section {
    margin-top: 3rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #262626 100%);
    border-radius: 16px;
}

.expertise-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.expertise-intro h3 {
    color: #e5e7eb;
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.expertise-intro p {
    color: #9ca3af;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.expertise-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.highlight-item {
    background: #333333;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    border: 1px solid #4a4a4a;
}

.highlight-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.highlight-content {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.highlight-icon {
    background: linear-gradient(135deg, #1a1a1a, #333333);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.highlight-icon i {
    color: #fbbf24;
}

.highlight-text h4 {
    color: #e5e7eb;
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.highlight-text p {
    color: #9ca3af;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.learn-more {
    color: #fbbf24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
}

.learn-more:hover {
    color: #f59e0b;
    transform: translateX(3px);
}

.learn-more i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.learn-more:hover i {
    transform: translateX(3px);
}

/* Section FAQ */
.faq-section {
    padding: 4rem 0;
    background: #1a1a1a;
}

.faq-container {
    display: grid;
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #262626;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.faq-item.active {
    background: #333333;
}

.faq-question {
    padding: 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-question:hover {
    background: #333333;
}

.faq-question h3 {
    color: #e5e7eb;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

.faq-question i {
    color: #fbbf24;
    font-size: 1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 1rem;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: #1a1a1a;
}

.faq-item.active .faq-answer {
    padding: 1.5rem;
    max-height: 300px;
}

.faq-answer p {
    color: #9ca3af;
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Contact Section */
.contact {
    background: #0a0a0a;
}

.contact-info-centered {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.emergency-contact {
    background: #1a1a1a;
    border-radius: 20px;
    padding: 3rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.contact-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    animation: emergencyPulse 2s infinite;
}

.contact-icon-large i {
    font-size: 3rem;
    color: white;
}

.emergency-contact h3 {
    font-size: 2rem;
    color: #e5e7eb;
    margin-bottom: 1rem;
}

.phone-number {
    margin-bottom: 1rem;
}

.phone-number a {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fbbf24;
    text-decoration: none;
    border: 3px solid #fbbf24;
    padding: 1rem 2rem;
    border-radius: 15px;
    display: inline-block;
    transition: all 0.3s ease;
}

.phone-number a:hover {
    background: #fbbf24;
    color: white;
    transform: scale(1.05);
}

.contact-description {
    font-size: 1.1rem;
    color: #9ca3af;
    line-height: 1.6;
}

.contact-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: #262626;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
}

.contact-icon i {
    font-size: 1.5rem;
    color: #1a1a1a;
}

.contact-details h4 {
    color: #e5e7eb;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #9ca3af;
    margin: 0;
}

/* Cities SEO Section - Version discrète */
.cities-seo-discrete {
    background: #1a1a1a;
    padding: 3rem 0;
    border-top: 1px solid #333333;
}

.cities-seo-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cities-seo-discrete h3 {
    color: #e5e7eb;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.cities-seo-discrete p {
    color: #9ca3af;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.cities-compact {
    margin-bottom: 2rem;
}

.cities-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cities-preview span {
    background: #333333;
    color: #e5e7eb;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.cities-preview span:hover {
    background: #fbbf24;
    color: white;
    transform: translateY(-1px);
}

.cities-preview span:last-child {
    background: #fbbf24;
    color: white;
    font-style: italic;
}

.cities-full {
    text-align: left;
    background: #262626;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    margin-top: 1.5rem;
}

.region-compact {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.region-compact strong {
    color: #fbbf24;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.region-compact span {
    color: #9ca3af;
    font-size: 0.95rem;
}

/* Forcer les liens des villes en jaune */
.region-compact a,
.cities-preview a,
.cities-full a {
    color: #fbbf24 !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.region-compact a:hover,
.cities-preview a:hover,
.cities-full a:hover {
    color: #f59e0b !important;
    text-decoration: underline;
}

.show-cities-btn {
    background: linear-gradient(135deg, #6b7280 0%, #4b5563 100%);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0 auto;
    font-size: 0.9rem;
}

.show-cities-btn:hover {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.show-cities-btn i {
    transition: transform 0.3s ease;
}

.show-cities-btn.expanded i {
    transform: rotate(180deg);
}


/* Styles pour les liens des villes */
.cities-seo-discrete a,
.cities-compact a,
.cities-preview a,
.cities-full a,
.region-compact a,
.dept-item a {
    color: #fbbf24 !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cities-seo-discrete a:hover,
.cities-compact a:hover,
.cities-preview a:hover,
.cities-full a:hover,
.region-compact a:hover,
.dept-item a:hover {
    color: #f59e0b !important;
    text-decoration: underline;
    text-shadow: 0 0 10px rgba(251, 191, 36, 0.5);
}

/* Style spécifique pour les boutons de départements */
.dept-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(251, 191, 36, 0.2);
    border-radius: 8px;
    padding: 10px 20px;
    margin: 5px;
    display: inline-block;
    transition: all 0.3s ease;
}

.dept-item:hover {
    background: rgba(251, 191, 36, 0.1);
    border-color: #fbbf24;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

/* Amélioration de la section des villes */
.cities-preview a,
.region-compact a {
    display: inline-block;
    padding: 4px 8px;
    margin: 2px;
    background: rgba(251, 191, 36, 0.1);
    border: 1px solid rgba(251, 191, 36, 0.3);
    border-radius: 4px;
    font-size: 0.9rem;
}

.cities-preview a:hover,
.region-compact a:hover {
    background: rgba(251, 191, 36, 0.2);
    border-color: #fbbf24;
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: white;
    margin-bottom: 1rem;
}

.footer-section p {
    color: #d1d5db;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

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

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-link:hover {
    background: #fbbf24;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-contact a {
    color: white;
    text-decoration: none;
}

.footer-contact i {
    color: #fbbf24;
    width: 20px;
}

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

.footer-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: white;
}

.footer-bottom p {
    color: #9ca3af;
    margin: 0;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .navbar-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #1a1a1a;
        flex-direction: column;
        padding: 2rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
        gap: 1rem;
    }
    
    .navbar-menu.active {
        display: flex;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-features {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    h1 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .services-grid,
    .areas-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    /* Cities discrete responsive */
    .cities-preview {
        gap: 0.3rem;
    }
    
    .cities-preview span {
        font-size: 0.75rem;
        padding: 0.3rem 0.6rem;
    }
    
    .cities-full {
        padding: 1.5rem;
    }
    
    .region-compact {
        margin-bottom: 1rem;
    }
    
    .region-compact strong {
        font-size: 1rem;
    }
    
    .region-compact span {
        font-size: 0.85rem;
    }
    
    .show-cities-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }
    
    /* Expertise section responsive */
    .expertise-section {
        margin-top: 2rem;
        padding: 2rem 0;
    }
    
    .expertise-intro h3 {
        font-size: 1.5rem;
    }
    
    .highlight-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .highlight-icon {
        margin: 0 auto;
    }
    
    .highlight-item {
        padding: 1.5rem;
    }
    
    /* FAQ section responsive */
    .faq-container {
        gap: 1rem;
    }
    
    .faq-question h3 {
        font-size: 1.1rem;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* Amélioration de l'affichage du numéro de téléphone */
.emergency-call {
    font-size: 1.1rem !important;
    padding: 12px 24px !important;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }
    50% {
        box-shadow: 0 4px 25px rgba(251, 191, 36, 0.5);
    }
    100% {
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    }
}

.phone-display {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(251, 191, 36, 0.1);
    padding: 8px 16px;
    border-radius: 8px;
    border: 1px solid rgba(251, 191, 36, 0.3);
}

.phone-display i {
    color: #fbbf24;
    font-size: 1.2rem;
}

/* Amélioration responsive du numéro */
@media (max-width: 768px) {
    .emergency-call {
        font-size: 0.95rem !important;
        padding: 10px 16px !important;
    }
    
    .phone-number {
        font-size: 2rem !important;
    }
}


/* Styles pour les logos et icônes */
.navbar-brand .logo {
    width: 45px;
    height: 45px;
    margin-right: 12px;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.3));
}

.service-icon {
    position: relative;
    overflow: visible;
}

.service-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: glow 3s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Icônes dans les features */
.feature-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
}

.feature-icon i {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
