:root {
    /* Palette épurée et claire - professionnel mais lumineux */
    --primary: #F4C430;
    --primary-light: #E6B800;
    --secondary: #DAA520;
    --accent: #D4AF37;
    
    --text: #000000;
    --text-light: #1a1a1a;
    --text-lighter: #333333;
    
    --bg: #FFFBF0;
    --bg-light: #FFF9E6;
    
    --border: #e2e8f0;
    --border-light: #f1f5f9;
    
    --shadow: 0 1px 3px 0 rgb(0 0 0 / 0.08), 0 1px 2px -1px rgb(0 0 0 / 0.08);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.08), 0 2px 4px -2px rgb(0 0 0 / 0.08);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.08);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    
    --radius: 12px;
    --radius-lg: 16px;
    --radius-full: 9999px;
    
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
nav {
    position: fixed;
    width: 100%;
    top: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border-light);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: var(--shadow);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1.25rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
    transition: all 0.3s;
    z-index: 1001;
}

.logo:hover {
    transform: translateY(-2px);
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-accent {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transition: width 0.3s;
    border-radius: var(--radius-full);
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--primary);
}

.nav-links a.active::after,
.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    padding: 0.75rem 1.75rem;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    color: white;
    border-radius: var(--radius-full);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(59, 159, 240, 0.3);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 159, 240, 0.4);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    position: relative;
}

.hamburger span {
    display: block;
    width: 28px;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile menu overlay */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-overlay.active {
    display: block;
    opacity: 1;
}

/* Hero Section - Version épurée et claire */
.hero {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 8rem 2rem 4rem;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
}

.hero-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
    animation: blob 20s ease-in-out infinite;
}

.blob-1 {
    width: 500px;
    height: 500px;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    top: -200px;
    right: -100px;
}

.blob-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #e0f2fe 0%, #bae6fd 100%);
    bottom: -150px;
    left: -100px;
    animation-delay: -10s;
}

.blob-3 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: -5s;
}

@keyframes blob {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(50px, -50px) scale(1.1); }
    50% { transform: translate(-50px, 50px) scale(0.9); }
    75% { transform: translate(50px, 50px) scale(1.05); }
}

.hero-content {
    max-width: 600px;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: #FFFBF0;
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
}

.hero-badge svg {
    color: var(--primary);
}

.hero-title {
    font-family: var(--font-display);
    font-size: 3.75rem;
    font-weight: 700;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.gradient-text {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.hero-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.7;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-primary {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    color: white;
    box-shadow: 0 4px 15px rgba(59, 159, 240, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 159, 240, 0.35);
}

.btn-secondary {
    background: #FFFBF0;
    color: var(--primary);
    border: 1.5px solid var(--border);
}

.btn-secondary:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.stat-card {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    padding: 1.25rem;
    background: #FFFBF0;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.stat-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border-radius: var(--radius);
    color: var(--primary);
    flex-shrink: 0;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.625rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1;
    margin-bottom: 0.25rem;
    font-family: var(--font-display);
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--text-light);
    font-weight: 500;
}

.hero-image {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-wrapper {
    width: 100%;
    max-width: 600px;
    position: relative;
}

.image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.15));
}

/* Services Section */
.services-section {
    padding: 6rem 0;
    background: var(--bg);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-list {
    list-style: none;
    margin-top: 1.5rem;
}

.service-list li {
    padding: 0.625rem 0;
    padding-left: 1.75rem;
    position: relative;
    color: var(--text-light);
}

.service-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

/* Process Section */
.process-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #FFF9E6 0%, #FFFBF0 100%);
}

.process-wrapper {
    display: grid;
    grid-template-columns: 1fr auto 1fr auto 1fr;
    gap: 2rem;
    align-items: center;
}

.process-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 3rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--border);
    transition: all 0.4s;
    position: relative;
}

.process-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.process-number {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 48px;
    height: 48px;
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    color: white;
    font-size: 1.125rem;
    box-shadow: 0 4px 15px rgba(244, 196, 48, 0.4);
}

.process-emoji {
    font-size: 3.5rem;
    margin: 1rem 0 1.5rem;
    display: block;
}

