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

/* Variables CSS pour hauteurs cohérentes */
:root {
    --header-height-desktop: 80px;
    --header-height-mobile: 70px;
    --header-height-small: 60px;
}

/* Scroll margin pour sections avec ancre */
section[id], div[id] {
    scroll-margin-top: 20px;
}

@media (max-width: 768px) {
    section[id], div[id] {
        scroll-margin-top: var(--header-height-mobile);
    }
}

@media (max-width: 480px) {
    section[id], div[id] {
        scroll-margin-top: var(--header-height-small);
    }
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #54595F;
    background-color: #fff;
}

/* Compensation pour header sticky */
.main-content {
    padding-top: 0;
}

@media (max-width: 768px) {
    .main-content {
        padding-top: var(--header-height-mobile);
    }
}

@media (max-width: 480px) {
    .main-content {
        padding-top: var(--header-height-small);
    }
}

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

/* Navigation */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
}

/* Padding ajusté pour logo beaucoup plus grand */
.navbar {
    padding: 1.2rem 0;
}

@media (min-width: 1024px) {
    .navbar {
        padding: 1.6rem 0;
    }
}

@media (min-width: 1440px) {
    .navbar {
        padding: 2rem 0;
    }
}

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

.nav-brand .logo {
    text-decoration: none;
    color: #FC5D14;
    font-size: 1.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand .logo img {
    height: 75px;
    width: auto;
}

/* Logo très grand pour desktop */
@media (min-width: 1024px) {
    .nav-brand .logo img {
        height: 90px;
    }
}

/* Logo maximum pour écrans larges */
@media (min-width: 1440px) {
    .nav-brand .logo img {
        height: 110px;
    }
}

/* Logo dans hero sections */
.hero-logo {
    width: 350px;
    height: auto;
    margin: 2rem auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

@media (min-width: 1024px) {
    .hero-logo {
        width: 450px;
    }
}

@media (max-width: 768px) {
    .hero-logo {
        width: 280px;
    }
}

@media (max-width: 480px) {
    .hero-logo {
        width: 240px;
    }
}

/* Responsive pour sections logo */
@media (max-width: 768px) {
    .logo-section img {
        height: 120px;
    }
    
    .content-logo {
        height: 90px;
    }
}

@media (max-width: 480px) {
    .logo-section img {
        height: 100px;
    }
    
    .content-logo {
        height: 80px;
    }
}

/* Logo dans contenu */
.content-logo {
    height: 120px;
    width: auto;
    margin: 1rem;
}

/* Logo section dédiée */
.logo-section {
    text-align: center;
    padding: 2rem 0;
}

.logo-section img {
    height: 150px;
    width: auto;
    margin-bottom: 1rem;
}

@media (min-width: 1024px) {
    .logo-section img {
        height: 200px;
    }
}

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

/* Language Selector - Enhanced Visibility */
.language-selector {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    margin-right: 1rem;
    padding: 0.5rem;
    background: linear-gradient(135deg, #FC5D14, #FF7A33);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(252, 93, 20, 0.3);
    border: 2px solid #fff;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    min-width: 60px;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

.lang-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.lang-link.active {
    background-color: rgba(255, 255, 255, 0.95);
    color: #FC5D14;
    border-color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
    transform: translateY(-1px);
}

.lang-link.active:hover {
    background-color: #fff;
    color: #FC5D14;
}

/* Language Selector in Footer */
.footer .language-selector {
    background: linear-gradient(135deg, #333, #555);
    margin: 0 auto 1.5rem auto;
    max-width: 200px;
}

.footer .lang-link {
    font-size: 0.9rem;
    padding: 0.5rem 0.8rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 0.5rem 0;
    transition: color 0.3s;
}

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

.nav-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    padding: 0.5rem 0;
    display: none;
    z-index: 1001;
}

.dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    text-decoration: none;
    color: #333;
    transition: background-color 0.3s;
}

.dropdown-item:hover {
    background-color: #f8f9fa;
    color: #FC5D14;
}

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

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: 0.3s;
}

/* Boutons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: #FC5D14;
    color: white;
}

.btn-primary:hover {
    background: #1a4480;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-success {
    background: #28a745;
    color: white;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.3);
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-whatsapp:hover {
    background: #128c7e;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* CTA supplémentaires */
.btn-urgent {
    background: linear-gradient(45deg, #FF6B35, #FC5D14);
    color: white;
    position: relative;
    animation: pulse-urgent 2s infinite;
}

.btn-urgent::before {
    content: "🔥";
    margin-right: 0.5rem;
}

.btn-urgent:hover {
    background: linear-gradient(45deg, #FF6B35, #e54d0d);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(252, 93, 20, 0.4);
}

@keyframes pulse-urgent {
    0%, 100% { box-shadow: 0 0 0 0 rgba(252, 93, 20, 0.7); }
    50% { box-shadow: 0 0 0 10px rgba(252, 93, 20, 0); }
}

.btn-price {
    background: #28a745;
    color: white;
    font-weight: 700;
    position: relative;
}

.btn-price::after {
    content: "💰 Ofertă Rapidă";
    font-size: 0.8rem;
    position: absolute;
    top: -8px;
    right: -5px;
    background: #FC5D14;
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-weight: 500;
}

.btn-outline {
    background: transparent;
    border: 2px solid #FC5D14;
    color: #FC5D14;
}

.btn-outline:hover {
    background: #FC5D14;
    color: white;
}

/* CTA Sticky flottant */
.cta-sticky {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: linear-gradient(45deg, #FC5D14, #FF6B35);
    color: white;
    padding: 15px 20px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.3);
    z-index: 999;
    display: none;
    align-items: center;
    justify-content: space-between;
    animation: slideUp 0.5s ease;
}

.cta-sticky.show {
    display: flex;
}

.cta-sticky-content {
    flex-grow: 1;
}

.cta-sticky-title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.2rem;
}

.cta-sticky-text {
    font-size: 0.9rem;
    opacity: 0.9;
}

.cta-sticky-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cta-sticky .btn {
    padding: 10px 15px;
    font-size: 0.9rem;
    margin: 0;
}

.cta-sticky-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 0 0 15px;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* CTA dans les cards */
.card-cta {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(252, 93, 20, 0.1);
}

.card-cta .btn {
    width: 100%;
    justify-content: center;
}

/* Page de remerciements */
.thank-you-timeline {
    background: rgba(255,255,255,0.15);
    border-radius: 15px;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 600px;
}

.timeline-step {
    display: flex;
    align-items: center;
    margin: 1rem 0;
}

.timeline-icon {
    background: #FC5D14;
    color: white;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    font-weight: bold;
    flex-shrink: 0;
}

.timeline-content {
    flex-grow: 1;
}

.timeline-title {
    color: white;
    font-weight: 600;
    margin: 0 0 0.2rem 0;
}

.timeline-subtitle {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    margin: 0;
}

/* Success checkmark animation */
@keyframes checkmark {
    0% {
        transform: scale(0);
        opacity: 0;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.success-checkmark {
    animation: checkmark 0.8s ease-out;
}

/* WhatsApp flottant */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1000;
}

/* Ajuster position WhatsApp quand CTA sticky affiché */
.cta-sticky.show ~ .whatsapp-float {
    bottom: 100px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    padding: 12px 16px;
    border-radius: 50px;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    transition: all 0.3s;
    font-weight: 600;
}

.whatsapp-btn:hover {
    background: #128c7e;
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

/* Hero section */
.hero {
    background: linear-gradient(135deg, #FC5D14 0%, #54595F 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero .lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* Sections */
.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    font-size: 2.5rem;
    font-weight: 600;
    color: #FC5D14;
    margin-bottom: 1rem;
}

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

/* Breadcrumbs */
.breadcrumbs {
    font-size: 0.95rem;
    color: #6c757d;
    margin: 1rem 0 0.5rem 0;
}
.breadcrumbs a {
    color: #FC5D14;
    text-decoration: none;
    font-weight: 600;
}
.breadcrumbs a:hover {
    text-decoration: underline;
}
.breadcrumbs span {
    margin: 0 6px;
    color: #adb5bd;
}

/* Grilles */
.grid {
    display: grid;
    gap: 2rem;
}

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

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

/* Cards */
.card {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 60px;
    height: 60px;
    background: #FC5D14;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #FC5D14;
}

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

/* Formulaires */
.form-section {
    background: #f8f9fa;
    padding: 60px 0;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
    max-width: 720px;
    margin: 0 auto;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    gap: 1.25rem;
}

.contact-form .form-row .form-group {
    margin-bottom: 0;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea,
.form-control {
    width: 100%;
    padding: 14px 12px;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    font-size: 1rem;
    background: #fff;
    transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.form-control:focus {
    outline: none;
    border-color: #FC5D14;
    box-shadow: 0 0 0 4px rgba(252, 93, 20, 0.12);
}

textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.contact-form textarea {
    min-height: 140px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #98a2b3;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20'%3E%3Cpath fill='%2398a2b3' d='M5.23 7.21a.75.75 0 0 1 1.06.02L10 11.06l3.71-3.83a.75.75 0 0 1 1.08 1.04l-4.24 4.38a.75.75 0 0 1-1.08 0L5.21 8.27a.75.75 0 0 1 .02-1.06Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 18px 18px;
}

.contact-form input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #FC5D14;
}

.contact-form a {
    color: #FC5D14;
}

.contact-form button[type="submit"],
.contact-form .btn.btn-primary.btn-large {
    width: 100%;
    padding: 16px 20px;
    border-radius: 10px;
    font-size: 1.05rem;
}

.contact-form input:focus:invalid,
.contact-form select:focus:invalid,
.contact-form textarea:focus:invalid {
    border-color: #ff6b6b;
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.12);
}

.contact-form input:focus:valid,
.contact-form select:focus:valid,
.contact-form textarea:focus:valid {
    border-color: #28a745;
    box-shadow: 0 0 0 4px rgba(40, 167, 69, 0.12);
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Footer */
.footer {
    background: #54595F;
    color: white;
    padding: 40px 0 20px;
}

.footer-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.footer-logo img {
    height: 90px;
    width: auto;
    filter: brightness(0) invert(1); /* Rendre le logo blanc */
    margin-bottom: 0.5rem;
}

/* Footer logo encore plus visible sur desktop */
@media (min-width: 1024px) {
    .footer-logo img {
        height: 110px;
    }
}

.footer-logo .logo-text {
    color: #FFFFFF;
    font-size: 1.8rem;
    font-weight: 700;
    text-decoration: none;
}

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

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

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

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

.contact-info p {
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Utilitaires */
.text-center {
    text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* Images et visuels */
.hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
    margin: 2rem 0;
}

.content-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1rem 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.image-card {
    text-align: center;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.image-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.image-card-content {
    padding: 1.5rem;
}

.image-card h4 {
    color: #FC5D14;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.image-card p {
    color: #54595F;
    font-size: 0.9rem;
    line-height: 1.5;
}

.section-with-image {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin: 3rem 0;
}

.section-with-image.reverse {
    direction: rtl;
}

.section-with-image.reverse > * {
    direction: ltr;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .navbar {
        padding: 0.8rem 0;
    }
    
    .navbar .container {
        position: relative;
    }
    
    .nav-brand .logo img {
        height: 48px;
    }
    
    .nav-brand .logo {
        font-size: 1.6rem;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height-mobile);
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 1.5rem;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        gap: 0;
        z-index: 1000;
        max-height: calc(100vh - var(--header-height-mobile));
        overflow-y: auto;
    }
    
    .nav-menu.show {
        transform: translateX(0);
    }
    
    /* Overlay pour menu mobile */
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 999;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s, visibility 0.3s;
    }
    
    .mobile-overlay.show {
        opacity: 1;
        visibility: visible;
    }
    
    .nav-link {
        padding: 1rem 0;
        border-bottom: 1px solid #f5f5f5;
        font-size: 1.1rem;
        width: 100%;
    }
    
    .nav-dropdown {
        width: 100%;
    }
    
    .nav-dropdown .dropdown-menu {
        position: static;
        display: none;
        box-shadow: none;
        border: none;
        background: #f8f9fa;
        border-radius: 0;
        padding: 0;
        margin-top: 0.5rem;
    }
    
    .nav-dropdown.active .dropdown-menu {
        display: block;
    }
    
    .dropdown-toggle {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .dropdown-toggle::after {
        content: "+";
        font-size: 1.2rem;
        font-weight: bold;
        color: #FC5D14;
        transition: transform 0.3s;
    }
    
    .nav-dropdown.active .dropdown-toggle::after {
        transform: rotate(45deg);
    }
    
    .dropdown-item {
        padding: 0.8rem 1rem;
        font-size: 1rem;
        border-bottom: 1px solid #eee;
    }
    
    .dropdown-item:last-child {
        border-bottom: none;
    }
    
    .nav-menu .btn {
        margin-top: 1rem;
        text-align: center;
        padding: 12px 20px;
        border-radius: 25px;
    }
    
    /* Language Selector Mobile */
    .language-selector {
        margin: 1rem auto;
        justify-content: center;
        max-width: 250px;
        padding: 0.4rem;
    }
    
    .lang-link {
        padding: 0.7rem 1.2rem;
        font-size: 1rem;
        min-width: 70px;
    }
    
    .nav-toggle {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        padding: 5px;
        gap: 4px;
        z-index: 1001;
    }
    
    .nav-toggle span {
        width: 25px;
        height: 3px;
        background: #54595F;
        transition: all 0.3s ease;
        border-radius: 3px;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
        background: #FC5D14;
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
        background: #FC5D14;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero .lead {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .whatsapp-btn span {
        display: none;
    }
    
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        padding: 16px;
        border-radius: 50%;
        justify-content: center;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .section-with-image {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .image-gallery {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .navbar {
        padding: 0.6rem 0;
    }
    
    .nav-brand .logo img {
        height: 45px;
    }
    
    .nav-brand .logo {
        font-size: 1.4rem;
    }
    
    .nav-menu {
        top: var(--header-height-small);
        padding: 1rem;
        max-height: calc(100vh - var(--header-height-small));
    }
    
    .nav-toggle {
        padding: 3px;
        gap: 3px;
    }
    
    .nav-toggle span {
        width: 22px;
        height: 2px;
    }
    
    .hero {
        padding: 40px 0 60px 0; /* Padding top réduit car déjà compensé par main-content */
    }
    
    .section {
        padding: 40px 0;
    }
    
    .card {
        padding: 1.5rem;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .hero-image {
        margin: 1rem 0;
    }
    
    .image-card-content {
        padding: 1rem;
    }
    
    .image-card img {
        height: 200px;
    }
    
    .footer-logo img {
        height: 70px;
    }
    
    /* CTA responsive mobile */
    .cta-sticky {
        left: 10px;
        right: 10px;
        padding: 12px 15px;
    }
    
    .cta-sticky-title {
        font-size: 0.9rem;
    }
    
    .cta-sticky-text {
        font-size: 0.8rem;
    }
    
    .cta-sticky-actions {
        flex-direction: column;
        gap: 8px;
    }
    
    .cta-sticky .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
    
    .btn-urgent::before {
        display: none; /* Cache emoji sur mobile */
    }
}

/* ===== ENGLISH VERSION ENHANCEMENTS ===== */

/* Desktop dropdown indicators and hover fix */
.navbar .dropdown-toggle {
    cursor: pointer;
}
.navbar .dropdown-toggle::after {
    content: "▾";
    margin-left: 6px;
    color: #FC5D14;
    font-size: 0.8rem;
    vertical-align: middle;
}
.nav-dropdown:hover > .dropdown-menu,
.nav-dropdown.active > .dropdown-menu {
    display: block;
}
@media (max-width: 768px) {
    .navbar .dropdown-toggle::after {
        content: "+";
    }
}

/* Hero Logo Styling for English Version */
.hero-logo {
    max-height: 80px;
    width: auto;
    margin-bottom: 1rem;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
}

/* Enhanced Image Gallery for English Version */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.image-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.2);
    border-color: #FC5D14;
}

.image-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.image-card-content {
    padding: 1.5rem;
}

.image-card-content h4 {
    color: #FC5D14;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.image-card-content p {
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Enhanced USP Cards */
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.usp-card {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.usp-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.15);
    border-color: #FC5D14;
}

.usp-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.usp-card h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Enhanced Industry Cards */
.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.industry-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.2);
    border-color: #FC5D14;
}

.industry-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover img {
    transform: scale(1.05);
}

.industry-card h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 1rem 0 0.5rem 0;
    padding: 0 1.5rem;
}

.industry-card p {
    color: #666;
    padding: 0 1.5rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.industry-card .btn {
    margin: 0 1.5rem 1.5rem 1.5rem;
    width: calc(100% - 3rem);
}

/* Enhanced Countries Grid */
.countries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.country-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.country-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.2);
    border-color: #FC5D14;
}

.country-card img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid #FC5D14;
}

.country-card h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

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

/* Enhanced Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-item {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.benefit-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.15);
    border-color: #FC5D14;
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Enhanced Process Steps */
.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.step {
    background: #fff;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.step:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.15);
    border-color: #FC5D14;
}

.step-number {
    background: linear-gradient(135deg, #FC5D14, #FF7A33);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    margin: 0 auto 1rem auto;
    box-shadow: 0 4px 15px rgba(252, 93, 20, 0.3);
}

.step h3 {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Enhanced Services Grid */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.service-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(252, 93, 20, 0.2);
    border-color: #FC5D14;
}

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

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-card ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.service-card li {
    color: #666;
    padding: 0.25rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.service-card li::before {
    content: "✓";
    color: #FC5D14;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Mobile Responsiveness for English Version */
@media (max-width: 768px) {
    .hero-logo {
        max-height: 60px;
    }
    
    .image-gallery,
    .usp-grid,
    .industries-grid,
    .countries-grid,
    .benefits-grid,
    .process-steps,
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .image-card,
    .usp-card,
    .industry-card,
    .country-card,
    .benefit-item,
    .step,
    .service-card {
        padding: 1.5rem;
    }
    
    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* ===== MOBILE LANGUAGE SELECTOR STICKY ===== */

.mobile-language-selector {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(252, 93, 20, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9999;
    padding: 8px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.mobile-language-selector .lang-selector-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    max-width: 200px;
    margin: 0 auto;
}

.mobile-language-selector .lang-link {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    min-width: 50px;
    justify-content: center;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.mobile-language-selector .lang-link:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-1px);
}

.mobile-language-selector .lang-link.active {
    background-color: rgba(255, 255, 255, 0.9);
    color: #FC5D14;
    border-color: #fff;
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.mobile-language-selector .lang-link.active:hover {
    background-color: #fff;
    color: #FC5D14;
}

/* Afficher le sélecteur mobile seulement sur mobile */
@media (max-width: 768px) {
    .mobile-language-selector {
        display: block;
    }
    
    /* Ajuster le padding-top du body pour compenser le sélecteur sticky */
    body {
        padding-top: 48px;
    }
    
    /* Ajuster le header pour ne pas être caché */
    .header {
        top: 48px;
    }
    
    /* Ajuster le main content */
    .main-content {
        padding-top: 48px;
    }
}

/* Pour les très petits écrans */
@media (max-width: 480px) {
    .mobile-language-selector {
        padding: 6px 12px;
    }
    
    .mobile-language-selector .lang-link {
        padding: 5px 10px;
        font-size: 0.8rem;
        min-width: 45px;
    }
    
    body {
        padding-top: 44px;
    }
    
    .header {
        top: 44px;
    }
    
    .main-content {
        padding-top: 44px;
    }
}
