/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #1e293b;
    background-color: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: #0f172a;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.15);
}

.header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #334155;
}

.logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #3b82f6;
}

.logo-icon {
    position: relative;
    margin-right: 12px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon .fa-shield-alt {
    font-size: 2rem;
    color: #3b82f6;
    position: absolute;
}

.logo-icon .fa-key {
    font-size: 1rem;
    color: #ffffff;
    position: absolute;
    z-index: 2;
}

.emergency-contact {
    text-align: right;
}

.emergency-phone {
    display: flex;
    align-items: center;
    color: #3b82f6;
    text-decoration: none;
    font-size: 1.3rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.emergency-phone:hover {
    color: #60a5fa;
}

.emergency-phone i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.emergency-text {
    font-size: 0.9rem;
    color: #cbd5e1;
    margin: 0;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    padding: 15px 0;
}

.nav a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav a:hover {
    color: #3b82f6;
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    background: transparent;
    border: 2px solid #334155;
    color: #e2e8f0;
    padding: 8px 12px;
    border-radius: 8px;
    cursor: pointer;
}

.nav-toggle i {
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    /* Paris skyline image + dark gradient overlay */
    background-image: linear-gradient(180deg, rgba(15,23,42,0.75) 0%, rgba(15,23,42,0.6) 40%, rgba(15,23,42,0.85) 100%),
                      url('https://images.unsplash.com/photo-1502602898657-3e91760cbb34?q=80&w=1600&auto=format&fit=crop');
    background-size: cover;
    background-position: center center;
    color: white;
    text-align: center;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(1000px 400px at 50% 0%, rgba(59,130,246,0.18), rgba(255,255,255,0));
    opacity: 0.5;
}

.hero .container {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #cbd5e1;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s;
    border: 2px solid transparent;
}

.btn-primary {
    background: #3b82f6;
    color: white;
    border-color: #3b82f6;
}

.btn-primary:hover {
    background: #2563eb;
    border-color: #2563eb;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.4);
}

.btn-primary:active {
    transform: translateY(0);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.btn-secondary:hover {
    background: white;
    color: #0f172a;
}

.permanence {
    font-size: 1.1rem;
    color: #3b82f6;
    font-weight: 600;
    margin: 0;
}

/* Section Urgence */
.urgence-section {
    background: #f1f5f9;
    padding: 60px 0;
    text-align: center;
}

.urgence-section h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #0f172a;
}

.urgence-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #64748b;
}

.tarif-box {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.1);
    display: inline-block;
    border: 3px solid #3b82f6;
}

.tarif-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tarif-label {
    font-size: 1.2rem;
    color: #64748b;
}

.tarif-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #3b82f6;
}

.tarif-note {
    color: #64748b;
    font-size: 0.95rem;
    margin: 0;
}

/* Introduction */
.introduction {
    padding: 80px 0;
    background: white;
}

.introduction h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0f172a;
}

.intro-content p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #64748b;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.promises {
    list-style: none;
    max-width: 600px;
    margin: 30px auto 0;
}

.promises li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 1.1rem;
    color: #1e293b;
}

.promises i {
    color: #3b82f6;
    margin-right: 15px;
    font-size: 1.2rem;
}

/* Services */
.services {
    background: #f1f5f9;
    padding: 80px 0;
}

.services h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: linear-gradient(135deg, #f1f5f9 0%, #e2e8f0 100%);
    opacity: 0.5;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
}

.service-card h3 {
    position: relative;
}
.service-card h3::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa);
    border-radius: 2px;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.service-card p {
    color: #64748b;
    line-height: 1.6;
}

/* Processus */
.process {
    padding: 80px 0;
    background: white;
}

.process h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: #3b82f6;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 20px;
}

.step h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.step p {
    color: #64748b;
    line-height: 1.6;
}

.timing-info {
    background: #f1f5f9;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    border-left: 5px solid #3b82f6;
}

.timing-info p {
    margin-bottom: 10px;
    font-size: 1.1rem;
    color: #1e293b;
}

.timing-info p:last-child {
    margin-bottom: 0;
}

/* Zones */
.zones {
    background: #f1f5f9;
    padding: 80px 0;
}

.zones h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

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

.zones-list h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: #0f172a;
}

.arrondissements {
    display: grid;
    gap: 25px;
}

.arr-group h4 {
    color: #3b82f6;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.arr-group p {
    color: #64748b;
    margin: 0;
}

.zones-note {
    margin-top: 30px;
    padding: 20px;
    background: white;
    border-radius: 10px;
    color: #64748b;
    font-style: italic;
}

.map-placeholder {
    background: white;
    border: 2px dashed #cbd5e1;
    border-radius: 15px;
    padding: 60px 20px;
    text-align: center;
    color: #64748b;
}

.map-placeholder i {
    font-size: 3rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.map-container {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 300px;
    border: none;
}

/* Expertise Section */
.expertise-section {
    padding: 80px 0;
    background: white;
}

.expertise-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.expertise-item {
    text-align: center;
    padding: 40px 30px;
    background: #f1f5f9;
    border-radius: 15px;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid #e2e8f0;
}

.expertise-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.1);
    background: white;
}

.expertise-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
}

.expertise-image i {
    font-size: 2.5rem;
    color: white;
}

.expertise-item h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.expertise-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Conseils */

/* Galerie */
.galerie {
    padding: 80px 0;
    background: #f1f5f9;
}

.galerie h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: #0f172a;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

.gallery-item {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(15, 23, 42, 0.08);
}

.gallery-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-item figcaption {
    padding: 12px 14px;
    font-size: 0.95rem;
    color: #475569;
}