.process-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 1rem;
}

.process-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.process-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, rgba(244, 196, 48, 0.3) 0%, rgba(244, 196, 48, 0.8) 50%, rgba(244, 196, 48, 0.3) 100%);
    border-radius: var(--radius-full);
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 0;
    background: var(--bg);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto;
}

.benefit-card {
    padding: 2rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.75rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Form Section */
.form-section {
    padding: 6rem 0;
    background: white;
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.main-form {
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 500;
    color: var(--text);
    font-size: 0.9375rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.25rem;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s;
    background: #FFFBF0;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(244, 196, 48, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-checkbox {
    margin: 1.5rem 0;
}

.form-checkbox label {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    cursor: pointer;
    font-size: 0.9375rem;
    color: var(--text-light);
}

.form-checkbox input[type="checkbox"] {
    margin-top: 0.25rem;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.btn-submit {
    width: 100%;
    justify-content: center;
    font-size: 1.0625rem;
    padding: 1.25rem 2rem;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--bg-light);
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 0;
    background: var(--bg);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 4rem;
}

.testimonials-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 3rem;
    background: white;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.testimonial-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--text-lighter);
    font-size: 0.875rem;
}

.carousel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 2rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.carousel-btn:hover {
    background: var(--bg-light);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: var(--radius-full);
}

/* FAQ Section */
.faq-section {
    padding: 6rem 0;
    background: var(--bg-light);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 1rem;
    background: #FFFBF0;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: var(--shadow-md);
}

.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-md);
}

.faq-question {
    padding: 1.75rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    color: var(--text);
    gap: 2rem;
}

.faq-icon {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 1.5rem;
    transition: all 0.3s;
    flex-shrink: 0;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    background: var(--primary);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s;
    padding: 0 2rem;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 2rem 1.75rem;
}

.faq-answer p {
    color: var(--text-light);
    line-height: 1.8;
}

/* Contact Section */
.contact-section {
    padding: 6rem 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    max-width: 1280px;
    margin: 0 auto;
}

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 1rem;
}

.contact-subtitle {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.contact-method {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    padding: 1.5rem;
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
}

.contact-method:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}

.method-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.method-label {
    font-size: 0.875rem;
    color: var(--text-lighter);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.method-value {
    font-weight: 600;
    color: var(--text);
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid var(--border);
    border-radius: 50%;
    color: var(--text);
    transition: all 0.3s;
}

.social-link:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
    transform: translateY(-4px);
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-md);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000000 100%);
    border-top: 3px solid #F4C430;
    color: #ffffff;
    padding: 4rem 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: #F4C430;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section p,
.footer-section a {
    color: #cccccc;
    text-decoration: none;
    display: block;
    margin-bottom: 0.75rem;
    transition: all 0.3s;
}

.footer-section a:hover {
    color: #F4C430;
    padding-left: 5px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: white;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: #000000;
}

.footer-bottom p {
    color: #999999;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #F4C430;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

/* Location Section Styles */
.location-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
}

.location-hero {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 48px;
    align-items: start;
}

.location-map-wrapper {
    position: relative;
    height: 600px;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 
        0 0 0 1px rgba(102, 126, 234, 0.1),
        0 20px 60px -10px rgba(102, 126, 234, 0.25),
        0 40px 100px -20px rgba(102, 126, 234, 0.15);
    background: #FFF9E6;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.location-map-wrapper:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 0 0 1px rgba(102, 126, 234, 0.15),
        0 30px 80px -10px rgba(102, 126, 234, 0.3),
        0 50px 120px -20px rgba(102, 126, 234, 0.2);
}

.location-map-wrapper iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.map-overlay {
    position: absolute;
    top: 30px;
    left: 30px;
    z-index: 2;
    pointer-events: none;
}

.map-pin {
    animation: bounce 2s ease-in-out infinite;
    filter: drop-shadow(0 10px 20px rgba(102, 126, 234, 0.4));
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.location-info-panel {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.location-primary-card {
    background: linear-gradient(135deg, #FFFBF0 0%, #FFF9E6 100%);
    border: 1px solid rgba(102, 126, 234, 0.15);
    border-radius: 28px;
    padding: 40px;
    box-shadow: 
        0 10px 40px -10px rgba(102, 126, 234, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.5) inset;
    position: relative;
    overflow: hidden;
}

.location-primary-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #F4C430 0%, #DAA520 100%);
}

.primary-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
}

.primary-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, #F4C430 0%, #DAA520 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    flex-shrink: 0;
}

.primary-card-header > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

.primary-card-header h3 {
    font-size: 26px;
    font-weight: 700;
    color: #1e293b;
    margin: 0;
    font-family: var(--font-display);
    line-height: 1.2;
}

.location-subtitle {
    color: #667eea;
    font-size: 16px;
    font-weight: 600;
    margin: 4px 0 0;
}

.address-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 24px 0;
    border-bottom: 1px solid rgba(102, 126, 234, 0.1);
    margin-bottom: 24px;
}

.address-line {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #475569;
    font-size: 15px;
    margin: 0;
}

.address-line svg {
    color: #667eea;
    flex-shrink: 0;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.quick-action-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #F4C430 0%, #DAA520 100%);
    color: white;
    text-decoration: none;
    border-radius: 14px;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.3);
}

.quick-action-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.4);
}

.quick-action-btn svg {
    width: 18px;
    height: 18px;
}

.location-features {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px;
    background: #FFFBF0;
    border: 1px solid rgba(102, 126, 234, 0.1);
    border-radius: 20px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.06);
}

.feature-item:hover {
    transform: translateX(4px);
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.feature-icon.train {
    background: linear-gradient(135deg, #F4C430 0%, #DAA520 100%);
    color: white;
}

.feature-icon.parking {
    background: linear-gradient(135deg, #FFE55C 0%, #F4C430 100%);
    color: white;
}

.feature-icon.car {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.feature-item > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 56px;
}

.feature-item h4 {
    font-size: 18px;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
    font-family: var(--font-display);
    line-height: 1.3;
}

.feature-item p {
    font-size: 14px;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.5;
}

/* Override nav link active color */
.nav-links a:hover,
.nav-links a.active {
    color: var(--text-light) !important;
}

.nav-links a::after {
    display: none !important;
}

/* ================================
   RESPONSIVE STYLES
   ================================ */

/* Tablet - 1024px and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero {
        grid-template-columns: 1fr;
        padding: 7rem 1.5rem 3rem;
        min-height: auto;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hero-image {
        order: -1;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .location-hero {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .location-map-wrapper {
        height: 500px;
    }
}

/* Mobile - 768px and below */
@media (max-width: 768px) {
    /* Navigation mobile */
    .nav-container {
        padding: 1rem 1.5rem;
    }
    
    /* Hide desktop nav, show hamburger */
    .nav-links {
        position: fixed;
        top: 0;
        left: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: rgba(255, 251, 240, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        gap: 0;
        padding: 6rem 2rem 2rem;
        box-shadow: 2px 0 20px rgba(0, 0, 0, 0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .nav-links.active {
        left: 0;
    }
    
    .nav-links li {
        width: 100%;
        border-bottom: 1px solid var(--border-light);
    }
    
    .nav-links a {
        display: block;
        padding: 1.25rem 0;
        font-size: 1.125rem;
        font-weight: 600;
    }
    
    .nav-links a::after {
        display: none !important;
    }
    
    .nav-cta {
        display: none;
    }
    
    .hamburger {
        display: flex;
        position: relative;
        z-index: 1001;
    }
    
    /* Hero adjustments */
    .hero {
        padding: 6rem 1.25rem 2rem;
    }
    
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        grid-template-columns: 1fr;
    }
    
    .stat-card {
        padding: 1rem;
    }
    
    /* Section spacing */
    .services-section,
    .process-section,
    .benefits-section,
    .testimonials-section,
    .faq-section,
    .contact-section,
    .form-section {
        padding: 4rem 0;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    /* Grids to single column */
    .services-grid,
    .process-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .process-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .process-line {
        display: none;
    }
    
    .service-card,
    .process-card,
    .benefit-card {
        padding: 1.75rem;
    }
    
    /* Form adjustments */
    .form-container,
    .main-form {
        padding: 2rem 1.5rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .form-wrapper {
        padding: 0 1rem;
    }
    
    /* Testimonials */
    .testimonials-carousel {
        padding: 0 1rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 2rem;
    }
    
    .contact-subtitle {
        font-size: 1rem;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    /* WhatsApp button */
    .whatsapp-btn {
        width: 56px;
        height: 56px;
        bottom: 1.5rem;
        right: 1.5rem;
    }
    
    /* Location section */
    .location-section {
        padding: 80px 0;
    }
    
    .location-map-wrapper {
        height: 400px;
    }
    
    .location-primary-card {
        padding: 30px;
    }
    
    .contact-quick-actions {
        grid-template-columns: 1fr;
    }
    
    .feature-item {
        padding: 20px;
    }
}

/* Small Mobile - 480px and below */
@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .nav-container {
        padding: 1rem 1.25rem;
    }
    
    .logo {
        font-size: 1.25rem;
    }
    
    .logo-img {
        height: 32px;
    }
    
    .hero {
        padding: 5rem 1rem 2rem;
    }
    
    .hero-title {
        font-size: 1.875rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.375rem 1rem;
    }
    
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .stat-number {
        font-size: 1.375rem;
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .service-card h3,
    .process-card h3 {
        font-size: 1.25rem;
    }
    
    .process-emoji {
        font-size: 2.5rem;
        margin: 0.75rem 0 1rem;
    }
    
    .process-card {
        padding: 2.5rem 1.5rem 1.75rem;
    }
    
    .process-number {
        width: 42px;
        height: 42px;
        font-size: 1rem;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .form-container {
        padding: 1.5rem 1rem;
    }
    
    .contact-form-card h3 {
        font-size: 1.5rem;
    }
    
    .form-container,
    .main-form {
        padding: 1.5rem 1rem;
    }
    
    .form-row {
        gap: 1rem;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9375rem;
    }
    
    .btn-submit {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1.25rem 1.5rem;
        font-size: 0.9375rem;
    }
    
    .faq-answer {
        padding: 0 1.5rem;
    }
    
    .faq-item.active .faq-answer {
        padding: 0 1.5rem 1.25rem;
    }
    
    .method-icon {
        font-size: 1.5rem;
    }
    
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
    }
    
    .location-primary-card {
        padding: 24px;
    }
    
    .primary-card-header h3 {
        font-size: 22px;
    }
    
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
}

/* Landscape mobile fixes */
@media (max-height: 600px) and (orientation: landscape) {
    .hero {
        min-height: auto;
        padding: 6rem 1.5rem 2rem;
    }
    
    .nav-links {
        padding: 5rem 2rem 2rem;
        overflow-y: auto;
    }
}
/* === HORAIRES SIMPLES - TEXTE UNIQUEMENT === */
.horaires-list {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.horaire-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.625rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    background: none !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    transform: none !important;
    animation: none !important;
}

.horaire-item:last-child {
    border-bottom: none;
}

.horaire-item:hover {
    background: rgba(0, 0, 0, 0.02) !important;
    transform: none !important;
    box-shadow: none !important;
}

.horaire-item .jour {
    font-weight: 600;
    color: #1a1a1a !important;
    font-size: 0.9375rem;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin-bottom: 0 !important;
}

.horaire-item .heures {
    color: #10b981 !important;
    font-weight: 500;
    text-align: right;
    font-size: 0.875rem;
}

.horaire-item.ferme {
    background: none !important;
    box-shadow: none !important;
}

.horaire-item.ferme .jour {
    color: #1a1a1a !important;
}

.horaire-item.ferme .heures {
    color: #ef4444 !important;
    font-style: italic;
}

/* Annuler toute animation sur les horaires */
.horaire-item:nth-child(1),
.horaire-item:nth-child(2),
.horaire-item:nth-child(3),
.horaire-item:nth-child(4),
.horaire-item:nth-child(5),
.horaire-item:nth-child(6),
.horaire-item:nth-child(7) {
    animation: none !important;
    animation-delay: 0s !important;
}

@media (max-width: 768px) {
    .horaire-item {
        flex-direction: row;
        gap: 1rem;
    }
}