/* Trust strip */
.trust-strip {
    background: #0b1220;
    color: #e2e8f0;
    padding: 20px 0 10px;
    border-bottom: 1px solid #1f2a44;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 12px 20px;
    align-items: center;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(226,232,240,0.08);
    padding: 10px 12px;
    border-radius: 10px;
    -webkit-backdrop-filter: saturate(120%) blur(2px);
    backdrop-filter: saturate(120%) blur(2px);
}

.trust-item strong {
    color: #ffffff;
}

.trust-note {
    text-align: center;
    margin-top: 8px;
    font-size: 0.85rem;
    color: #94a3b8;
}

/* Sticky call button (mobile) */
.sticky-call {
    position: fixed;
    bottom: 16px;
    left: 16px;
    right: 16px;
    z-index: 1000;
    display: none; /* shown on mobile via media query */
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #10b981, #22c55e);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    padding: 14px 18px;
    border-radius: 999px;
    box-shadow: 0 10px 30px rgba(16,185,129,0.35);
}

.sticky-call i { font-size: 1.1rem; }

@media (max-width: 768px) {
  .sticky-call { display: inline-flex; }
}
.conseils {
    padding: 80px 0;
    background: white;
}

.conseils h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #0f172a;
}

.conseils-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.conseil-item {
    text-align: center;
    padding: 30px 20px;
    background: #f1f5f9;
    border-radius: 15px;
    transition: transform 0.3s;
}

.conseil-item:hover {
    transform: translateY(-3px);
}

.conseil-item i {
    font-size: 2.5rem;
    color: #3b82f6;
    margin-bottom: 20px;
}

.conseil-item h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #0f172a;
}

.conseil-item p {
    color: #64748b;
    line-height: 1.6;
}

/* Pourquoi nous */
.pourquoi-nous {
    background: #f8f9fa;
    padding: 80px 0;
}

.pourquoi-nous h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.avantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.avantage {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.avantage i {
    font-size: 3rem;
    color: #ff6b35;
    margin-bottom: 25px;
}

.avantage h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.avantage p {
    color: #666;
    line-height: 1.6;
}

/* Témoignages */
.temoignages {
    padding: 80px 0;
    background: white;
}

.temoignages h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.temoignage {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    position: relative;
}

.temoignage::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 30px;
    font-size: 4rem;
    color: #ff6b35;
    font-family: serif;
}

.stars {
    margin-bottom: 20px;
}

.stars i {
    color: #ffd700;
    margin: 0 2px;
}

.temoignage p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 25px;
    font-style: italic;
    line-height: 1.6;
}

.client-info {
    border-top: 1px solid #ddd;
    padding-top: 20px;
}

.client-info strong {
    color: #1a1a1a;
    display: block;
    margin-bottom: 5px;
}

.client-info span {
    color: #666;
    font-size: 0.9rem;
}

/* FAQ */
.faq {
    background: #f8f9fa;
    padding: 80px 0;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    background: #ff6b35;
    color: white;
    padding: 20px 30px;
    margin: 0;
    font-size: 1.2rem;
    cursor: pointer;
    transition: background 0.3s;
}

.faq-item h3:hover {
    background: #ff8c5a;
}

.faq-item p {
    padding: 25px 30px;
    margin: 0;
    color: #666;
    line-height: 1.6;
    display: none;
}

.faq-item.active p {
    display: block;
}

/* Contact CTA */
.contact-cta {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #ccc;
}

.contact-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large, .btn-secondary.large {
    padding: 20px 40px;
    font-size: 1.2rem;
}

/* Formulaire de contact */
.contact-form {
    padding: 80px 0;
    background: white;
}

.contact-form h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #1a1a1a;
}

.form {
    max-width: 600px;
    margin: 0 auto;
    background: #f8f9fa;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff6b35;
}

.checkbox-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-weight: normal;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}

.form button {
    width: 100%;
    padding: 18px;
    font-size: 1.1rem;
}

/* Footer */
.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #ff6b35;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section p {
    color: #ccc;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-section p i {
    margin-right: 10px;
    color: #ff6b35;
}

.certifications {
    margin-top: 20px;
}

.cert {
    display: inline-block;
    background: #ff6b35;
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-right: 10px;
    margin-bottom: 10px;
}

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

.footer-section ul li {
    margin-bottom: 10px;
}

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

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

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 20px;
    text-align: center;
    color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-top {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .nav-toggle { display: inline-flex; align-items: center; }

    .nav { display: none; }
    .nav.active { display: block; }
    .nav ul { flex-direction: column; gap: 15px; text-align: center; }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero { padding: 70px 0; }
    .trust-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-item img { height: 180px; }
    .service-card { padding: 30px 20px; }
    .expertise-image { width: 84px; height: 84px; }
    .map-container iframe { height: 260px; }
    .zones-content { gap: 30px; }
    .footer-content { grid-template-columns: 1fr; text-align: center; }
    .logo-icon { width: 34px; height: 34px; }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .conseils-grid {
        grid-template-columns: 1fr;
    }
    
    .avantages {
        grid-template-columns: 1fr;
    }
    
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .tarif-box {
        padding: 20px;
    }
    
    .tarif-price {
        font-size: 2rem;
    }
    
    .form {
        padding: 25px;
    }
    
    .service-card { padding: 24px 16px; }
    .gallery-item img { height: 160px; }
    .trust-grid { grid-template-columns: 1fr; }
    .sticky-call { left: 12px; right: 12px; }
    
    .temoignage {
        padding: 30px 20px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.service-card,
.avantage,
.temoignage {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}
